What's New in v2.1.0
New Feature: /deepinit Skill
The /deepinit command recursively indexes your codebase and creates hierarchical AGENTS.md documentation files that help AI agents understand your project structure.
Key Features
- Recursive indexing: Analyzes every directory in your codebase
- Hierarchical tagging: Lower-level files reference parents via
<!-- Parent: ../AGENTS.md --> - Update mode:
--updateflag refreshes existing docs only - Dry-run support:
--dry-runshows planned changes without writing - Manual preservation:
<!-- MANUAL -->sections preserved on regeneration - Empty directory handling: Smart skip/minimal docs for empty containers
Usage
/deepinit # Index current directory
/deepinit ./src # Index specific path
/deepinit --update # Update existing AGENTS.md only
/deepinit --dry-run # Preview changes without writingAGENTS.md Hierarchy
/AGENTS.md ← Root (no parent tag)
├── src/AGENTS.md ← <!-- Parent: ../AGENTS.md -->
│ ├── src/components/AGENTS.md ← <!-- Parent: ../AGENTS.md -->
│ └── src/utils/AGENTS.md ← <!-- Parent: ../AGENTS.md -->
Files Added
commands/deepinit.md- Command entry point with argument parsingskills/deepinit/SKILL.md- Full skill definition with templatesdocs/CLAUDE.md- Updated with deepinit documentation