원클릭으로
task-execution
Meta-cognitive methodology for selecting actions, monitoring progress, and adapting plans during execution
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Meta-cognitive methodology for selecting actions, monitoring progress, and adapting plans during execution
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Review pull requests for code quality, security, and correctness
Review pull requests for code quality, security, and correctness
End-to-end shipping workflow — tests, PR creation, review request. Unified pr-create + pr-complete.
Periodic cross-agent learning consolidation — review what worked, what didn't, propagate insights
Break down complex problems through structured analytical frameworks
Persist and recall context across sessions — critical for continuity
SOC 직업 분류 기준
| name | task-execution |
| version | 1.0.0 |
| description | Meta-cognitive methodology for selecting actions, monitoring progress, and adapting plans during execution |
| uses | ["planning/strategic-planning"] |
| requires | {"tools":[],"env":[]} |
| security | {"risk_level":"write","capabilities":["execution:manage"],"requires_approval":false} |
Meta-cognitive methodology for selecting actions, monitoring progress, and adapting plans during execution. This skill governs HOW to think about execution, not the execution machinery itself.
This is an agent-handled skill (handler: type: agent). When execute_task is invoked, you (the agent) apply the methodology below to manage task execution using your reasoning capabilities. There is no backing code — you follow these instructions directly. The tool schema in tool.yaml defines the external contract; this document guides how you fulfill it. An orchestrator may route this skill to any agent that has execution/task-execution in its skill list.
Important: This skill provides the cognitive framework for execution management. It does NOT replace the agentic execution loop (agent_runner), tool dispatching, or message handling infrastructure. Those are system concerns. This skill is about decision-making during execution.
Before selecting any action, understand where you are:
When multiple valid next actions exist, evaluate using these criteria:
| Criterion | Question | Weight |
|---|---|---|
| Dependency | Does anything else depend on this completing first? | Highest — always do blocking work first |
| Risk reduction | Does this action reduce uncertainty or validate an assumption? | High — early risk reduction prevents wasted effort |
| Effort vs. impact | What's the ratio of effort required to value delivered? | Medium — prefer high-impact, low-effort actions |
| Reversibility | Can this action be undone if it's wrong? | Medium — prefer reversible actions when uncertain |
| Information gain | Will completing this reveal information needed for other decisions? | Medium — information-gathering actions enable better future decisions |
Decision rule: When in doubt, choose the action that reduces the most uncertainty with the least effort. Uncertainty is the enemy of good execution.
Before starting an action, state explicitly:
During execution, periodically assess:
Progress signals:
When progress stalls or assumptions fail, follow this escalation:
Level 1 — Adjust tactic (stay on same action, change approach):
Level 2 — Skip and return (move to next action, come back later):
Level 3 — Replan (revise the plan):
create_plan to revise the approachLevel 4 — Escalate (seek help):
Execution is complete when ANY of these conditions are met:
Danger signals that you should stop:
## Execution: [Task]
### Current State
- Plan position: Step [X] of [Y]
- Assumptions: [Valid / Invalidated — which ones]
- Resources remaining: [Time, budget, etc.]
- Blockers: [None / List]
### Action Selected
- Action: [What to do next]
- Rationale: [Why this action, using selection criteria]
- Completion criteria: [Specific outcome]
- Time box: [Duration]
- Abort criteria: [When to stop]
### Progress Assessment
- Status: [On track / At risk / Blocked / Complete]
- Adaptation: [None needed / Level 1-4 — description]
### Outcome
- Result: [What was achieved]
- Completion: [Met criteria / Partial / Aborted]
- Next action: [What follows]
Task execution management is complete when: