### Install claude-md-management plugin Source: https://github.com/kwonah0/claude-md-management/blob/main/README.md Use this command to install the plugin from the internal plugin repository. ```bash /plugin install claude-md-management@internal-plugins ``` -------------------------------- ### CLAUDE.md Template Structure Source: https://github.com/kwonah0/claude-md-management/blob/main/commands/init-claude-md.md This markdown structure serves as a template for generating a CLAUDE.md file. It outlines key sections such as Project Overview, Development Setup, Commands, Testing, Architecture, and Conventions. ```markdown # CLAUDE.md ## Project Overview [프로젝트 설명] ## Development Setup [환경 설정 방법] ## Commands [주요 명령어] ## Testing [테스트 실행 방법] ## Architecture [아키텍처 개요] ## Conventions [코딩 컨벤션] ``` -------------------------------- ### CLAUDE.md Audit Report Format Source: https://github.com/kwonah0/claude-md-management/blob/main/commands/audit-claude-md.md This is an example of the markdown format for the CLAUDE.md audit report, including sections for files found, quality score, missing sections, and recommendations. ```markdown ## CLAUDE.md Audit Report ### Files Found - ./CLAUDE.md (root) - ./packages/core/CLAUDE.md ### Quality Score: 7/10 ### Missing Sections - [ ] 테스트 실행 방법 - [ ] 환경 변수 설정 ### Recommendations 1. 테스트 명령어 추가 2. ... ``` -------------------------------- ### claude-md-audit Skill Functionality Source: https://context7.com/kwonah0/claude-md-management/llms.txt The claude-md-audit skill automatically evaluates CLAUDE.md file quality and identifies areas for improvement. It's triggered by user queries about quality, project setup reviews, or new project onboarding. ```bash # 스킬 활성화 조건 # - 사용자가 CLAUDE.md 품질에 대해 질문할 때 # - 프로젝트 설정 검토 시 # - 새 프로젝트 온보딩 시 # 평가 기준 (총 10점) # 필수 섹션 (각 2점, 총 8점) # - [ ] 프로젝트 개요 # - [ ] 개발 환경 설정 # - [ ] 주요 명령어 # - [ ] 테스트 방법 # 권장 섹션 (각 1점, 총 4점 - 보너스) # - [ ] 아키텍처 설명 # - [ ] 코딩 컨벤션 # - [ ] 의존성 정보 # - [ ] 트러블슈팅 # 품질 지표 # - 명확성: 지침이 모호하지 않은가 # - 완전성: 필요한 정보가 모두 있는가 # - 최신성: 현재 코드베이스를 반영하는가 # 출력 형식 예시 Score: 8/10 Missing: [테스트 방법] Outdated: [개발 명령어 - npm run build 대신 pnpm build 사용] Recommendations: [테스트 섹션 추가, 명령어 최신화] ``` -------------------------------- ### Initialize CLAUDE.md File Source: https://context7.com/kwonah0/claude-md-management/llms.txt Automatically generates a CLAUDE.md file for the current project by analyzing configuration files and directory structure. It creates a template suitable for various project types like Node.js, Python, Go, and Rust. ```bash # 명령어 실행 /init-claude-md ``` ```markdown # CLAUDE.md ## Project Overview [프로젝트 설명 - 자동 감지된 내용 기반] ## Development Setup [환경 설정 방법] npm install # Node.js 프로젝트인 경우 pip install -r requirements.txt # Python 프로젝트인 경우 ## Commands [주요 명령어] npm run build npm run dev npm test ## Testing [테스트 실행 방법] npm test npm run test:coverage ## Architecture [아키텍처 개요] ## Conventions [코딩 컨벤션] # 주의사항 # - 기존 CLAUDE.md가 있으면 덮어쓰기 전 사용자 확인 요청 # - 프로젝트별 특수 설정 자동 반영 ``` -------------------------------- ### Update CLAUDE.md with Session Information Source: https://context7.com/kwonah0/claude-md-management/llms.txt Integrates new information discovered during a development session into the CLAUDE.md file. It adds details like new commands, patterns, or troubleshooting tips to the appropriate sections, ensuring no duplication and maintaining document structure. ```bash # 명령어 실행 /update-claude-md ``` ```markdown # CLAUDE.md ## Troubleshooting ### 테스트 실행 오류 테스트 실행 전 환경 변수 설정 필요: ```bash export DATABASE_URL="postgresql://localhost:5432/test" npm test ``` ### 배포 명령어 위치 배포 스크립트는 반드시 scripts 디렉토리에서 실행: ```bash cd ./scripts ./deploy.sh ``` # 주의사항 # - 중복 내용 자동 감지 및 방지 # - 기존 문서 구조 유지 # - 민감 정보(API 키, 비밀번호 등) 자동 제외 ``` -------------------------------- ### Find CLAUDE.md Files Source: https://github.com/kwonah0/claude-md-management/blob/main/commands/audit-claude-md.md Use this command to locate all CLAUDE.md files within the current directory and its subdirectories. ```bash find . -name "CLAUDE.md" -type f ``` -------------------------------- ### CLAUDE.md 감사 스킬 출력 형식 Source: https://github.com/kwonah0/claude-md-management/blob/main/skills/claude-md-audit/SKILL.md CLAUDE.md 감사 스킬의 예상 출력 형식입니다. 점수, 누락된 섹션, 오래된 정보, 개선 제안을 포함합니다. ```text Score: X/10 Missing: [섹션 목록] Outdated: [오래된 정보] Recommendations: [개선 제안] ``` -------------------------------- ### Audit CLAUDE.md File Quality Source: https://context7.com/kwonah0/claude-md-management/llms.txt Executes an audit of the CLAUDE.md file to assess its quality and suggest improvements. It analyzes the presence and clarity of essential sections, providing a score out of 10. ```bash # 명령어 실행 /audit-claude-md ``` ```bash # 내부 동작: CLAUDE.md 파일 탐색 find . -name "CLAUDE.md" -type f ``` ```markdown ## CLAUDE.md Audit Report ### Files Found - ./CLAUDE.md (root) - ./packages/core/CLAUDE.md ### Quality Score: 7/10 ### Missing Sections - [ ] 테스트 실행 방법 - [ ] 환경 변수 설정 ### Recommendations 1. 테스트 명령어 추가 2. 환경 변수 설정 가이드 추가 ### 평가 항목 | 항목 | 설명 | 상태 | |------|------|------| | 완전성 | 필수 섹션 포함 여부 | ⚠️ 부분 충족 | | 명확성 | 지침의 명확함 | ✅ 양호 | | 최신성 | 현재 코드베이스 반영 | ✅ 양호 | | 유용성 | 실제 개발에 도움 여부 | ✅ 양호 | ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.