/map-ecosystem
Use when cartography index descriptions are truncated, a new plugin/skill was just added, or after SessionStart regenerates the map.
$ npx -y skills add fusengine/agents --skill map-ecosystem --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/map-ecosystem
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when cartography index descriptions are truncated, a new plugin/skill was just added, or after SessionStart regenerates the map.
SKILL.md
map-ecosystem.SKILL.mdname: map-ecosystem
description: "Use when cartography index descriptions are truncated, a new plugin/skill was just added, or after SessionStart regenerates the map."
context: fork
user-invocable: true
<objective> Enriches the auto-generated `.cartographer/` index.md files with complete descriptions extracted from source file frontmatter — restores the full skill/agent `description` text that auto-generation truncates at 60 characters. Read-only against everything outside `.cartographer/*.md`: it never modifies source files, never deletes or restructures the tree, and never assumes a description — it always reads the actual frontmatter first. </objective>
Map Ecosystem — Enrich Descriptions
Enrich the auto-generated `.cartographer/` index.md files with complete descriptions extracted from source file frontmatter.
When to Use
- After SessionStart has generated the cartography structure
- When descriptions appear truncated in index.md files
- When a new plugin/skill was added and needs full descriptions
When NOT to Use
- Code generation or debugging
- Direct file editing outside .cartographer/
Steps
1. **Read** the ecosystem index: `${CLAUDE_PLUGIN_ROOT}/../.cartographer/index.md` 2. **For each plugin** listed, read its `.cartographer/index.md` 3. **For each linked file** (agents/*.md, skills/*/SKILL.md):
- Read the source file
- Extract the full `description` from YAML frontmatter
- Replace the truncated description in the index.md line
4. **Write** the updated index.md with complete descriptions
Example
Before (auto-generated, truncated at 60 chars):
├── [laravel-eloquent](./skills/laravel-eloquent/index.md) — Complete Eloquent ORM - models, relatio
After (enriched by agent):
├── [laravel-eloquent](./skills/laravel-eloquent/index.md) — Complete Eloquent ORM - models, relationships, queries, casts, observers, factories. Use when working with database models.
Forbidden
- Do not modify source files (only .cartographer/*.md)
- Do not delete or restructure the tree
- Do not assume — always read actual frontmatter
Read more
name: map-ecosystem description: "Use when cartography index descriptions are truncated, a new plugin/skill was just added, or after SessionStart regenerates the map." context: fork user-invocable: true
<objective> Enriches the auto-generated `.cartographer/` index.md files with complete descriptions extracted from source file frontmatter — restores the full skill/agent `description` text that auto-generation truncates at 60 characters. Read-only against everything outside `.cartographer/*.md`: it never modifies source files, never deletes or restructures the tree, and never assumes a description — it always reads the actual frontmatter first. </objective>
Map Ecosystem — Enrich Descriptions
Enrich the auto-generated `.cartographer/` index.md files with complete descriptions extracted from source file frontmatter.
When to Use
- After SessionStart has generated the cartography structure
- When descriptions appear truncated in index.md files
- When a new plugin/skill was added and needs full descriptions
When NOT to Use
- Code generation or debugging
- Direct file editing outside .cartographer/
Steps
1. **Read** the ecosystem index: `${CLAUDE_PLUGIN_ROOT}/../.cartographer/index.md` 2. **For each plugin** listed, read its `.cartographer/index.md` 3. **For each linked file** (agents/*.md, skills/*/SKILL.md):
- Read the source file
- Extract the full `description` from YAML frontmatter
- Replace the truncated description in the index.md line
4. **Write** the updated index.md with complete descriptions
Example
Before (auto-generated, truncated at 60 chars):
├── [laravel-eloquent](./skills/laravel-eloquent/index.md) — Complete Eloquent ORM - models, relatio
After (enriched by agent):
├── [laravel-eloquent](./skills/laravel-eloquent/index.md) — Complete Eloquent ORM - models, relationships, queries, casts, observers, factories. Use when working with database models.
Forbidden
- Do not modify source files (only .cartographer/*.md)
- Do not delete or restructure the tree
- Do not assume — always read actual frontmatter
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Other skills on fusengine-agents.
- /agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Open skill - /apex-methodology
Use when starting ANY development task -- feature, bug fix, refactor, hotfix (triggers: implement, create, build, fix, add feature, refactor, develop).
Open skill - /brainstorming
Use when creating a feature/component or adding functionality. Fires BEFORE APEX Analyze to refine requirements via structured questioning.
Open skill - /challenge
Use before a root-cause, done/verified claim, irreversible action, or 2nd-time fix reaches the owner (APEX or plain conversation); also fires at every eLicit/Verify gate. Not for code correctness (use sniper).
Open skill - /code-quality
Use when validating code quality after modifications -- SOLID compliance, DRY duplication, linter errors, architecture violations. Do NOT use for functional verification (run verification FIRST, then code-quality).
Open skill - /elicitation
Use when an expert agent self-reviews and self-corrects code after the Execute phase, before sniper validation (BMAD-METHOD elicitation techniques).
Open skill

