implement
Defines the workflow sequence and resume rules for the /implement orchestrator command.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Defines the workflow sequence and resume rules for the /implement orchestrator command.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
A set of rules to maintain a unified code culture.
GitHub Issues project management integration using gh CLI. Provides tool mappings, status protocols, document operations, and workflow patterns for GitHub Issues. Load this skill when the configured project management tool is 'github-issues'.
Linear project management integration. Provides tool mappings, status protocols, document operations, and workflow patterns for Linear. Load this skill when the configured project management tool is 'linear'.
This skill should be used when designing terminal user interfaces, creating TUI layouts, choosing TUI color schemes, implementing keyboard navigation, building terminal dashboards, or working with any TUI framework. Activates on mentions of TUI design, terminal UI, Ratatui layout, Ink components, Textual widgets, Bubbletea views, terminal color palette, keybinding design, panel layout, split panes, terminal dashboard, box-drawing characters, sparklines, progress bars, modal dialogs, focus management, or terminal accessibility.
Provides pathway detection and ck availability instructions for workbench commands. Load this skill to determine whether the workbench is in development mode (Pathway 1) or configured project mode (Pathway 2), and whether ck semantic search tools are available.
| name | implement |
| description | Defines the workflow sequence and resume rules for the /implement orchestrator command. |
This skill defines the workflow sequence and resume rules for the /implement orchestrator command. Treat this file as the single source of truth for step ordering, status dispatch, and stop conditions.
Invocation contract:
/implement <issue-id> [ticket|research|plan|execute|review|commit]
The optional stop-step input is case-insensitive at input, normalized to lowercase, then validated against the exact allowed set.
The orchestrated flow is:
ticket -> research -> plan -> execute -> review -> commit
Each workflow step runs in a dedicated Task subagent.
Use the issue's status-ticket label to decide where to start.
| Current status-ticket value | Next step | Next agent to spawn |
|---|---|---|
| none (no status label) | ticket | ticketer |
decomposed | — | None. Hard-stop. Issue has been split into sub-issues. |
open | research | researcher |
researched | plan | planner |
planned | execute | executer |
implemented | review | reviewer |
reviewed | commit | committer |
commit is terminal for this orchestrator flow.decomposed is terminal — the issue has been split into sub-issues and no further workflow steps apply. Run /implement on individual sub-issues instead.status-ticket state must be validated before dispatch:
none (no status-ticket) is valid and maps to ticketopen, researched, planned, implemented, reviewed, decomposedFor each step, the orchestrator must:
subagent_type from the dispatch table and a prompt containing the issue ID.task_id in OpenCode, or via SendMessage with the agent ID in Claude Code).success - agent completed without unresolved blockersblocked - agent needs a blocking/critical decision that cannot be resolved automaticallyfailed - agent errored or could not completeWhen a workflow agent asks a question:
.workbench/settings.yml.Recommended default: label with every escalation.max_auto_answers_per_step from settings.Critical/high-impact examples:
Stop immediately when any of the following occurs:
failedstatus-ticket is decomposed (terminal — issue has been split into sub-issues; run /implement on individual sub-issues instead)status-ticket validation fails (multiple values or invalid value)Do not continue to subsequent steps after a stop condition.
A successful orchestrator run includes:
Report Version: v1Report Status: Complete|PartialFinal Stop Reason: <reason>Implementation Report: <ISSUE_ID> - YYYY-MM-DDTHH-MM-SSZTo change workflow behavior:
/implement command logic generic; do not hard-code sequence outside this skill.