원클릭으로
taskwing-next
Use when you are ready to start the next approved TaskWing task with full context.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when you are ready to start the next approved TaskWing task with full context.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when you need to clarify a goal and build an approved execution plan.
Use when you need project knowledge for architectural context. Returns a compact summary by default.
Use when implementation is verified and you are ready to complete the current task.
| name | taskwing-next |
| description | Use when you are ready to start the next approved TaskWing task with full context. |
The Workflow Contract lives in CLAUDE.md (single source of truth). Obey it always.
| Impulse | Do Instead |
|---|---|
Skip ask calls for context | Always fetch scope + task context before coding |
| Start coding without approval | Present the brief, wait for explicit checkpoint approval |
| Ignore patterns/constraints from ask | Patterns are binding, constraints are mandatory |
taskwing ask for both scope and task-specific context before presenting the brief.ask returns patterns for the task scope, follow them. If constraints exist, respect them.Execute these steps IN ORDER. Do not skip any step.
Run:
taskwing task next
Extract from the JSON response:
If the command reports no pending task, inform the user: "No pending tasks. Use /taskwing:context to check plan status."
Run taskwing ask with a query based on the task scope:
taskwing ask "<task.scope> patterns constraints decisions"
Examples:
taskwing ask "authentication cookies session patterns"taskwing ask "api handlers middleware patterns"taskwing ask "lancedb embedding vector patterns"Extract: patterns, constraints, related decisions.
Run taskwing ask with keywords from the task. Use suggested_ask_queries if available, otherwise extract keywords from the title.
taskwing ask "<keywords from task title/description>"
Run:
taskwing task start <task_id>
(<task_id> is the value from Step 1.)
Display in this format:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TASK: [task_id] (Priority: [priority])
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
**[Title]**
## Description
[Full task description]
## Acceptance Criteria
- [ ] [Criterion 1]
- [ ] [Criterion 2]
- [ ] [Criterion 3]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ARCHITECTURE CONTEXT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
## Relevant Patterns
[Patterns from ask that apply to this task]
## Constraints
[Constraints that must be respected]
## Related Decisions
[Past decisions that inform this work]
## Key Files
[Files likely to be modified based on context]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Task claimed. Ready to begin.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Before writing or editing code, ask for an explicit checkpoint: "Implementation checkpoint: proceed with task [task_id] now?"
If approval is missing or unclear, STOP and respond with: "REFUSAL: I can't start implementation yet. Plan/task checkpoint is incomplete. Please approve this task checkpoint first."
Proceed with the task, following the patterns and respecting the constraints shown above.
CRITICAL: You MUST run all four CLI commands (task next, ask x2, task start) before showing the brief and before requesting implementation approval.
taskwing task list # see all tasks
taskwing task list --status pending # identify next pending task
taskwing task next --auto-start # claim immediately, single call
Use /taskwing:context to check active plan progress.