Agent skill
workflow-state-patterns
Hook-based state machine patterns for multi-phase workflows. Use when designing sequential workflows with quality gates.
Install this agent skill to your Project
npx add-skill https://github.com/chkim-su/forge-editor/tree/main/skills/workflow-state-patterns
SKILL.md
Workflow State Patterns
Multi-phase workflows need phase enforcement, session continuity, and quality gates. This pattern uses file-based state + hooks.
Quick Start
- Define phases: analyze → plan → execute → verify
- Create state files on phase completion:
.workflow-phase-done - Add PreToolUse hooks to check required state files
- Add PostToolUse hooks to create state files
Core Concept
Phase 1 → [POST HOOK] → .analysis-done
Phase 2 → [POST HOOK] → .plan-approved
Phase 3 → [PRE HOOK checks] → [POST HOOK] → .execution-done
Phase 4 → PASS: cleanup all / FAIL: preserve for retry
State Files
| File | Purpose |
|---|---|
.{workflow}-analysis-done |
Unlocks planning |
.{workflow}-plan-approved |
Unlocks execution |
.{workflow}-execution-done |
Marks modification complete |
.{workflow}-audit-passed |
Final success marker |
Hook Template (Claude Code 1.0.40+)
{
"hooks": {
"PreToolUse": [{
"matcher": "Task",
"hooks": [{
"type": "command",
"command": "python3 scripts/workflow-gate.py",
"timeout": 5
}]
}]
}
}
Gate script checks tool_input.subagent_type and state files.
Best Practices
- Prefix state files -
.refactor-*,.migration-* - gitignore state files - Don't commit workflow state
- Clean up on success - Remove all state files on completion
- Preserve on failure - Keep state for retry capability
References
- Complete Workflow Example - Full 4-phase implementation
- Hook Details - Detailed hook configurations
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
forge-analyzer
Analyze vague user ideas and recommend architecture based on actual needs, not predefined categories. Front-end for clarifying ambiguous requests before routing to appropriate skillmaker tools.
hook-system
Claude Code Hook system entry point. Guides you to the right skill based on your needs.
mcp-gateway-patterns
MCP Gateway design patterns for Agent Gateway, Subprocess, and Daemon isolation. Use when designing MCP integrations.
mcp-daemon-isolation
Context isolation for query-type MCP tools (LSP, search, database) via external CLI. Use when MCP query results consume too many context tokens.
critical-analysis-patterns
Philosophical/meta project analysis - critical analysis framework that asks "why?"
agent-tools-patterns
Patterns for configuring agent tools correctly
Didn't find tool you were looking for?