extract-skill
Reverse-engineer design systems, tokens, and components from live products or screenshots
Break a plan or spec into vertical slices that each declare what blocks them — use when work is agreed but not yet cut into fileable pieces
$ npx -y skills add nyldn/claude-octopus --skill skill-work-slicing --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/skill-work-slicingContext preview
The summary Claude sees to decide when to auto-load this skill.
Break a plan or spec into vertical slices that each declare what blocks them — use when work is agreed but not yet cut into fileable pieces
name: skill-work-slicing description: "Break a plan or spec into vertical slices that each declare what blocks them — use when work is agreed but not yet cut into fileable pieces" 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`.
Turn a plan, spec, or the conversation so far into a set of tickets. Each one is a **vertical slice** — a narrow but complete path through every layer — and each declares the tickets that block it.
This is the step between "we know what we are building" and "someone can pick up a piece of it". It does not decide anything: if decisions are still open, run `skill-pressure-test` first.
Before slicing, map unresolved decision records and their dependencies. Each record names its question, required evidence, owner, resolution, and unblocked implementation. A dependency cycle withholds ready status until it is recut. Invalidated decisions reopen affected work rather than leaving stale completion.
Adapted from `to-tickets` in [mattpocock/skills](https://github.com/mattpocock/skills) (MIT), retargeted at this repo's trackers.
reopened. Use `skill-pressure-test`.
waves. That is `/octo:parallel`, which decomposes into work packages it then runs. This produces tracker state for humans and future sessions.
The plan, spec, or conversation. Optionally a parent epic id to hang the slices under.
Each slice cuts a narrow but complete path through every layer it touches — schema, API, UI, tests. It is **not a horizontal** slice of one layer.
display the user's timezone, end to end" is vertical.
The first slice through a new area is the tracer bullet: thin, complete, and proves the path exists before anything is built out along it.
For every slice, name the slices that must close first. Only real ordering constraints — not preference, not tidiness. Two slices that merely touch the same file are not blocked on each other; two where one cannot be verified until the other exists are.
Cycles mean the slicing is wrong, not that the tracker needs a workaround. Recut.
This repo has two trackers and they are not interchangeable:
makes a child; `bd dep add <issue> <depends-on>` makes a blocking edge; `bd ready` lists what is takeable — open, unblocked, and not in progress.
externally visible or a contributor needs to see it.
Put the detail in the ticket body, not in the parent. The parent indexes; the ticket holds.
Use the tracker's atomic claim operation and read ownership back before editing a slice. If the tracker cannot claim atomically, use one integrator and do not treat an assignee read followed by a write as a lock. Never overwrite another owner's claim.
`bd` is periodically **write-blocked** by pending Dolt schema migrations, and the repository rule is explicit: **do not run the migration** unless you are the single designated migrator, because migrating a second clone forks the schema irrecoverably.
When writes are blocked, do not pretend the work was filed and do not silently drop it. Instead:
1. Emit the **ready-to-run `bd create` and `bd dep add` commands**, complete and in dependency order, so they can be run unmodified once writes return. 2. Write them into the plan or a roadmap note under `docs/roadmaps/`, which is the practice this repo already follows. 3. Say plainly, in the output, that nothing was filed and why.
1. The plan or spec as written. 2. The repository, to check whether a slice is already partly built. 3. The user, for sizing and priority. Do not invent priorities.
usually means the plan is really several, and filing them all buries the first.
to others and awkward to undo.
1. **Slice list** — title, one-line scope, and what it blocks on. 2. **Order** — which slices are takeable now, and which wait. 3. **Filed or not filed** — ids and links if filed; if not, the exact commands and the reason they were not run. 4. **Left unsliced** — anything in the plan too vague to cut, stated as such rather than forced into a ticket.
ids and the dependency order.
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