Agent Skills
› MeisnerDan/mission-control
› eisenhower-triage
eisenhower-triage
GitHub基于艾森豪威尔矩阵对任务进行优先级排序和分类。适用于处理待办事项、头脑风暴内容或用户询问工作优先级的场景,帮助决定立即执行、安排、委派或删除任务。
Trigger Scenarios
用户询问工作优先级
需要确定下一步做什么
对任务或头脑风暴内容进行分拣
Install
npx skills add MeisnerDan/mission-control --skill eisenhower-triage -g -y
SKILL.md
Frontmatter
{
"name": "eisenhower-triage",
"description": "Applies Eisenhower matrix logic to prioritize work. Use when the user asks about priorities, what to work on next, or when triaging tasks and brain dump items."
}
Eisenhower Matrix Triage
Quadrant Definitions
| Quadrant | Criteria | Action |
|---|---|---|
| DO | important + urgent | Work on immediately |
| SCHEDULE | important + not-urgent | Block time, protect from neglect |
| DELEGATE | not-important + urgent | Assign to an AI agent |
| ELIMINATE | not-important + not-urgent | Drop or defer |
Triage Rules
- New tasks default to SCHEDULE unless there is a deadline within 48 hours
- DELEGATE quadrant tasks should always have
assignedToset to an agent role - Never let SCHEDULE accumulate >10 unstarted tasks without review
- Brain dump items should be triaged into tasks with proper quadrant placement
- Review the DO quadrant daily — nothing should sit here unstarted for >2 days
Priority Order Within Quadrants
- DO → by urgency deadline, then by creation date
- SCHEDULE → by importance to long-term goals, then by milestone deadline
- DELEGATE → by agent availability, then by urgency
- ELIMINATE → review weekly, remove or reclassify
Brain Dump Triage Flow
- Read each unprocessed entry
- Decide: Is this actionable? → If yes, create a task with importance/urgency
- Set
processed: trueon the brain dump entry - Set
convertedTo: "task_{id}"if converted, ornullif archived
Version History
- 2b8c402 Current 2026-07-05 15:42


