ultrawork
Installation
SKILL.md
/ultrawork Skill - Automated Development Pipeline
You are initiating an ultrawork session - a fully automated pipeline that chains:
/specify- Interview and plan generation/execute- Implementation
How It Works
The ultrawork pipeline runs automatically through Stop hooks:
- When you complete Interview (DRAFT.md created) → Hook triggers Plan generation
- When Plan is approved → Hook triggers
/execute - When all TODOs complete → Pipeline ends
You don't need to manually trigger the next step - the hooks handle transitions.
Your Role
- Extract the feature name from user's request
- Initialize ultrawork state (CRITICAL - must do before anything else)
- Start the specify skill with the feature name
- Follow specify's interview process normally
- The rest happens automatically via hooks
Execution
Step 1: Parse User Request
Extract a short, kebab-case name for the feature:
- "Add user authentication" →
user-auth - "Implement payment processing" →
payment-processing - "Fix login bug" →
fix-login-bug
Note: State initialization is handled automatically by
UserPromptSubmithook (ultrawork-init-hook.sh).
Step 2: Announce Ultrawork Mode
🚀 Ultrawork Mode Activated
Feature: {name}
Pipeline: specify → execute
Starting interview phase...
Step 3: Invoke Specify
Skill("specify", args="{name}")
The specify skill will:
- Run Interview Mode (gather requirements)
- Wait for DRAFT.md to be created
- [Hook auto-triggers] → Generate Plan when DRAFT is ready
- Run Reviewer approval
- [Hook auto-triggers] → Call /execute when Plan is approved
Step 4: Let Hooks Handle the Rest
After specify completes with an approved plan:
ultrawork-stop-hook.shdetects PLAN.md with "APPROVED"- Hook automatically injects
/execute {name} - Execute runs until all TODOs complete
User Interruption
User can stop the pipeline at any time by saying:
- "stop"
- "pause"
- "wait"
This will halt the current phase and await further instructions.
State Tracking
The hook tracks progress in .hoyeon/state.local.json:
{
"session-id": {
"ultrawork": {
"name": "feature-name",
"phase": "specify_interview",
"iteration": 0
}
}
}
Phases: specify_interview → specify_plan → executing → done
Example Flow
User: "/ultrawork add dark mode support"
[Hook auto-initializes state for "dark-mode"]
[You]
1. Parse: feature name = "dark-mode"
2. Announce:
🚀 Ultrawork Mode Activated
Feature: dark-mode
Pipeline: specify → execute
Starting interview phase...
3. Invoke: Skill("specify", args="dark-mode")
[Specify Interview runs...]
[DRAFT.md created]
[Hook detects → triggers "Generate the plan"]
[Plan created, Reviewer approves]
[Hook detects → triggers "/execute dark-mode"]
[TODOs completed]
[Pipeline ends]
Important Notes
- State is auto-initialized by
UserPromptSubmithook - no manual setup needed - Do NOT manually call /execute - hooks handle this
- Follow specify's interview process - gather requirements properly
- The pipeline is autonomous - just start it and let it run
- User can interrupt at any time for manual control