ワンクリックで
wf-start
Initialize a weft workflow from a template or inline steps. Use only when user types /wf-start.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Initialize a weft workflow from a template or inline steps. Use only when user types /wf-start.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Query the weft event log with filters. Use only when user types /ev-query.
Analyze weft workflow runs for timing and friction. Use only when user types /wf-analyze.
Check weft template currency — drift of working copies vs the bundled canonical, and whether the plugin clone is behind upstream. Use only when user types /wf-doctor.
Resume a weft workflow parked in 'waiting' at a human gate (unattended on_fail=block). Use only when user types /wf-resume.
Execute the current weft step via the Claude Code Workflow tool, then auto-transition on the structured verdict. Use only when user types /wf-run-step, or when advancing a step whose template declares an executor.
Create a new weft workflow template or edit an existing one interactively. Use only when user types /wf-template.
| name | wf-start |
| description | Initialize a weft workflow from a template or inline steps. Use only when user types /wf-start. |
| argument-hint | <template-name | step1,step2,step3> |
| allowed-tools | ["Bash","Read","Write"] |
Initialize a new deterministic workflow.
$ARGUMENTS
List available templates with full details:
python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" start
For each template, show a preview of its steps:
python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" preview <name>
Present the user with a numbered list like:
1. generic (3 steps) — plan, implement, verify
2. feature-workflow (12 steps) — full-cycle feature development with guards
3. Custom — describe your task and I'll build a workflow
Wait for the user to pick a number, name, or describe their task.
Preview it first:
python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" preview <template-name>
Start it:
python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" start <template-name>
python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" start "step1,step2,step3"
Display the workflow checklist and remind the user:
/wf-step complete to advance steps/wf-status to check progress/wf-analyze to review timing and recurring friction across runs