extract-skill
Reverse-engineer design systems, tokens, and components from live products or screenshots
Multi-AI validation, scoring, and review using available external providers (Double Diamond Deliver phase)
$ npx -y skills add nyldn/claude-octopus --skill flow-deliver --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/flow-deliverContext preview
The summary Claude sees to decide when to auto-load this skill.
Multi-AI validation, scoring, and review using available external providers (Double Diamond Deliver phase)
name: flow-deliver description: "Multi-AI validation, scoring, and review using available external providers (Double Diamond Deliver phase)" 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`.
{{PREAMBLE}}
Before starting delivery: 1. Read `.octo/STATE.md` to verify Develop phase complete 2. Update STATE.md:
# Verify Develop phase is complete
if [[ -f ".octo/STATE.md" ]]; then
develop_status=$("${HOME}/.claude-octopus/plugin/scripts/octo-state.sh" get_phase_status 3)
if [[ "$develop_status" != "complete" ]]; then
echo "⚠️ Warning: Develop phase not marked complete. Consider completing development first."
fi
fi
# Update state for Delivery phase
"${HOME}/.claude-octopus/plugin/scripts/octo-state.sh" update_state \
--phase 4 \
--position "Delivery" \
--status "in_progress"This skill uses **ENFORCED execution mode**. You MUST follow this exact sequence.
Analyze the user's prompt and project to determine context:
**Knowledge Context Indicators**:
**Dev Context Indicators**:
**Also check**: What is being reviewed? Code files -> Dev, Documents -> Knowledge
**Capture context_type = "Dev" or "Knowledge"**
When context_type is Dev, determine the **subtype** to inject domain-appropriate validation criteria into the review prompt. Append the matching validation supplement after the user's prompt when calling orchestrate.sh in Step 4.
| Subtype | Trigger keywords | Validation supplement | |---------|-----------------|---------------------| | `frontend-ui` | "page", "widget", "component", "UI", "HTML", "CSS", "form", "dashboard", "layout" | Verify: all referenced files exist (scripts, stylesheets, images). Check ARIA labels and roles, keyboard navigability, touch target sizes (44px min). Flag innerHTML usage. Confirm progressive enhancement (fallbacks for navigator.share, localStorage, etc). Test self-containment: does this work if opened/run with zero setup? | | `cli-tool` | "CLI", "command-line", "terminal", "script", "flag", "argument" | Verify: --help flag works, exit codes are meaningful (0/1/2), stderr vs stdout used correctly, argument edge cases handled (missing args, invalid input, --unknown-flag). | | `api-service` | "API", "endpoint", "REST", "GraphQL", "gRPC", "server", "route" | Verify: input validation at every endpoint, consistent error response format, auth on protected routes, rate limiting considered, schema/contract documented. | | `infra` | "deploy", "terraform", "docker", "CI", "pipeline", "Kubernetes", "helm" | Verify: operations are idempotent, no hardcoded secrets, rollback path exists, health checks included, destroy operations require confirmation. | | `data` | "ETL", "pipeline", "migration", "schema", "database", "SQL" | Verify: migrations are reversible, data validation at ingestion, backup strategy documented, no data loss on failure. | | `general` | Default if no subtype matches | No supplement — use standard review criteria. |
**How to apply:** When calling orchestrate.sh in Step 4, append the validation supplement:
orchestrate.sh deliver "<user prompt>\n\nDomain-specific validation criteria:\n<supplement text>"
**DO NOT PROCEED TO STEP 2 until context determined.** Context type (Dev vs Knowledge) and dev subtype determine which validation supplements to inject — wrong context produces a review that checks irrelevant criteria.
**MANDATORY: You MUST use the native shell command tool to run this provider check BEFORE displaying the banner. Do NOT skip it. Do NOT assume availability.**
bash "${HOME}/.claude-octopus/plugin/scripts/helpers/check-providers.sh"**Use the ACTUAL results below. PROHIBITED: Showing only "🔵 Claude: Available ✓" without listing all providers.**
If `OCTO_ALLOWED_PROVIDERS` is set, treat it as the source of truth for which providers may participate. Providers filtered out by that allowlist are intentionally reported as unavailable; do not invoke or recommend them in the workflow.
**Display this banner BEFORE orchestrate.sh execution:**
**For Dev Context:**
🐙 **CLAUDE OCTOPUS ACTIVATED** - Multi-provider validation mode ✅ [Dev] Deliver Phase: [Brief description of code review] Provider Availability: 🔴 Codex CLI: [Available ✓ / Not installed ✗] - Code quality analysis 🟡 Antigravity CLI: [Available ✓ / Not installed ✗] - Security and edge cases 🧭 Antigravity CLI: [Available ✓ / Not installed ✗] - Additional external-model challenge 🔵 Claude: Available ✓ - Synthesis and recommendations 💰 Estimated Cost: $0.02-0.08 ⏱️ Estimated Time: 3-7 minutes
**For Knowledge Context:**
🐙 **CLAUDE OCTOPUS ACTIVATED** - Multi-provider validation mode ✅ [Knowledge] Deliver Phase: [Brief description of document review] Provider Availability: 🔴 Codex CLI: [Available ✓ / Not installed ✗] - Structure and logic analysis 🟡 Antigravity CLI: [Available ✓ / Not installed ✗] - Content quality and completeness 🧭 Antigravity CLI: [Available ✓ / Not installed ✗] - Additional
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 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
NLSpec authoring — use when you need a structured specification from multi-AI research and consensus