init-claude
Installation
SKILL.md
Initialize Claude Configuration
Generate project-specific Claude Code configuration by analyzing the codebase. Creates concise, actionable configuration following official best practices.
Key Principles (from Official Docs)
- CLAUDE.md should be 50-100 lines in root, use
@importsfor detailed sections - Include only what Claude can't infer from code
- Use
.claude/rules/for modular, path-targeted instructions - Less is more - bloated files cause Claude to ignore rules
Step 1: Check Existing Configuration
# Check current directory
pwd
# Check for existing Claude configuration
ls -la CLAUDE.md .claude/ 2>/dev/null || echo "No existing config"
Related skills