Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/skills/NAMING-CONVENTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Use the prefix that matches the dominant technology or artifact the skill target
| `marten__` | Event sourcing, projections, document storage | Aggregate scaffolding, single/multi-stream projections, Marten troubleshooting | `scaffold-single-stream-projection → marten__single_stream_projection`, `scaffold-aggregate → marten__aggregate_scaffold`
| `wolverine__` | Wolverine messaging, command handlers, Wolverine diagnostics | Handler templates, Wolverine-specific debugging | (future) `wolverine__handler_scaffold`
| `aspire__` | Aspire orchestration, AppHost utilities, MCP integration | Starting the solution, setup scripts, pipeline hooks | `start-solution → aspire__start_solution`, `setup-aspire-mcp → aspire__setup_mcp`
| `cache__` | HybridCache + Redis tuning | Cache debugging, invalidation playbooks | `debug-cache → cache__troubleshoot`
| `cache__` | HybridCache + Redis tuning | Cache debugging, invalidation playbooks | `debug-cache → cache__debug_cache`
| `frontend__` | Blazor features, ReactiveQuery patterns, SSE UX | UI scaffolding, optimistic update flows | `scaffold-frontend-feature → frontend__feature_scaffold`
| `ops__` | Local runbooks unrelated to a single stack (doctor, rebuild) | Environment health checks, clean rebuilds | `doctor → ops__doctor_check`, `rebuild-clean → ops__rebuild_clean`
| `deploy__` | Azure/Kubernetes shipping plus rollbacks | `aspire run` deployment helpers, rollback procedures | `deploy-to-azure → deploy__azure_container_apps`, `deploy-kubernetes → deploy__kubernetes_cluster`, `rollback-deployment → deploy__rollback`
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/agent-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,15 @@ The agent then follows the skill's instructions step-by-step.

### Skill Cross-Referencing System

All 17 skills include "Related Skills" sections that reference each other, creating an interconnected ecosystem:
All 28 skills include "Related Skills" sections that reference each other, creating an interconnected ecosystem:

**Example**: `/test__integration_scaffold` references:
- **Prerequisites**: `/wolverine__create_operation`, `/marten__list_query`, `/frontend__feature_scaffold`
- **Next Steps**: `/test__verify_feature`
- **See Also**: Links to test runner skills for execution

**Coverage**:
- All 17 skills have "Related Skills" sections
- All 28 skills have "Related Skills" sections
- ~85 cross-reference links between skills
- 4 end-to-end workflow paths documented
- Common commands centralized (test runners, environment checks)
Expand Down