$npx -y skills add fusengine/agents --skill map-ecosystemEnrich auto-generated .cartographer/ maps with full descriptions from source files. Use when: cartography index descriptions are truncated, a new plugin/skill was just added, or after SessionStart regenerates the map.
| 1 | # Map Ecosystem — Enrich Descriptions |
| 2 | |
| 3 | Enrich the auto-generated `.cartographer/` index.md files with complete descriptions extracted from source file frontmatter. |
| 4 | |
| 5 | ## When to Use |
| 6 | |
| 7 | - After SessionStart has generated the cartography structure |
| 8 | - When descriptions appear truncated in index.md files |
| 9 | - When a new plugin/skill was added and needs full descriptions |
| 10 | |
| 11 | ## When NOT to Use |
| 12 | |
| 13 | - Code generation or debugging |
| 14 | - Direct file editing outside .cartographer/ |
| 15 | |
| 16 | ## Steps |
| 17 | |
| 18 | 1. **Read** the ecosystem index: `${CLAUDE_PLUGIN_ROOT}/../.cartographer/index.md` |
| 19 | 2. **For each plugin** listed, read its `.cartographer/index.md` |
| 20 | 3. **For each linked file** (agents/*.md, skills/*/SKILL.md): |
| 21 | - Read the source file |
| 22 | - Extract the full `description` from YAML frontmatter |
| 23 | - Replace the truncated description in the index.md line |
| 24 | 4. **Write** the updated index.md with complete descriptions |
| 25 | |
| 26 | ## Example |
| 27 | |
| 28 | Before (auto-generated, truncated at 60 chars): |
| 29 | ``` |
| 30 | ├── [laravel-eloquent](./skills/laravel-eloquent/index.md) — Complete Eloquent ORM - models, relatio |
| 31 | ``` |
| 32 | |
| 33 | After (enriched by agent): |
| 34 | ``` |
| 35 | ├── [laravel-eloquent](./skills/laravel-eloquent/index.md) — Complete Eloquent ORM - models, relationships, queries, casts, observers, factories. Use when working with database models. |
| 36 | ``` |
| 37 | |
| 38 | ## Forbidden |
| 39 | |
| 40 | - Do not modify source files (only .cartographer/*.md) |
| 41 | - Do not delete or restructure the tree |
| 42 | - Do not assume — always read actual frontmatter |