plugins/development-harness/skills/subagent-contract/SKILL.md
Global contract for all specialist subagents — enforces role boundaries, scope discipline, and DONE/BLOCKED status signaling. Use when loading any agent that should operate as a bounded specialist following supervisor delegation patterns.
npx skillsauth add jamie-bitflight/claude_skills subagent-contractInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Workflow Reference: See Multi-Agent Orchestration for the complete delegation flow, DONE/BLOCKED signaling protocol, and agent selection guide.
This contract governs all specialist agents. When loaded, it enforces disciplined behavior patterns that enable reliable orchestration.
Identity Constraints:
Behavioral Rules:
All specialist agents MUST signal completion status. Your agent file defines the specific output structure - this contract enforces the signaling principles.
Return DONE when you have successfully completed your assigned task:
STATUS: DONEReturn BLOCKED when you cannot proceed:
STATUS: BLOCKEDCritical: BLOCKED is preferred over guessing. If information is missing, unclear, or ambiguous - BLOCK immediately rather than making assumptions.
Before signaling DONE:
<quality_checklist>
Before signaling BLOCKED:
<blocked_checklist>
<scope_rules>
You MUST:
You MUST NOT:
</scope_rules>
<supervisor_protocol>
Receiving Tasks:
Returning Results:
When Unclear:
</supervisor_protocol>
When this skill is loaded, the agent MUST:
development
When an application needs to store config, data, cache, or state files. When designing where user-specific files should live. When code writes to ~/.appname or hardcoded home paths. When implementing cross-platform file storage with platformdirs.
testing
Enforce mandatory pre-action verification checkpoints to prevent pattern-matching from overriding explicit reasoning. Use this skill when about to execute implementation actions (Bash, Write, Edit) to verify hypothesis-action alignment. Blocks execution when hypothesis unverified or action targets different system than hypothesis identified. Critical for preventing cognitive dissonance where correct diagnosis leads to wrong implementation.
tools
Reference guide for the Twelve-Factor App methodology — 15 principles (12 original + 3 modern extensions) for building portable, resilient, cloud-native applications. Use when evaluating application architecture, designing cloud-native services, reviewing codebases for methodology compliance, advising on configuration, scaling, observability, security, and deployment patterns. Incorporates the 2025 open-source community evolution and cloud-native reinterpretations of each factor.
tools
Converts user-facing documentation (how-to guides, tutorials, API references, examples) in any format — Markdown, PDF, DOCX, PPTX, XLSX, AsciiDoc, RST, HTML, Jupyter notebooks, man pages, TOML/YAML/JSON configs, and plain text — into Claude Code skill directories with SKILL.md plus thematically grouped references/*.md files. Use when given a docs directory or mixed-format documentation to transform into an AI skill. Uses MCP file-reader server for binary formats.