Daily Triage Agent

~2 min read

Daily Triage Agent

A common pattern: notes land in Inbox/ and you want an agent to read them, summarize, and propose where each one should live. Triage proposes, you approve, agent applies.

Setup

Prompt

@claude Triage every note in Inbox/. For each one:

  1. Summarize in one sentence.

  2. Suggest 2-3 tags from the vault’s taxonomy.

  3. Propose a destination folder (Areas, Projects, Reference, or Archive).

Don’t move anything yet. Reply with a table.

Tools the agent will use

Tool Why
list_notes(path: "Inbox", recursive: true) Enumerate the inbox.
read_note(path) Read each note’s body.
read_outline(path) Cheaper than read_note when you only need structure.
list_tags See the existing taxonomy so suggestions reuse your vocabulary.
list_folders Know the destination options.

After you approve a destination plan:

| move_note(from, to) | Move each note to its proposed folder. | | apply_edits(path, edits) | Apply tag additions / frontmatter updates atomically. |

Trust + safety

Example output

Note Summary Tags Destination
Inbox/scratch.md Q1 roadmap discussion #project/web, #planning Projects/Active
Inbox/idea-7.md Newsletter format experiment #writing, #idea Areas/Writing

You eyeball the table, reply “Apply”, and the agent calls move_note per row.