← ClaudeAtlas

nav-initlisted

Initialize Navigator documentation structure in a project. Auto-invokes when user says "Initialize Navigator", "Set up Navigator", "Create Navigator structure", or "Bootstrap Navigator".
alekspetrov/navigator · ★ 189 · AI & Automation · score 83
Install: claude install-skill alekspetrov/navigator
# Navigator Initialization Skill ## Purpose Creates the Navigator documentation structure (`.agent/`) in a new project, copies templates, and sets up initial configuration. ## When This Skill Auto-Invokes - "Initialize Navigator in this project" - "Set up Navigator documentation structure" - "Create .agent folder for Navigator" - "Bootstrap Navigator for my project" ## What This Skill Does 1. **Checks if already initialized**: Prevents overwriting existing structure 2. **Creates `.agent/` directory structure**: ``` .agent/ ├── DEVELOPMENT-README.md ├── .nav-config.json ├── tasks/ ├── system/ ├── sops/ │ ├── integrations/ │ ├── debugging/ │ ├── development/ │ └── deployment/ └── grafana/ ├── docker-compose.yml ├── prometheus.yml ├── grafana-datasource.yml ├── grafana-dashboards.yml ├── navigator-dashboard.json └── README.md ``` 3. **Copies templates**: DEVELOPMENT-README.md, config, Grafana setup 5. **Auto-detects project info**: Name, tech stack (from package.json if available) 6. **Updates CLAUDE.md**: Adds Navigator-specific instructions to project 7. **Creates .gitignore entries**: Excludes temporary Navigator files ## Execution Steps ### 1. Check if Already Initialized ```bash if [ -d ".agent" ]; then echo "✅ Navigator already initialized in this project" echo "" echo "To start a session: 'Start my Navigator session'" echo "To view documentation: Read .agent/D