sop-creatorlisted
Install: claude install-skill f22363712-dotcom/fbd-skill
# SOP Creator: VibeCoding Meta-Skill
Transform natural language requirements into high-certainty state machine workflows.
## Purpose
This skill generates Standard Operating Procedures (SOPs) that constrain AI behavior through:
- Physical validation gateways (exit code enforcement)
- Explicit state machines (finite, auditable transitions)
- Built-in error handling (degradation ladders)
- Structured I/O (typed inputs/outputs)
## When to Use
Invoke `/sop-creator` when you need to:
- Automate multi-step workflows with AI
- Ensure consistent execution across iterations
- Prevent context drift and premature actions
- Create auditable, verifiable processes
## State Machine
```
INIT → REQUIREMENTS → DESIGN → GENERATION → VALIDATION → COMPLETE
↓ ↓ ↓ ↓ ↓
[Gate] [Gate] [Gate] [Gate] [Gate]
```
---
## State 1: REQUIREMENTS
### Entry Conditions
- User has provided workflow description
- Working directory is writable
### Actions
1. **Extract Core Requirements**
- Identify workflow trigger condition
- Define expected deliverables
- List critical constraints
- Determine validation criteria
2. **Generate requirements.json**
```json
{
"workflow_name": "string",
"purpose": "string",
"trigger": "string",
"deliverables": ["string"],
"constraints": ["string"],
"states": ["string"],
"validation_methods": ["string"]
}
```
### Validation Gateway
**Script:** `scripts/validate