Internal patterns for crew commands. Not user-facing.
/plugin marketplace add settlemint/agent-marketplace/plugin install crew@settlemintThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/always-works-verification.mdreferences/patterns.mdReusable patterns for crew command implementation. All crew commands reference these patterns instead of duplicating code examples.
</objective><quick_start>
Reference patterns by name in commands:
<!-- In command files -->
<process>
Use <pattern name="spawn-batch"/> for parallel agent execution.
Use <pattern name="test-runner"/> after each batch.
</process>
</quick_start>
<routing>| Pattern | Purpose |
|---|---|
user-questions-constraint | MANDATORY - Use AskUserQuestion always |
spawn-batch | Launch parallel agents (max 6) |
test-runner | Bash subagent for test execution |
large-output | Bash subagent for commands with large output |
todo-progress | TodoWrite status tracking |
ask-user | AskUserQuestion templates |
task-file | Task file frontmatter format |
collect-results | TaskOutput collection pattern |
always-works | Verification sanity checks for builds |
CRITICAL: Follow <pattern name="user-questions-constraint"/> at ALL times.
Never output plain text questions with bullet options. Always use AskUserQuestion tool.
</constraints> <references>references/patterns.md - All pattern definitionsreferences/always-works-verification.md - Build verification sanity checks<success_criteria>
</success_criteria>