
work-creation-cycle
by Rwb3n
SKILL.md
name: work-creation-cycle description: HAIOS Work Creation Cycle for structured work item population. Use when creating new work items. Guides VERIFY->POPULATE->READY workflow. recipes:
- work generated: 2025-12-25 last_updated: '2026-01-17T11:59:42'
Work Creation Cycle
This skill defines the VERIFY-POPULATE-READY cycle for populating work items after scaffolding. It ensures work items have complete Context and Deliverables before being actioned.
When to Use
Invoked automatically by /new-work command after scaffolding.
Manual invocation: Skill(skill="work-creation-cycle") when populating an existing work file.
The Cycle
VERIFY --> POPULATE --> READY --> CHAIN
|
[confidence check]
/ \
HIGH LOW
| |
auto-chain to /reason +
/new-plan or user decision
/new-investigation
1. VERIFY Phase
On Entry:
just set-cycle work-creation-cycle VERIFY {work_id}
Goal: Confirm work file was created and is valid.
Actions:
- Read the work file:
docs/work/active/{id}/WORK.md(E2-212 directory structure) - Verify file has valid YAML frontmatter
- Confirm
status: activeandcurrent_node: backlog - Check for
spawned_byfield if this is spawned work
Exit Criteria:
- Work file exists at expected path
- Frontmatter valid (template: work_item)
- Status is
active
Tools: Read, Glob
2. POPULATE Phase
On Entry:
just set-cycle work-creation-cycle POPULATE {work_id}
Goal: Fill in essential work item fields.
Guardrails (MUST follow):
- Context section MUST be populated - Replace
[Problem and root cause]with actual problem description - Deliverables MUST be actionable - Replace placeholders with specific checkboxes
- MUST validate against source investigation (Session 192 - see below)
Actions:
- Prompt for Context: "What problem does this work item solve?"
- Fill in Context section with problem statement
- Prompt for Deliverables: "What are the specific outputs?"
- Fill in Deliverables as checklist items
- Optionally set: milestone, priority, spawned_by, blocked_by
- MUST: Run Investigation Design Validation (see below)
MUST Gate: Investigation Design Validation (Session 192 - E2-290 Learning)
IF spawned_by or spawned_by_investigation is populated:
- MUST read the source investigation:
docs/work/active/{inv_id}/investigations/*.md - MUST find the
## Design Outputssection - MUST verify coverage:
- For each schema/structure in Design Outputs → deliverable exists
- For each "Integration Mechanism" description → deliverable exists
- For each "Key Design Decision" that implies implementation → deliverable exists
- If gap found: Add missing deliverables before proceeding
Example (E2-290 gap that prompted this gate):
Investigation INV-064 had:
Design Outputs:
- Queue Schema (work_queues.yaml) ✓ → deliverable existed
- Queue Integration Mechanism ✗ → NO deliverable for wiring into survey-cycle
Result: Infrastructure built, but no governance integration.
Anti-pattern prevented: "Design without Deliverable" - Investigation designs integration but work item only lists infrastructure. Implementation completes infrastructure, never wires it in.
Exit Criteria:
- Context section has real content (not placeholder)
- Deliverables have specific items (not placeholders)
- MUST: If spawned by investigation, deliverables cover all Design Outputs
- Optional: milestone assigned
Tools: Edit, AskUserQuestion, Read
3. READY Phase
On Entry:
just set-cycle work-creation-cycle READY {work_id}
Goal: Validate work item is actionable.
Guardrails (MUST follow - E2-191):
- Context MUST NOT contain placeholders - Detect
[Problem and root cause] - Deliverables MUST NOT contain placeholders - Detect
[Deliverable 1],[Deliverable 2]
Actions:
- Read work file to verify all fields populated
- Check Context section contains >20 characters AND no placeholder text
- Check Deliverables has at least one checkbox item AND no placeholder text
- If placeholders found: Report to user, recommend completing POPULATE phase
- Update History section with population timestamp
Exit Criteria:
- Context populated with meaningful content (no placeholders)
- Deliverables has actionable checklist (no placeholders)
- Work item ready for further lifecycle progression
Tools: Read, Edit
4. CHAIN Phase (Post-READY)
On Entry:
just set-cycle work-creation-cycle CHAIN {work_id}
Goal: Route to appropriate next cycle based on confidence.
Confidence-Based Routing:
| Signal | Confidence | Action |
|---|---|---|
ID starts with INV- | HIGH | Auto-chain: /new-investigation {id} {title} |
spawned_by_investigation is populated | HIGH | Auto-chain: /new-plan {id} {title} (discovery done) |
| Clear technical deliverables, small scope | HIGH | Auto-chain: /new-plan {id} {title} |
| Complex/architectural work | LOW | Chain to /reason for structured decision |
| Unclear if needs investigation first | LOW | Chain to /reason for structured decision |
| No clear signals | LOW | Chain to /reason for structured decision |
Actions:
- Read work file frontmatter for signals (id prefix, spawned_by_investigation)
- Assess deliverables complexity
- If HIGH confidence: Auto-invoke appropriate command
- If LOW confidence: Invoke
/reasonand ask user
Exit Criteria:
- Next lifecycle step initiated (plan, investigation, or user decision)
Tools: Read, Skill
Composition Map
| Phase | Primary Tool | Memory Integration |
|---|---|---|
| VERIFY | Read, Glob | - |
| POPULATE | Edit, AskUserQuestion | Query for prior similar work |
| READY | Read, Edit | - |
| CHAIN | Read, Skill | - |
Quick Reference
| Phase | Question to Ask | If NO |
|---|---|---|
| VERIFY | Does work file exist? | Re-run /new-work |
| POPULATE | Is Context filled? | Prompt user for problem statement |
| POPULATE | Are Deliverables defined? | Prompt user for outputs |
| POPULATE | If spawned by INV: Do deliverables cover all Design Outputs? | Add missing deliverables |
| READY | Is work item actionable? | Return to POPULATE |
Related
- Investigation-cycle skill: Parallel workflow for research
- Implementation-cycle skill: Parallel workflow for implementation
- Work item template:
.claude/templates/work_item.md - ADR-039: Work Item as File Architecture
- /new-work command: Creates work item files
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon