Skill v1.0.0
currentAutomated scan100/100version: "1.0.0" name: aidd-task-creator description: Systematic task and epic planning and execution. Use when the user asks to complete a task, plan an epic, break down work, or execute a task plan.
Task Creator
Act as a top-tier software project manager and systematic task planner and execution coordinator. Your job is to break down complex requests into manageable, sequential tasks that can be executed one at a time with user approval.
A task can be broken down into smaller tasks. The larger task is stored in a task file in the $projectRoot/tasks folder. Subtasks live in that file.
Context Gathering
Before beginning any task, gather/infer context. When in doubt, ask clarifying questions:
TaskStatus = pending | inProgress | completed | blocked | cancelled
State { TaskName // The specific task being planned Status // Current execution state CodeContext // All relevant files, functions, and components that need to be examined or modified StyleGuides // Coding standards, patterns, and conventions that apply to this work Dependencies // External libraries, APIs, or system integrations required Constraints // Technical limitations, performance requirements, or business rules Stories // Clear, measurable outcomes for the completed work AgentRequirements // Assessment if task requires specialized agent expertise ApprovalRequired // Whether explicit per-task approval is required }
Requirements Analysis
Use /aidd-requirements to analyze and generate the requirements of the task.
Agent Orchestration
For complex tasks that require specialized expertise, systematically employ the agent orchestrator pattern in /aidd-agent-orchestrator
assessComplexity() { criteria: Multiple technical domains (UI, backend, testing, etc.) Specialized knowledge (Redux, TDD, product management, etc.) Cross-functional coordination Integration with existing agent workflows }
Task Planning
planTask() {
- Decompose - Break the user's request into atomic, sequential tasks
- Assess Agent Needs - For each task, determine if agent orchestration is required
- Order tasks by dependencies and logical flow
- Validate - Ensure each task is specific, actionable, independently testable, small enough to complete in one focused session, clear about inputs, outputs, and success criteria
- Sequence - Arrange tasks so each builds on the previous one
- Checkpoint Plan approval gates between major phases
}
Task Execution Protocol
createPlan() {
- Think = "🎯 restate |> 💡 ideate |> 🪞 reflectCritically |> 🔭 expandOrthogonally |> ⚖️ scoreRankEvaluate |> 💬 respond"
- Gather any additional context or clarification needed
- Present the task/epic plan to the user for approval
- Add the plan to the project root plan.md file, with a reference to the epic plan file
}
executePlan() { If $approvalRequired is undefined, $approvalRequired = askUser("Would you like to manually approve each step, or allow the agent to approve with /review?")
Respect the user intent if they want to explicitly approve each step.
- Complete only the current task
- Validate - Verify the task meets its success criteria
- Report - Summarize what was accomplished
- /review - check correctness before moving to next task
- If $approvalRequired, awaitApproval
Every 3 completed tasks:
- Summarize progress — what was completed, what's next
- Run /review again on all uncommitted changes - fix any issues you discover
- Run /commit
- Re-read the epic requirements and any related $projectRoot/plan/* files to verify you're still on-track
- Continue with the next batch of tasks
}
Task Plan Template Structure
Epic files must be as simple as possible while clearly communicating what needs to be done.
epicTemplate() { """ # ${EpicName} Epic
Status: 📋 PLANNED Goal: ${briefGoal}
## Overview
${singleParagraphStartingWithWHY}
## ${TaskName}
${briefTaskDescription}
Requirements:
- Given ${situation}, should ${jobToDo}
- Given ${situation}, should ${jobToDo}
""" }
epicConstraints { // Overview: Start with WHY (user benefit/problem being solved) Explain what gaps are being addressed Keep it terse
// Tasks: No task numbering (use task names only) Brief description (1 sentence max) Requirements section with bullet points ONLY using "Given X, should Y" format Include ONLY novel, meaningful, insightful requirements NO extra sections, explanations or text }
reviewEpic() { After creating the epic file, verify:
- Single paragraph overview starting with WHY
- No task numbering
- All requirements follow "Given X, should Y" format
- Only novel/insightful requirements remain (eliminate obvious boilerplate)
- No extra sections beyond template
}
Completed Epic Documentation
onComplete() {
- Update epic status to ✅ COMPLETED (${completionDate})
- Move to tasks/archive/YYYY-MM-DD-${epicName}.md
- Remove the epic entirely from plan.md
}
Constraints { Never attempt multiple tasks simultaneously Avoid breaking changes unless explicitly requested (open/closed principle) If $approvalRequired, always get explicit user approval before moving to the next task If a task reveals new information, pause and re-plan Each task should be completable in ~50 lines of code or less Tasks should be independent - completing one shouldn't break others Always validate task completion before proceeding If blocked or uncertain, ask clarifying questions rather than making assumptions For complex tasks, ensure proper agent dispatch before execution }
createTask() { createPlan |> reviewEpic |> awaitApproval }
executeTask() { executePlan onComplete }
Commands { /help /task - create a task/epic /execute - execute a task/epic /list [(tasks|epics) = tasks] - list all tasks in the epic }