Tier 4

tri - Triage

Triage

Input: $ARGUMENTS


Step 1: List All Items

Extract every distinct problem, task, or issue from the input. If items are vague, split them into concrete sub-items.

ITEMS:
1. [item]
2. [item]
3. [item]
...

Step 2: Classify Urgency

For each item, ask: “What happens if this waits?”

LevelDefinitionTimeframe
NOWDelay causes irreversible damage or missed windowHours
SOONDelay increases cost or risk meaningfullyDays
LATERCan wait without meaningful consequenceWeeks/months
NEVERDoing this adds no value or is actively harmfulN/A
URGENCY:
1. [item] — [NOW/SOON/LATER/NEVER] — because [one-line reason]
2. [item] — [NOW/SOON/LATER/NEVER] — because [one-line reason]
...

Step 3: Classify Importance

For each item, ask: “How much does this matter to the actual goal?”

LevelDefinition
CRITICALGoal fails without this
IMPORTANTGoal is significantly worse without this
NICEImproves things but goal succeeds without it
IRRELEVANTNo meaningful connection to the goal
IMPORTANCE:
1. [item] — [CRITICAL/IMPORTANT/NICE/IRRELEVANT] — because [one-line reason]
2. [item] — [CRITICAL/IMPORTANT/NICE/IRRELEVANT] — because [one-line reason]
...

Step 4: Priority Matrix

Place each item in the matrix:

NOWSOONLATERNEVER
CRITICAL[items][items][items][items]
IMPORTANT[items][items][items][items]
NICE[items][items][items][items]
IRRELEVANT[items][items][items][items]

Step 5: Ranked Action List

Read the matrix top-left to bottom-right. Output a single ordered list.

PRIORITY ORDER:
1. [item] — DO FIRST (critical + now)
2. [item] — DO NEXT (critical + soon / important + now)
3. [item] — SCHEDULE (important + soon)
4. [item] — BACKLOG (later items)
5. [item] — DROP (never / irrelevant)
...

CUTOFF RECOMMENDATION: Items below #[N] can be safely ignored for now.

Step 6: Sanity Check

Look at the top 3 items. Ask:

  • Is there a dependency? (Does #2 actually need to happen before #1?)
  • Is there a quick win hiding lower? (Something that takes 5 minutes but unlocks others?)

If yes, adjust the order and note why.


Integration

Use with:

  • /pri -> When you need more sophisticated prioritization with weighted criteria
  • /dcp -> When the top item requires a decision
  • /to -> When the ranked list needs to become a project plan
  • /rca -> When a CRITICAL+NOW item needs root cause analysis before action