managing-workflowlisted
Install: claude install-skill aiskillstore/marketplace
# Orbit Workflow
Single skill for specification-driven development. **Artifacts are the source of truth.**
## Initialization
<context-loading>
Before any workflow action, load full context with a single Bash call:
```bash
node plugins/spec/skills/managing-workflow/scripts/context-loader.js
```
This returns JSON with:
- `suggestion`: Recommended next action
- `current`: Active feature state and artifacts
- `features.active`: All features with frontmatter state
- `features.in_progress`: Features needing attention
- `architecture_files`: Available architecture docs
Use this context for all decisions. Avoid additional Read calls for state detection.
</context-loading>
## Phase Detection
Phase is stored in spec.md frontmatter `status` field:
| Status | Artifacts | Next Action |
|--------|-----------|-------------|
| `initialize` | None | Create spec.md |
| `specification` | spec.md (no [CLARIFY]) | Create plan.md |
| `clarification` | spec.md with [CLARIFY] | Resolve questions |
| `planning` | spec.md + plan.md | Create tasks.md |
| `implementation` | tasks.md has `- [ ]` | Execute tasks |
| `complete` | All tasks `- [x]` | Archive or new feature |
## Frontmatter Schema
### spec.md Frontmatter
```yaml
---
id: 001-feature-name
title: Human Readable Title
status: specification # initialize|specification|clarification|planning|implementation|complete
priority: P1 # P1|P2|P3
created: 2025-11-27
updated: 2025-11-27
progress:
tasks_total: 0
tasks_done: 0
owner