ワンクリックで
workflow-implementation-plan
Create Smelter code-level implementation plans with exact files, tasks, TDD steps, and validation commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create Smelter code-level implementation plans with exact files, tasks, TDD steps, and validation commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when: User wants to run a SUBSTANTIAL multi-step coding task as a workflow (fix/implement a whole issue or feature, comprehensive review), CREATE workflows or commands, set up workflow automation, or manage workflow configuration. Triggers (run): "use workflow to", "run workflow", "with workflow", "workflow to", "workflow run", "use a workflow to", "run a workflow", and generic task-completion intents that imply a full coding deliverable: "실행해줘", "돌려줘", "구현해줘", "고쳐줘", "이슈 고쳐줘", "PR 만들어줘", "implement this", "fix this issue", "build this feature", "ship this". Triggers (create): "create a workflow", "write a workflow", "make a command", "author a workflow", "new workflow", "new command", "workflow yaml". Triggers (setup): "set up workflows", "install workflow automation", "how to use workflows", "configure workflows", "workflow setup", "get started with workflows". Triggers (config): "change my workflow config", "modify workflow config", "workflow
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Smelter deep interview for planning-first requirement discovery before /brainstorm, /implement, or /fix execution
Create a release from dev branch. Generates changelog entries from commits, bumps version, and creates a PR to main. TRIGGERS - Use this skill when user says: - "/release" - create a patch release (default) - "/release minor" - create a minor release - "/release major" - create a major release - "make a release", "cut a release", "ship it", "release to main"
Replicate and validate a GitHub issue by spinning up Smelter, analyzing the issue, and systematically testing all described symptoms using browser automation. Use when: User wants to reproduce a bug, validate a GitHub issue, confirm a reported problem, or investigate whether an issue is real before working on a fix. Triggers: "replicate issue", "reproduce issue", "validate issue", "confirm bug", "test issue", "can you reproduce", "try to replicate", "verify the bug". Capability: Checks out main, pulls latest, starts Smelter, reads the GitHub issue, then uses agent-browser to systematically test every symptom and produce a findings report. NOT for: Fixing issues (use /smelter or /exp-piv-loop:fix-issue), general UI testing (use /validate-ui).
Autonomous rule adherence checker. Scans the codebase for rule violations, fixes the highest-impact ones in an isolated worktree, runs full validation, creates a PR. Uses memory to track progress across runs.
| name | workflow-implementation-plan |
| description | Create Smelter code-level implementation plans with exact files, tasks, TDD steps, and validation commands. |
| version | 0.55 |
| type | workflow |
| consumes | investigation.md (+brainstorm.md/tasks.md optional) |
| produces | implementation-plan.md |
| default_pattern | D |
| default_agent | architect |
| supports_patterns | ["A","D"] |
| team_template | {"D":{"lead":"architect","sub_agents":["executor","researcher"]}} |
| can_delegate_to | ["architect","executor","researcher"] |
| gate | {"postcondition":[{"file_exists":"implementation-plan.md"},{"chosen_approach_set":true},{"technology_decisions_recorded":true},{"user_decision_recorded_when_tradeoff_exists":true}]} |
Turns code investigation into an implementation strategy. This is not product brainstorming. It decides how the requested behavior will be built in the current codebase.
Core principle: prefer existing project technology and patterns unless a concrete trade-off justifies introducing something new.
Announce at start: "I'm using workflow-implementation-plan to decide the code-based implementation approach, including reuse vs new technology trade-offs."
Write the plan for a skilled engineer with zero session context. The plan must be executable from the file alone.
Before defining tasks, map the file structure:
Then write bite-sized implementation tasks. Each task should be one coherent change with explicit TDD steps:
Do not use placeholders such as TBD, TODO, "add appropriate validation", "write tests", or "similar to previous task". If a step changes code, show enough concrete code shape, API, or assertion detail for the executor to know what to do.
If investigation reveals multiple viable technical approaches, present concise options to the user before writing the final plan:
For each option include:
If the task is clearly extend_existing and the existing feature's plan/pattern is sufficient, do not invent a branch or ask for unnecessary approval. Record that the existing approach is reused and proceed.
implementation-plan.md:
## Goal — requested behavior or change.## Codebase Evidence — cited findings from investigation.md.## File Map — exact create/modify/test paths and each file's responsibility.## Existing Reuse — files, functions, APIs, UI patterns, tests, and conventions to reuse.## Options Considered — only when real trade-offs exist.## Chosen Approach — selected approach, including user decision when applicable.## Technology Decisions — existing vs new technology decision log.## Change Queue — bite-sized implementation tasks mapped to files and TDD cycles.## Test Strategy — unit/integration/E2E surfaces.## Risks — side effects, rollback, and compatibility concerns.## Target Type — new_feature | refactor | extend_existing | migration | bug_fix.Before invoking workflow-implementation-plan-review, check the plan against the investigation and requested behavior:
TBD, TODO, vague tasks, or missing commands.Fix issues inline. This author self-review does not replace workflow-implementation-plan-review.
| Thought | Reality |
|---|---|
| "Brainstorm already planned this" | Brainstorm is PM/product planning. This stage decides code reuse and implementation mechanics. |
| "A new library would be cleaner" | New technology needs an explicit trade-off and user decision. Default to existing stack. |
| "The existing feature is close enough" | Cite the existing files and state exactly what will be reused. |
| "I'll decide during coding" | workflow-write-test and workflow-coding consume this plan. Decide before tests. |
| "The executor can infer details" | The executor gets a file, not your unstated intent. Write exact paths, commands, and expected outcomes. |
| "Similar to Task N" | Tasks may be executed independently. Repeat the relevant details. |
REQUIRED NEXT SKILL: workflow-implementation-plan-review
Do NOT:
workflow-write-test, workflow-coding, or any implementation skill directly.