Skip to content

Quick Task

Lightweight workflow for fast task execution without complex infrastructure. Plan → Approve → Execute → Review → Report.

Terminal window
mcp__moira__start({ workflowId: "moira/quick-task", parentExecutionId: "none" })
flowchart LR
    A[Understand] --> B[Plan]
    B --> C[Approve]
    C --> D[Execute]
    D --> E[Review]
    E --> F[Report]
StepActionOutput
1. UnderstandAnalyze task and gather contextClear task definition
2. PlanCreate 3-10 step planNumbered step list
3. ApproveUser confirms planApproved plan
4. ExecuteExecute all stepsCompleted work
5. ReviewCheck all criteria metVerified completion
6. ReportSummary with evidenceFinal report
  • No complex setup or configuration
  • Fast start with minimal overhead
  • Focus on getting work done
  • Plan approval before execution
  • Single review phase after completion
  • Clear success criteria

Each completed step should have verifiable output:

  • Modified files
  • Test results
  • Screenshots
  • Descriptions
  • Tasks with 2-10 concrete steps
  • Standard development work
  • Content creation
  • Research tasks
  • Any task that doesn’t require retry/escalation infrastructure
  • Critical tasks that cannot fail
  • Multi-hour or multi-day tasks
  • Tasks requiring session recovery
  • Tasks requiring escalation workflow
{
"id": "execute-plan",
"type": "agent-directive",
"directive": "Execute the approved plan step by step. Provide evidence for each step.",
"completionCondition": "All steps executed with evidence",
"connections": {
"success": "review-results"
}
}