todo-task-run
Target TODO file: $ARGUMENTS
Usage
/todo-task-run <file_path>
Arguments
file_path(required): Path to the TODO file to execute
π Development Rules
π¨ Guardrails (Prohibited Actions)
CRITICAL - Forward-Only Policy:
- β NEVER use
git reset,git restore,git revert, or any rollback commands - β Always move forward: Fix errors with new changes, not by undoing previous ones
Task Completion Procedure
IMPORTANT: When completing a task, be sure to follow these steps:
- Update checkbox immediately after task execution - Change
- [ ]to- [x]to mark completion - Document related files - List names of created/modified files
π Reference Documentation
Core Guidelines
Before starting any task, read and follow /key-guidelines
Command Overview
The /todo-task-run command is designed as a generic task runner - it takes a pre-existing TODO.md file and systematically executes ALL tasks defined within it until completion.
Role and Responsibility
- Complete Execution: Execute ALL tasks in TODO.md sequentially until every task is marked
- [x] - Progress Management: Orchestrate task execution, manage progress, and coordinate the overall workflow
- Continuous Operation: Continue executing tasks until completion or blocker - NEVER stop prematurely
- Not for planning: This command does NOT create tasks or convert requirements into actionable items
- Task planning: Use
/todo-task-planningto convert requirements into a structured TODO.md before using this command - Task Runner Focus: Act as a task runner, delegating individual work to subagents as much as possible
Execution Guarantee
This command guarantees:
- β Every task will be executed in sequential order
- β No tasks will be skipped unless explicitly blocked
- β Session continues until all tasks are complete or a blocker is encountered
- β Incomplete tasks will NOT be left unfinished without user awareness
Relationship with todo-task-planning
- Planning phase (
/todo-task-planning): Analyze requirements β Create TODO.md with actionable tasks - Execution phase (this command): Orchestrate task execution β Manage progress β Integrate completion status β Coordinate overall workflow
Command Invocation
/todo-task-run TODO.md
Processing Flow
β οΈ CRITICAL EXECUTION POLICY:
This command MUST execute ALL tasks in TODO.md sequentially, completing every task:
- β Execute tasks one by one in the order they appear
- β After each task completion, check for remaining incomplete tasks
- β
Continue executing until ALL tasks are marked
- [x] - β NEVER end the session while incomplete tasks remain
- β NEVER skip tasks unless explicitly blocked
Session Continuation Rule: The session ONLY ends when ONE of these conditions is met:
- β
All tasks in TODO.md are marked
- [x](complete) - π§ A task is blocked and requires user intervention
- β An unrecoverable error occurs
Prerequisites
Input Contract
This command expects a TODO.md file with the following format:
- Tasks must be written as markdown checkboxes (
- [ ]for incomplete,- [x]for complete) - The file should contain actionable task items
- No strict schema validation is required - the command adapts to your task structure
Initial Setup (Using Task Tool)
- Read TODO.md file specified in $ARGUMENTS
- Classify each task by subagent type:
- Scan task descriptions for keywords (explore, investigate, implement, etc.)
- Pre-determine subagent type for each task based on Subagent Classification Rules
- Identify task dependencies (which tasks need results from previous tasks)
- Log classification results for transparency
Subagent Classification Rules
When executing tasks, select the appropriate subagent based on task characteristics:
-
Implementation Tasks (implement, add, create, update features) β Use general-purpose subagent
- Examples: Adding new features, modifying existing code, creating files
- Standard implementation work without specific subagent requirements
-
Investigation Tasks (explore, investigate, research) β Use
Exploresubagent- Examples: Codebase exploration, finding files, analyzing patterns
- Specialized in comprehensive codebase analysis and discovery
Memory File Initialization
CRITICAL: Before starting task execution, initialize memory system:
1. Variable Initialization
At the start of task execution, declare context accumulation variables:
TASK_CONTEXT = {} # Store context across tasks
MEMORY_FILES = {} # Track active memory file paths
INVESTIGATION_FINDINGS = [] # Accumulate investigation results
2. Load Existing Memory Files
Before executing any task, check and load relevant existing memory files:
- Planning files:
/docs/memory/planning/*.md- Contains task breakdown and strategy - Exploration files:
/docs/memory/explorations/*.md- Contains codebase analysis results - Pattern files:
/docs/memory/patterns/*.md- Contains reusable technical patterns - Investigation files:
/docs/memory/investigation-*.md- Contains previous problem-solving insights
3. Context Accumulation Strategy
As tasks progress:
- Store task execution results in
TASK_CONTEXTfor use in subsequent tasks - Reference previous task outputs to inform current task decisions
- Document learnings and context in TODO.md task notes
- Link related memory files to build comprehensive understanding
Task Execution: Sequential Task Tool Orchestration
β οΈ CRITICAL: Sequential Execution Pattern Required
All tasks MUST be executed sequentially using the Task tool. Each task's results inform the next task's context.
Execution Pattern Overview
// Sequential execution pattern
const task_1_result = await Task({ subagent_type: "[subagent_type]", ... });
// β οΈ WAIT for task_1 to complete, THEN proceed
const task_2_result = await Task({ subagent_type: "[subagent_type]", ... });
// β οΈ WAIT for task_2 to complete, THEN proceed
const task_3_result = await Task({ subagent_type: "[subagent_type]", ... });
// β WRONG: Parallel execution (DO NOT DO THIS)
Promise.all([
Task({ subagent_type: "...", ... }),
Task({ subagent_type: "...", ... }) // Tasks must be sequential!
]);
Task Classification and Subagent Selection
Before executing each task, determine the appropriate subagent based on task characteristics (see "Subagent Classification Rules" section):
- Implementation Tasks β
subagent_type: "general-purpose"(or omit parameter) - Investigation Tasks β
subagent_type: "Explore"
Task Tool Execution Template
For each incomplete task (- [ ]) in TODO.md, execute using this pattern:
const task_N_result = await Task({
subagent_type: "[determined_subagent_type]", // From classification rules
description: "Execute task N: [task title from TODO.md]",
prompt: `
## π Development Rules (MUST Follow)
### π¨ Guardrails (Prohibited Actions)
**CRITICAL - Forward-Only Policy:**
- β NEVER use \`git reset\`, \`git restore\`, \`git revert\`, or any rollback commands
- β
Always move forward: Fix errors with new changes, not by undoing previous ones
### Task Completion Procedure
1. Update checkbox immediately after task execution (\`- [ ]\` β \`- [x]\`)
2. Document related files (list names of created/modified files)
## Task Context
**Current Task:** [Full task description from TODO.md]
**Task Number:** N of [total_tasks]
**Target File:** ${$ARGUMENTS}
## Previous Task Results
${task_N-1_result?.summary || "This is the first task"}
${task_N-1_result?.files_modified || ""}
${task_N-1_result?.key_findings || ""}
## Memory Files
${MEMORY_FILES.planning || ""}
${MEMORY_FILES.exploration || ""}
${MEMORY_FILES.patterns || ""}
## Task-Specific Instructions
### For Investigation Tasks (Explore subagent):
1. Create investigation memory file at start:
- Path: \`/docs/memory/investigation-YYYY-MM-DD-{topic}.md\`
- Record findings immediately during investigation
- Save technical patterns in \`/docs/memory/patterns/\`
2. Document discoveries and insights for future reference
3. Include links to related documentation
### For Implementation Tasks (General-purpose subagent):
1. Follow existing code patterns discovered in exploration
2. Adhere to YAGNI principle (implement only what's necessary)
3. Reference memory files for context and technical patterns
4. Record implementation context in TODO.md task notes
## Required Steps After Task Completion
1. **Update TODO.md file** (${$ARGUMENTS})
- Change completed task: \`- [ ]\` β \`- [x]\`
- Add related file information below task
- Record implementation details and notes
- Format example:
\`\`\`markdown
- [x] Task title
- Files: \`path/to/file1.rb\`, \`path/to/file2.rb\`
- Notes: Brief description of implementation
\`\`\`
2. **Save investigation results** (for investigation tasks)
- Consolidate insights in investigation memory file
- Record technical discoveries for future reference
- Link to related documentation and patterns
3. **Update TODO.md with execution context**
- Add task notes: implementation details, decisions, learnings
- Record blockers with π§ marker if encountered
- Document context for next task in task description
4. **Report results**
- Summarize changes made
- List modified/created files with absolute paths
- Note any issues or blockers encountered
- Provide context for next task
5. **β οΈ MANDATORY: Check for remaining tasks**
- See "Execution Checkpoints" section (Lines 482-612) for detailed 3-step procedure
- Must re-read TODO.md, detect `- [ ]` pattern, and branch appropriately
## Expected Output Format
Return structured results for context accumulation:
\`\`\`typescript
{
summary: "Brief description of what was accomplished",
files_modified: ["absolute/path/to/file1", "absolute/path/to/file2"],
key_findings: "Important discoveries or decisions (for investigation tasks)",
blockers: "Any issues encountered (if applicable)",
context_for_next_task: "Information needed by subsequent tasks"
}
\`\`\`
`
});
Context Accumulation Between Tasks
Critical Pattern: Each task's results must be passed to the next task through the prompt parameter.
// Task 1
const task_1_result = await Task({
subagent_type: "Explore",
description: "Investigate codebase for feature X",
prompt: `[instructions]`
});
// Task 2 receives task_1_result in context
const task_2_result = await Task({
subagent_type: "general-purpose",
description: "Implement feature X based on investigation",
prompt: `
## Previous Task Results
${task_1_result.summary}
Files discovered: ${task_1_result.files_modified.join(', ')}
Key findings: ${task_1_result.key_findings}
[rest of task 2 instructions]
`
});
Verification Gates After Each Task
β οΈ MANDATORY: After each Task tool execution, verify success before proceeding:
const task_N_result = await Task({ ... });
// Verification gate
if (!task_N_result || task_N_result.blockers) {
// Handle error:
// 1. Mark task with π§ in TODO.md
// 2. Record blocker in TODO.md with context
// 3. Report to user with details
// 4. STOP execution until blocker is resolved
throw new Error(`Task N blocked: ${task_N_result.blockers}`);
}
// Verify expected outputs exist
if (!task_N_result.summary || !task_N_result.files_modified) {
// Task completed but didn't return expected format
// Log warning but continue if non-critical
}
// β
Verification passed, proceed to next task
const task_N+1_result = await Task({ ... });
Error Handling Protocol
When a task encounters an error or blocker:
CRITICAL - Forward-Only Error Recovery:
- β NEVER use
git reset,git restore,git revertto undo errors - β Create new changes to fix errors - Keep the history transparent
- β If code is broken, fix it forward - Add corrections, don't erase mistakes
Error Recovery Steps:
-
Mark task status in TODO.md:
- [ ] π§ Task title (BLOCKED: reason for blockage) -
Record blocker details in TODO.md:
- [ ] π§ Task title (BLOCKED: reason) - π§ Blocker: [Detailed description] - π§ Attempted: [What was tried] - π Next steps: [How to resolve] - β οΈ Recovery: Fix forward, not rollback -
Report to user:
- Clear description of the blocker
- Impact on subsequent tasks
- Recommended resolution steps
- Plan for forward-only fix
-
STOP execution:
- DO NOT proceed to next task
- DO NOT rollback changes
- Wait for user intervention or blocker resolution
-
After blocker resolution:
- Once the user resolves the blocker or provides guidance
- Re-read TODO.md to check current task status
- If task is now unblocked, resume execution from that task
- Continue with normal Task Execution Loop
- IMPORTANT: DO NOT skip remaining tasks - continue until ALL tasks are complete
Task Execution Loop
High-Level Flow Diagram:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β TASK EXECUTION LOOP FLOW β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
START: Read TODO.md and identify first incomplete task
β
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PHASE 1: TASK EXECUTION β
β βββββββββββββββββββββββββ β
β β
β 1. Read TODO.md β identify next incomplete task (`- [ ]`) β
β 2. Classify task β determine subagent_type β
β 3. Execute Task tool with accumulated context β
β 4. Verify completion (verification gate) β
β 5. Update TODO.md status (`- [ ]` β `- [x]`) β
β 6. Store task result for next task's context β
β β
ββββββββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β π¨ PHASE 2: CONTINUATION CHECK PROCEDURE (MANDATORY GATE) β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β Step 1: Re-read TODO.md from disk β
β const todo_content = await Read({ file_path: $ARGUMENTS }) β
β β
β Step 2: Detect incomplete tasks β
β const has_incomplete_tasks = todo_content.includes('- [ ]') β
β β
β Step 3: Branch Decision βββββββββββββββ β
β β β
βββββββββββββββββββββββββββββββββββββββββββΌβββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββ΄βββββββββββββββββββββ
β β
βΌ βΌ
βββββββββββββββββββββββββ ββββββββββββββββββββββββββ
β has_incomplete_tasks β β has_incomplete_tasks β
β === true β β === false β
βββββββββββββββββββββββββ ββββββββββββββββββββββββββ
β β
β β
βΌ βΌ
βββββββββββββββββββββββββ ββββββββββββββββββββββββββ
β PATH A: β β PATH B: β
β CONTINUE LOOP β β FINAL COMPLETION β
β β β β
β β
Execute next task β β β
Verify ALL [x] β
β via Task tool β β β
Add timestamp β
β β β β
Generate report β
β β DO NOT proceed to β β β
End session β
β Final Completion β β β
β β β β
β β DO NOT end sessionβ β π― COMPLETE β
βββββββββββββββββββββββββ ββββββββββββββββββββββββββ
β β
β β
β (loop back to PHASE 1) END
β
ββββββββββββββββ
β
βΌ
Return to PHASE 1: Execute next task
Critical Decision Points:
-
Verification Gate (After each task): Did the task complete successfully?
- β YES β Continue to Continuation Check
- β NO β Mark blocker (
π§), report to user, STOP
-
Continuation Check Gate (Mandatory after EACH task): Are there incomplete tasks?
- β
YES (
- [ ]found) β PATH A: Continue to next task (loop back to PHASE 1) - β
NO (all
- [x]) β PATH B: Proceed to Final Completion Process
- β
YES (
Loop Termination Conditions:
- β
Normal completion: All tasks marked
- [x]β Final Completion Process - π§ Blocked: Task encounters blocker β STOP, report to user
- β Error: Unrecoverable error β STOP, report to user
Repeat the Task tool pattern for each incomplete task until:
- All tasks are marked
- [x](completed), OR - A task is blocked with
π§marker (stop and report)
Execution Flow:
- Read TODO.md and identify next incomplete task (
- [ ]) - Classify task and determine
subagent_type - Execute Task tool with accumulated context
- Verify task completion (verification gate)
- Update TODO.md status (
- [ ]β- [x]) - Store task result for next task's context
- CRITICAL: After each task completion, IMMEDIATELY re-read TODO.md and check for remaining incomplete tasks
- If ANY incomplete tasks remain (
- [ ]), IMMEDIATELY continue to next task (return to step 1) - ONLY proceed to "Final Completion Process" when ALL tasks are marked
- [x]
β οΈ MANDATORY CONTINUATION CHECK:
See "Execution Checkpoints" section (Lines 482-612) for the required 3-step procedure that MUST be executed after EACH task completion.
Execution Checkpoints: 3-Step Post-Task Procedure
β οΈ CRITICAL: Execute After EVERY Task Completion
After each Task tool execution completes, you MUST execute this 3-step checkpoint procedure:
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β π― EXECUTION CHECKPOINT - POST-TASK VERIFICATION β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β Execute this 3-step procedure after EVERY task completion: β
β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β STEP 1: Re-read TODO.md from disk β β
β β β β β
β β const todo = await Read({ file_path: ... }) β β
β β β β
β β Purpose: Get fresh state, not stale in-memory data β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β
β βΌ β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β STEP 2: Check for '- [ ]' pattern existence β β
β β β β β
β β const has_incomplete = todo.includes('- [ ]') β β
β β β β
β β Purpose: Detect if ANY incomplete tasks remain β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β
β βΌ β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β STEP 3: Branch decision based on detection result β β
β β β β
β β if (has_incomplete === true) { β β
β β β Continue to next task (loop back to PHASE 1) β β
β β β DO NOT end session β β
β β } else { β β
β β β Proceed to Final Completion Process β β
β β β Safe to end session after final steps β β
β β } β β
β β β β
β β Purpose: Prevent premature session termination β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Checkpoint Implementation Code:
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// EXECUTION CHECKPOINT - Execute after EVERY task completion
// ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// STEP 1: Re-read TODO.md from disk
const todo_content = await Read({ file_path: $ARGUMENTS });
// STEP 2: Check for '- [ ]' pattern existence
const has_incomplete_tasks = todo_content.includes('- [ ]');
// STEP 3: Branch decision
if (has_incomplete_tasks) {
// β
PATH A: At least one incomplete task exists
// β MUST continue to next task
// β CANNOT proceed to Final Completion Process
// β CANNOT end session
console.log('β
Checkpoint: Incomplete tasks detected, continuing loop...');
// Return to PHASE 1: Execute next task
const next_task_result = await Task({
subagent_type: "[determined_type]",
description: "Execute next incomplete task",
prompt: `[task instructions with accumulated context]`
});
// After next task completes, return to this checkpoint (recursive loop)
} else {
// β
PATH B: NO incomplete tasks remain
// β All tasks are marked '- [x]'
// β Safe to proceed to Final Completion Process
// β Session can end after final steps
console.log('β
Checkpoint: All tasks complete, proceeding to final steps...');
// Proceed to "Final Completion Process" section
}
Checkpoint Failure Indicators:
If you find yourself in any of these situations, the checkpoint was not executed correctly:
| β Failure Indicator | β Correct Action |
|---|---|
Ending session while - [ ] exists in TODO.md |
Execute checkpoint β Detect incomplete tasks β Continue loop |
| Proceeding to Final Completion without reading TODO.md | Execute STEP 1: Re-read file from disk |
| Assuming all tasks done based on in-memory state | Execute STEP 2: Explicit pattern detection |
| Skipping checkpoint "because task seemed final" | ALWAYS execute checkpoint after EVERY task |
Visual Reminder - When to Execute:
Task Execution Timeline:
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Task N-1 Task N π― CHECKPOINT Task N+1
β β β β
β β β β
βΌ βΌ βΌ βΌ
[Execute] β [Complete] β [3-Step Check] β [Continue/End]
[Update TODO] β
ββ Step 1: Read
ββ Step 2: Detect
ββ Step 3: Branch
β
ββ Found [ ] β Next Task
ββ All [x] β Final Steps
π¨ CRITICAL: Checkpoint executes AFTER TODO.md update, BEFORE next decision
Connection to Continuation Check Procedure:
This checkpoint procedure is the in-loop implementation of the "Continuation Check Procedure" section (Lines 614-701):
- Checkpoint = Execution code after each task (what you DO)
- Continuation Check Procedure = Detailed specification (what it MEANS)
Both sections describe the same mandatory 3-step process from different perspectives. The checkpoint ensures continuous execution until completion.
Continuation Check Procedure
β οΈ MANDATORY GATE: This procedure is the critical decision point between task execution and final completion.
After completing each task, you MUST execute this 3-step continuation check procedure:
Step 1: Re-read TODO.md
Why this is mandatory:
- TODO.md is the single source of truth for task completion status
- The file may have been updated by the previous Task execution
- In-memory state may be stale - always read from disk
Step 2: Detect Incomplete Tasks
Detection logic:
- Pattern found β At least one task remains incomplete
- Pattern not found β All tasks are complete (
- [x])
(See Lines 532-571 in "Execution Checkpoints" for implementation code)
Step 3: Branch Decision
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Continuation Check Decision Tree β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βΌ
ββββββββββββββββββββββββββββββββββ
β has_incomplete_tasks? β
ββββββββββββββββββββββββββββββββββ
/ \
/ \
YES NO
β β
βΌ βΌ
ββββββββββββββββββββ βββββββββββββββββββββββ
β β
Continue Loop β β β
Final Completion β
β β β β
β - Execute next β β - Verify ALL tasks β
β task via Task β β are [x] β
β tool β β - Add completion β
β β β timestamp β
β - DO NOT proceed β β - Generate final β
β to Final β β report β
β Completion β β β
β β β - End session β
β - DO NOT end β β β
β session β β β
ββββββββββββββββββββ βββββββββββββββββββββββ
β
β (loop continues)
βΌ
Return to Step 1 after
next task completion
Implementation Template
See Lines 532-571 in "Execution Checkpoints" section for complete implementation code with detailed comments.
β οΈ WARNING: Common Mistakes to Avoid:
| β WRONG | β CORRECT |
|---|---|
Proceeding to Final Completion while - [ ] exists |
Always check TODO.md before final steps |
| Ending session with incomplete tasks | Continue loop until all - [x] |
| Assuming all tasks are done without checking | Explicit file read + pattern detection |
| Using stale in-memory state | Fresh Read() call every time |
Visual Reminder:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β π¨ CRITICAL CHECKPOINT β
β β
β Before proceeding to Final Completion Process: β
β β
β β
Read TODO.md from disk β
β β
Check for '- [ ]' pattern β
β β
If found β Continue to next task β
β β
If NOT found β Proceed to Final Completion β
β β
β This gate prevents premature session termination β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Error Handling and Investigation
When encountering errors or unexpected issues during task execution:
CRITICAL - Forward-Only Error Recovery:
- β NEVER use
git reset,git restore,git revertto undo errors - β Always fix forward with new changes - Preserve complete history
- β Document the fix - Record why the error occurred and how it was resolved
Hybrid Investigation Approach
- Reference existing memory files: Check
/docs/memory/for previous investigations on similar issues - Investigate as needed: If no relevant documentation exists or the issue is novel, conduct investigation
- Document findings: Record new insights in appropriate memory files for future reference
Error Recovery Workflow
- Identify the error: Understand the root cause through debugging or investigation
- Consult documentation: Review existing memory files and reference documentation
- Resolve the issue: Apply fixes based on documented patterns or new solutions
- IMPORTANT: Create new changes for fixes, do not rollback
- Update memory: If new patterns or solutions emerge, document them in
/docs/memory/patterns/- Record what went wrong and how it was fixed
- Document lessons learned for future tasks
- Continue execution: Resume task execution after resolving the error
When to Create Memory Files
- New technical patterns: Document reusable solutions in
/docs/memory/patterns/ - Complex investigations: Create investigation files when debugging takes significant effort
- System insights: Record important technical discoveries about the codebase or infrastructure
Final Completion Process (Using Task Tool)
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β π¨ CRITICAL PREREQUISITE CHECK β
β β
β This section is ONLY accessible after: β
β 1. Executing "Execution Checkpoints" 3-step procedure (Lines 482-612) β
β 2. Passing "Continuation Check Procedure" gate (Lines 614-701) β
β 3. Confirming PATH B (Final Completion) - NO '- [ ]' in TODO.md β
β β
β If '- [ ]' exists β Return to Task Execution Loop (PATH A) β
β Only proceed if ALL tasks are '- [x]' (PATH B confirmed) β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β οΈ MANDATORY VERIFICATION:
This section is ONLY accessible if the Continuation Check Procedure (Lines 614-701) returned PATH B (all tasks complete).
Before proceeding, verify:
- β Continuation Check completed (3-step procedure executed)
- β
ALL tasks marked
- [x](no- [ ]pattern exists) - β
No blocked tasks (no
π§markers)
(See Lines 532-571 in "Execution Checkpoints" for verification code template)
Required steps upon all tasks completion:
- Final update of file specified in $ARGUMENTS:
- Confirm all tasks are in completed state (
- [x]) - Add completion date/time and overall implementation summary
- Record reference information for future maintenance
- Confirm all tasks are in completed state (
- Final consolidation of investigation results:
- Final organization of all investigation results in memory file
- Record project-wide impact and future prospects
- Prepare in a form that can be utilized as reference information for similar tasks
Final Report to User:
After completing all final steps, provide a comprehensive summary:
- β Total tasks completed: [N] out of [N]
- β All tasks status: Complete
- β Files modified: [List of all files]
- β Next steps: [If applicable]