Command workflow orchestration patterns for /code, /fix, /audit, and other implementation commands. Provides step-by-step execution flows, quality gates, and completion criteria. Triggers: workflow, orchestration, command flow, IDR, test generation, RGRC, quality gates, completion criteria.
Orchestrates command workflows with step-by-step execution flows, quality gates, and completion criteria.
/plugin marketplace add thkt/claude-config/plugin install complete-workflow-system@thkt-development-workflowsThis skill is limited to using the following tools:
references/code-workflow.mdreferences/fix-workflow.mdreferences/shared/idr-generation.mdreferences/shared/tdd-cycle.mdreferences/shared/test-generation.mdCommand workflow patterns and orchestration logic for implementation commands.
Centralize workflow knowledge that was previously scattered across references/commands/.
Commands become thin orchestrators that reference this skill for execution logic.
| Command | Workflow Reference | Purpose |
|---|---|---|
/code | @./references/code-workflow.md | TDD implementation with RGRC cycle |
/fix | @./references/fix-workflow.md | Bug fix with root cause analysis |
| Pattern | Reference | Used By |
|---|---|---|
| IDR Generation | @./references/shared/idr-generation.md | /code, /audit, /polish, /validate |
| TDD Cycle | @./references/shared/tdd-cycle.md | /code, /fix |
| Test Generation | @./references/shared/test-generation.md | /code, /fix |
1. Red - Write failing test (verify failure reason)
2. Green - Minimal code to pass ("You can sin" - quick/dirty OK)
3. Refactor - Apply principles (keep tests green)
4. Commit - Save stable state
| Gate | Target | Verification |
|---|---|---|
| Tests | All passing | npm test exit code 0 |
| Lint | 0 errors | npm run lint exit code 0 |
| Types | No errors | tsc --noEmit exit code 0 |
| Coverage | ≥80% | Coverage report |
| Check | Status |
|---|---|
| All tests passing | Required |
| No lint errors | Required |
| No type errors | Required |
| Documentation updated | If behavior changed |
| IDR generated | If SOW exists |
generating-tdd-tests - TDD fundamentalsapplying-code-principles - Design principles/code - TDD implementation/fix - Bug fixes/audit - Code review/polish - Code simplification/validate - SOW validationThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.