From sgldev
Shows the status of the agent expertise system for the current project. Displays mental model file sizes, last-modified dates, and top-level keys. Use when asking about expertise status, agent knowledge state, or mental model overview.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sgldev:expertiseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Display the current state of the agent expertise system for this project.
Display the current state of the agent expertise system for this project.
Check for .expertise/ directory in the project root. If it doesn't exist, tell the user:
bash $CLAUDE_PLUGIN_ROOT/scripts/init-expertise.shRead .expertise/config.yaml and display:
For each model file in .expertise/models/, display:
Check docs/solutions/ (managed by compound-engineering plugin). If it exists, count .md files per subdirectory and display a summary.
Format as a readable summary. Example output:
## Agent Expertise System
Config: max_lines=5000, 6 agents configured
### Mental Models
| Agent | Lines | Status | Tracking |
|-------|-------|--------|----------|
| ash-reviewer | 142 | active | patterns_discovered, architecture, open_questions |
| elixir-reviewer | 89 | active | patterns_discovered, codebase_observations |
| liveview-reviewer | 0 | empty | — |
| python-reviewer | 0 | empty | — |
| typescript-reviewer | 0 | empty | — |
| team-lead | 34 | active | project_patterns, workflow_observations |
### Institutional Knowledge (docs/solutions/)
12 solution docs across 5 categories:
- runtime-errors/: 4 docs
- best-practices/: 3 docs
- database-issues/: 2 docs
- test-failures/: 2 docs
- build-errors/: 1 doc
This is a read-only command. Never modify any files. Only read and report.
npx claudepluginhub sglyon/sglyon-claude-plugins --plugin sgldevGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.