AgentSkillsCN

wf0-nextstep

执行下一个工作流步骤

SKILL.md
--- frontmatter
name: wf0-nextstep
description: Execute the next workflow step
argument-hint: "[work-id]"

Always respond in Japanese.

/wf0-nextstep

Immediately execute the next workflow command without confirmation.

Usage

code
/wf0-nextstep [work-id]

Arguments

  • work-id: Optional. Uses active_work from state.json if omitted.

Processing

1. Resolve Work

Load state.json. Resolve work-id (argument or active_work). Get current and next fields.

2. Determine Action

next valueAction
null/emptyError: suggest /wf0-status
"complete" + PR existsDisplay "work complete" with PR URL
"complete" + no PRSuggest /wf6-verify pr
"wf5-implement"Check plan.current_step < plan.total_steps, execute /wf5-implement <next_step>
Other phaseExecute /<next_phase>

3. Execute

Use Skill tool to invoke the determined command immediately. No user confirmation.

Notes

  • Executes immediately without confirmation
  • For wf5-implement, passes the next step number as argument
  • Prompts /wf1-kickoff if state.json missing