一键导入
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 页面并帮你完成安装。
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