بنقرة واحدة
wf-step
Transition the current weft workflow step. Use only when user types /wf-step.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Transition the current weft workflow step. Use only when user types /wf-step.
التثبيت باستخدام 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.
Initialize a weft workflow from a template or inline steps. Use only when user types /wf-start.
| name | wf-step |
| description | Transition the current weft workflow step. Use only when user types /wf-step. |
| argument-hint | <complete|fail|skip|retry> [reason] |
| allowed-tools | ["Bash","Read","Write"] |
Transition the current step to a new status.
$ARGUMENTS
Parse the arguments flexibly. The user may say:
/wf-step complete "planning done" — standard form/wf-step done or /wf-step with no args — treat as complete/wf-step skip not needed — skip with reason/wf-step failed, try again — treat as retry if step is failed, or fail if running/wf-step complete 3 or /wf-step complete next 3 — bulk complete N stepsMap natural language to actions:
| User says | Action |
|---|---|
| done, finished, complete, next | complete |
| skip, not needed, pass | skip |
| failed, broken, error | fail |
| retry, again, redo | retry |
| again, loop, iterate, continue loop, not done yet, issues remain | loop-continue |
| done looping, exit loop, loop done, clean, all clear | loop-done |
Loop disambiguation: If the current step has a loop_back_to field, prefer loop actions over regular ones. "again" on a loop step means loop-continue, not retry. "done" on a loop step means loop-done, not complete. If the user explicitly says "complete" or "skip", use those literally even on loop steps.
python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" step <action> <reason>
If the user specifies a count (e.g., "complete 3"), loop:
for i in 1 2 3; do
python3 "${CLAUDE_PLUGIN_ROOT}/core/cli.py" step complete "bulk advance"
done
Stop looping if any step fails or the workflow completes.
block policy, explain options: /wf-step retry or /wf-abort./wf-step retry to reset or /wf-abort."