92 first-party methodology skills across 9 behavioral plugins for Claude Code and the Dojo platform.
AI agents are powerful but chaotic. They hallucinate requirements, forget context between sessions, skip verification, and produce work that needs rework. The problem isn't intelligence — it's discipline. These plugins encode the discipline: battle-tested workflows from actually shipping software with autonomous agents.
92 skills. 40-50% timeline reduction. 77 hours saved through pre-flight verification alone.
dojo plugin install DojoGenesis/plugins
Search for "DojoGenesis Plugins" in the Claude Code plugin marketplace, or add to your .mcp.json:
{
"mcpServers": {
"dojo": {
"command": "dojo",
"args": ["mcp", "--skills-path", "/path/to/plugins"]
}
}
}
Once installed, invoke any skill by name:
/strategic-thinking:scout
/specification-driven-development:release-specification
/wisdom-garden:compression-ritual
/system-health:health-audit
Or via the Dojo MCP tools: dojo.list_skills, dojo.search_skills, dojo.invoke_skill.
| Plugin | Verb | Skills | What it does |
|---|---|---|---|
| agent-orchestration | ORCHESTRATE | 10 | Multi-agent coordination: parallel dispatch, delegation playbooks, handoff protocols, decision propagation. Handoffs are sacred relays, not tosses over the wall. |
| continuous-learning | LEARN | 13 | Research modes (deep/wide/web), project exploration, synthesis, retrospectives, era architecture, codebase cartography, TLDR code analysis. |
| skill-forge | BUILD | 9 | The meta-layer — skills about making skills. Create, maintain, audit, batch-normalize community skills, build MCP servers. |
| specification-driven-development | SPECIFY | 12 | Spec writing grounded in codebase reality: release specs, parallel tracks, frontend-from-backend, implementation prompts, pre-commission alignment. |
| strategic-thinking | STRATEGIZE | 6 | Scout tensions before committing: product positioning, iterative scouting, multi-surface strategy, adversarial review, strategic-to-tactical workflow. |
| system-health | OBSERVE | 19 | Audit ecosystem health: documentation audit, health audit, observability dashboard, repo status, semantic clusters, supply chain refresh, budget guard. |
| wisdom-garden | REMEMBER | 13 | Compress session context into lasting memory: compression ritual, memory garden, seed extraction, system prompt archaeology, session continuity ledger. |
| pretext-pdf | PUBLISH | 2 | Export structured documents to print-quality PDF using the Pretext layout engine. Zero-reflow typography, adaptive pagination, auto table of contents. |
| dojo-craft | CRAFT | 8 | The practitioner's workbench — strategic thinking, codebase intelligence, memory curation, and project governance as composable workflows. |
plugins/
├── agent-orchestration/
│ ├── README.md
│ ├── CONNECTORS.md
│ ├── agents/
│ ├── commands/
│ ├── hooks/
│ └── skills/
│ ├── agent-dispatch-playbook/SKILL.md
│ ├── agent-teaching/SKILL.md
│ ├── async-agent-dispatch/SKILL.md
│ ├── decision-propagation/SKILL.md
│ ├── granular-visibility/SKILL.md
│ ├── handoff-protocol/SKILL.md
│ ├── maestro-orchestration/SKILL.md
│ ├── parallel-dispatch/SKILL.md
│ ├── workflow-router/SKILL.md
│ └── workspace-navigation/SKILL.md
├── continuous-learning/skills/
│ ├── codebase-cartography/ ├── debugging/
│ ├── era-architecture/ ├── project-exploration/
│ ├── research-modes/ ├── research-synthesis/
│ ├── retrospective/ └── tldr-code-analysis/
├── skill-forge/skills/
│ ├── batch-normalize-and-package/ ├── mcp-server-builder/
│ ├── normalize-community-skill/ ├── scan-community-repos/
│ ├── skill-creation/ └── skill-maintenance/
├── specification-driven-development/skills/
│ ├── context-ingestion/ ├── frontend-from-backend/
│ ├── implementation-prompt/ ├── parallel-tracks/
│ ├── pre-commission-alignment/ ├── pre-implementation-checklist/
│ ├── release-specification/ └── specification-writer/
├── strategic-thinking/skills/
│ ├── adversarial-reviewer/ ├── iterative-scouting/
│ ├── multi-surface-strategy/ ├── product-positioning/
│ └── strategic-scout/
├── system-health/skills/
│ ├── documentation-audit/ ├── health-audit/
│ ├── observability-dashboard/ ├── repo-status/
│ ├── semantic-clusters/ └── supply-chain-refresh/
├── wisdom-garden/skills/
│ ├── compression-ritual/ ├── memory-garden/
│ ├── seed-extraction/ ├── seed-to-skill-converter/
│ └── system-prompt-archaeology/
├── pretext-pdf/skills/
│ ├── pdf-export/SKILL.md
│ └── pdf-typography/SKILL.md
├── dojo-craft/skills/
│ ├── adr-writer/ ├── scout-writer/
│ ├── claude-md-guardian/ ├── convergence-checker/
│ ├── memory-curator/ ├── seed-curator/
│ ├── codebase-viewer/ └── project-scaffolder/
└── community-skills/ ← Community-contributed skills
Each plugin is self-contained with:
README.md — Overview, philosophy, skill table, trigger phrasesCONNECTORS.md — External service integrations (MCPs, APIs, data sources)agents/ — Agent persona definitions for specialized workcommands/ — Claude Code slash command definitionsskills/ — Full workflow definitions (SKILL.md files)Each skill is a SKILL.md file with YAML frontmatter:
---
name: release-specification
plugin: specification-driven-development
version: 2.1.0
quality: A+
description: Write release specs grounded in codebase reality
model: sonnet # sonnet for parsing/bulk, opus for architecture
triggers:
- "write a spec for"
- "release specification"
- "before commissioning agents"
---
# Release Specification
[Full workflow steps as markdown...]
Skills are active cognitive scaffolds — structured methodologies that guide AI agents through complex decisions, not passive documentation. They use progressive disclosure: a quick trigger gets you started, the full SKILL.md provides the complete workflow when needed.
# List all skills by plugin
dojo list-skills
# Search skills by keyword
dojo search-skills "specification"
# Invoke a skill directly
/specification-driven-development:release-specification
# Fastest path to value
/strategic-thinking:scout # Facing a decision with no obvious answer
/specification-driven-development:release-specification # Before commissioning autonomous agents
/continuous-learning:retrospective # After every major release
/wisdom-garden:compression-ritual # End of long sessions
/system-health:health-audit # When codebases feel brittle
Strategic work
/strategic-thinking:scout/strategic-thinking:multi-surface-strategy/strategic-thinking:adversarial-reviewerSpecification and planning
/specification-driven-development:release-specification/specification-driven-development:frontend-from-backend/specification-driven-development:parallel-tracks/specification-driven-development:pre-implementation-checklistMemory and context
/wisdom-garden:compression-ritual/wisdom-garden:memory-garden/wisdom-garden:seed-extraction → /skill-forge:skill-creationSystem health
/system-health:repo-status + /system-health:semantic-clusters/system-health:documentation-audit/system-health:health-auditLearning and debugging
/continuous-learning:debugging/continuous-learning:research-modes/continuous-learning:retrospectiveAgent coordination
/agent-orchestration:handoff-protocol/agent-orchestration:parallel-dispatch/agent-orchestration:decision-propagationdojo.* tool access: DojoGenesis/mcp1.3.0 — 92 first-party skills, all rated A+.
Semantic versioning:
See CHANGELOG.md for full history.
--json one-shot)Apache 2.0 — see LICENSE.
Built by Dojo Genesis at Tres Pies Design. Every skill here exists because we needed it. And then needed it again.