Conversation
- Implement importer package to extract coding conventions from external documents - Use LLM for automatic category/rule extraction - Support append/clear import modes
- Add sym import <file> command - Support --mode flag for append/clear mode selection - Add user confirmation prompt before clear mode execution
- Register import_convention tool in MCP server - Enable AI agents to automatically import conventions from documents
- Add /api/import HTTP endpoint - Implement import modal UI - Support file path input and mode selection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
internal/importer패키지 추가 (types, reader, extractor, importer)sym importCLI 명령어 추가import_convention도구 등록/api/import엔드포인트 추가Feature Details
CLI:
sym import외부 문서에서 코딩 컨벤션을 가져옵니다.
지원 포맷: 텍스트 파일
Import 모드:
MCP Tool: import_convention
AI 에이전트가 문서에서 컨벤션을 자동으로 가져올 수 있습니다.
{ "name": "import_convention", "arguments": { "path": "docs/coding-standards.md", "mode": "append" } }Parameters:
Dashboard UI
LLM이 문서를 분석하여 카테고리와 규칙을 자동 생성합니다.