ワンクリックで
sdd-add-task
creates draft task file in .memory-bank/specs/tasks/draft/ with original user intent
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
creates draft task file in .memory-bank/specs/tasks/draft/ with original user intent
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Execute a task with sub-agent implementation and LLM-as-a-judge verification with automatic retry loop
Execute tasks through competitive multi-agent generation, meta-judge evaluation specification, multi-judge evaluation, and evidence-based synthesis
Launch multiple sub-agents in parallel to execute tasks across files or targets with intelligent model selection, quality-focused prompting, and meta-judge → LLM-as-a-judge verification
Execute complex tasks through sequential sub-agent orchestration with intelligent model selection, meta-judge → LLM-as-a-judge verification
Evaluate solutions through multi-round debate between independent judges until consensus
Execute tasks through systematic exploration, pruning, and expansion using Tree of Thoughts methodology with meta-judge evaluation specifications and multi-agent evaluation
SOC 職業分類に基づく
| name | sdd:add-task |
| description | creates draft task file in .memory-bank/specs/tasks/draft/ with original user intent |
| argument-hint | Task title or description (e.g., "Add validation to form inputs") [list of task files that this task depends on] |
Your role is to create a draft task file that exactly matches the user's request.
Create a task file in .memory-bank/specs/tasks/draft/ with:
.memory-bank/specs/tasks/draft/Run the folder creation script to create task directories and configure gitignore:
bash ${CLAUDE_PLUGIN_ROOT}/scripts/create-folders.sh
This creates:
.memory-bank/specs/tasks/draft/ - New tasks awaiting analysis.memory-bank/specs/tasks/todo/ - Tasks ready to implement.memory-bank/specs/tasks/in-progress/ - Currently being worked on.memory-bank/specs/tasks/done/ - Completed tasks.memory-bank/specs/scratchpad/ - Temporary working files (gitignored)Parse the user's request:
Clarify if ambiguous (only if truly unclear):
Create action-oriented title:
Determine type:
| Type | Use When |
|---|---|
feature | New functionality or capability |
bug | Something is broken or not working correctly |
refactor | Code restructuring without changing behavior |
test | Adding or updating tests |
docs | Documentation changes only |
chore | Maintenance tasks, dependency updates |
ci | CI/CD configuration changes |
Create short name from the task title:
add-validation-login-formForm file name: <short-name>.<issue-type>.md
add-validation-login-form.feature.mdfix-null-pointer-user-service.bug.mdrestructure-auth-module.refactor.mdadd-unit-tests-api.test.mdupdate-readme.docs.mdupgrade-dependencies.chore.mdadd-github-actions.ci.mdVerify uniqueness: Check .memory-bank/specs/tasks/draft/, .memory-bank/specs/tasks/todo/, .memory-bank/specs/tasks/in-progress/, and .memory-bank/specs/tasks/done/ for existing files with same name
Use Write tool to create .memory-bank/specs/tasks/todo/<short-name>.<issue-type>.md:
---
title: <ACTION-ORIENTED TITLE>
depends_on: <list of task files that this task depends on>
---
## Initial User Prompt
{EXACT user input as provided}
## Description
// Will be filled in future stages by business analyst
.memory-bank/specs/tasks/draft/// ... placeholder as specified in the task file.Return to the orchestrator:
.memory-bank/specs/tasks/todo/add-validation-login-form.feature.md)task, bug, or featureFormat:
Created task file: .memory-bank/specs/tasks/draft/<name>.<type>.md
Title: <action-oriented title>
Type: <task|bug|feature>
Depends on: <list of task files that this task depends on>
.memory-bank/specs/tasks/draft/, .memory-bank/specs/tasks/todo/, .memory-bank/specs/tasks/in-progress/, .memory-bank/specs/tasks/done/ exist.memory-bank/specs/tasks/draft/ with correct naming convention (<name>.<type>.md).feature.md, .bug.md, .refactor.md, .test.md, .docs.md, .chore.md, .ci.md)// Will be filled in future stages by business analystTest task (.memory-bank/specs/tasks/draft/add-unit-tests-auth.test.md):
---
title: Add unit tests for auth module
---
## Initial User Prompt
add tests for auth
## Description
// Will be filled in future stages by business analyst
Bug with context (.memory-bank/specs/tasks/draft/fix-login-timeout.bug.md):
---
title: Fix login timeout on slow connections
---
## Initial User Prompt
users getting 504 errors on slow wifi
## Description
// Will be filled in future stages by business analyst
Feature request (.memory-bank/specs/tasks/draft/implement-dark-mode.feature.md):
---
title: Implement dark mode toggle
---
## Initial User Prompt
add dark mode to settings page
## Description
// Will be filled in future stages by business analyst