extract-skill
Reverse-engineer design systems, tokens, and components from live products or screenshots
Show where you are in the workflow and what to do next — use for progress checks and orientation
$ npx -y skills add nyldn/claude-octopus --skill skill-status --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/skill-statusContext preview
The summary Claude sees to decide when to auto-load this skill.
Show where you are in the workflow and what to do next — use for progress checks and orientation
name: skill-status description: "Show where you are in the workflow and what to do next — use for progress checks and orientation" disable-model-invocation: true
> **Host: Codex CLI** — This skill was designed for Claude Code and adapted for Codex. > Cross-reference commands use installed skill names in Codex rather than `/octo:*` slash commands. > Use the active Codex shell and subagent tools. Do not claim a provider, model, or host subagent is available until the current session exposes it. > For host tool equivalents, see `skills/blocks/codex-host-adapter.md`.
Display current project status, roadmap progress, blockers, and intelligent next-action suggestions based on workflow state.
**Core principle:** Read state → Display dashboard → Route intelligently.
**Use this skill when user asks:**
**Do NOT use for:**
# Check if project is initialized
if [[ ! -d ".octo" ]]; then
echo "No project initialized"
exit 1
fi**If .octo/ does not exist:**
## Project Status **Status:** Not initialized No Claude Octopus project found in this directory. ### Get Started Run `/octo:embrace [your project description]` to initialize a new project and start the Double Diamond workflow. **Example:**
/octo:embrace build a user authentication system
This will: 1. Create .octo/ directory structure 2. Initialize STATE.md, PROJECT.md, ROADMAP.md 3. Begin Discover phase (research and exploration)
**Stop here** - do not proceed to Phase 2.
# Read current state from STATE.md ./scripts/octo-state.sh read_state
**Expected output format:**
schema=1.0 last_updated=2026-02-02T10:30:00Z current_phase=2 current_position=define-requirements status=in_progress
Extract key-value pairs:
# Read roadmap for phase overview cat .octo/ROADMAP.md
Parse ROADMAP.md to identify:
## Project Status
**Phase:** Phase {current_phase} - {phase_name}
**Position:** {current_position}
**Status:** {status}
**Last Updated:** {last_updated}
### Roadmap Progress
- [x] Phase 1: Discover - complete
- [ ] Phase 2: Define - in_progress <-- YOU ARE HERE
- [ ] Phase 3: Develop - not_started
- [ ] Phase 4: Deliver - not_started
### Current Phase Details
**Phase 2: Define (Grasp)**
- **Goal:** Clarify requirements and scope
- **Position:** {current_position}
- **Status:** {status}
### Blockers
{blockers or "None"}
### Suggested Next Action
{intelligent routing based on status}Map `current_phase` and `status` to completion markers:
| Phase | Status | Marker | |-------|--------|--------| | 1 | complete | `[x] Phase 1: Discover - complete` | | 2 | in_progress | `[ ] Phase 2: Define - in_progress <-- YOU ARE HERE` | | 3 | not_started | `[ ] Phase 3: Develop - not_started` | | 4 | not_started | `[ ] Phase 4: Deliver - not_started` |
Use this routing table:
| Status | Suggestion | |--------|-----------| | `ready` | "Run `/octo:embrace [description]` to start the workflow" | | `planning` | "Continue planning in current phase. Use `/octo:define` to refine requirements." | | `building` | "Continue implementation. Use `/octo:develop` to build features." | | `in_progress` | "Continue with current phase. Check .octo/phases/phase{N}/ for details." | | `blocked` | "Review blockers above. Use `/octo:issues` to track and resolve issues." | | `complete` | "Phase complete. Proceed to next phase or run `/octo:ship` to finalize." | | `complete_with_gaps` | "Phase complete with known gaps. Review .octo/ISSUES.md before proceeding." | | `shipped` | "Project delivered! Review .octo/LESSONS.md for retrospective." | | `paused` | "Project paused. Resume with `/octo:embrace` or check .octo/STATE.md for context." |
If `status=in_progress`, provide phase-specific guidance:
**Phase 1 (Discover):**
Continue research and exploration. - Use `/octo:research [topic]` for multi-AI research - Use `/octo:debate [question]` for decision support
**Phase 2 (Define):**
Continue requirements clarification. - Use `/octo:prd` to write product requirements - Use `/octo:define` to refine scope
**Phase 3 (Develop):**
Continue implementation. - Use `/octo:develop` to build features - Use `/octo:tdd` for test-driven development - Use `/octo:review` for code quality checks
**Phase 4 (Deliver):**
Continue validation and delivery. - Use `/octo:deliver` for final review - Use `/octo:security` for security audit - Use `/octo:ship` to finalize delivery
## Project Status **Status:** Not initialized No Claude Octopus project found in this directory. ### Get
Every AI model has blind spots. Claude Octopus supports twelve external provider integrations — Codex, Antigravity CLI, Copilot, Qwen, Ollama, Perplexity, OpenRouter, OrcaRouter, OpenCode, Cursor CLI, Grok, and Kimi Code — alongside the built-in Claude Code
Repo: nyldn/claude-octopus
Reverse-engineer design systems, tokens, and components from live products or screenshots
Multi-AI requirements scoping using available external providers (Double Diamond Define phase). Priority triggers: octo define, octo scope, co-define,…
Multi-AI validation, scoring, and review using available external providers (Double Diamond Deliver phase)
Multi-AI implementation using available external providers (Double Diamond Develop phase). DO NOT use for simple code edits, reading/reviewing code, built-in…
Multi-AI research using available external providers (Double Diamond Discover phase)
Decompose and execute large changes, migrations, or multi-issue fixes in parallel with quality gates