morning-triage

morning-triage is a skill for Claude Code from dshakes/compass. It costs 102 tokens per session (1,200 once invoked), scanned A, original, MIT.

A morning work-discovery skill for an autonomous software-development loop. It reviews recent failures, issues, and merged code to decide what needs attention.

In plain words
What is it for?
Use it to inspect failed CI—the automated build and test checks—new issues, recent commits, and prior triage notes, then hand off worthwhile work with a stop condition.
Why use it?
It prevents an automated process from acting blindly or spending time on irrelevant work.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to inspect failed CI—the automated build and test checks—new issues, recent commits, and prior triage notes, then hand off worthwhile work with a stop condition.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dshakes/compass/morning-triage
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dshakes/compass --skill morning-triage
Clone the repo
git clone --depth 1 https://github.com/dshakes/compass

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for morning-triage

README.md
[![agentmods](https://agentmods.dev/badge/skills/dshakes/compass/morning-triage/github.svg)](https://agentmods.dev/skills/dshakes/compass/morning-triage)
Your own site
<a href="https://agentmods.dev/skills/dshakes/compass/morning-triage"><img src="https://agentmods.dev/badge/skills/dshakes/compass/morning-triage/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for morning-triage

Your own site · 80×15
<a href="https://agentmods.dev/skills/dshakes/compass/morning-triage"><img src="https://agentmods.dev/badge/skills/dshakes/compass/morning-triage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,200 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00102 $0.01200
Opus 5 $0.00051 $0.00600
Sonnet 5 $0.00020 $0.00240
Haiku 4.5 $0.00010 $0.00120

Measured 10d ago against content hash 1a1d07a659d7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

morning-triage scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

claude/skills/morning-triage/SKILL.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Morning triage — the loop's discovery move

A loop has five moves: discovery → handoff → verification → persistence → scheduling (see docs/20-loops.md). This skill is discovery — the move that finds the work. Skip it and you have the "blind loop": automated doing but a human still spends every morning deciding what to do. Discovery sets the ceiling on the whole loop — surface work of no value and the other four moves serve nothing.

The point is to let the loop find its own work, then stop exactly where a human should decide.

Read — the discovery inputs

Look at what changed since the last run (use gh and git; read-only):

  • Failed CI since yesterday — gh run list --status failure --limit 30, read the failing step.
  • Issues opened in the last 24hgh issue list --search "created:>=<date>" --state open.
  • Commits merged since the last rungit log --since=<last-run> --oneline.
  • The previous state filestate/triage.md (so you don't re-discover handled work).

Judge — the part that sets the ceiling

For each candidate, decide — this is where judgment lives, don't skip it:

  • Is it actionable now, or noise? (a timeout flake is noise; a real regression is work)
  • Does it block a release? → priority.
  • Is it already tracked in state/triage.md or an open issue/PR? → skip, don't duplicate.
  • Is it deterministic (a script could decide it) rather than something needing a model? → prefer the deterministic path; keep the model for genuine judgment (the deterministic-gate principle).

Keep only what is worth a worktree today. A short, true list beats a long, padded one.

Write — the persistence output

Append each kept finding to state/triage.md (create it if absent) — one row, so tomorrow's run reads it back. The agent forgets; the repo does not.

| finding | source | priority | status |
|---|---|---|---|
| auth test flaky | CI #4821 | low | inbox |
| null deref on empty cart | issue #92 | high | handoff |
| stale dep: lodash | commit a3f1 | med | inbox |

Read the full file on GitHub · 93 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 93 lines · 102 tokens per session scan A 1a1d07a659d7

Subscribe to this mod's changes

morning-triage is a skill published in the GitHub repository dshakes/compass (19 stars, last pushed 9d ago), licensed MIT. It adds 102 tokens to every session and 1,200 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

content-hash-cache-pattern

Cache expensive file processing results using SHA-256 content hashes — path-independent, auto-invalidating, with service layer separation.

affaan-m/ECC · 30 tokens

notebooklm-manager

Manages NotebookLM notebooks — query, add, list, search, enable/disable, remove. Use when a notebooklm.google.com URL appears or user mentions NotebookLM. Handles URLs through its own Chrome agent — do not navigate directly. Requires: claude-in-chrome MCP.

LeeJuOh/claude-code-zero · 62 tokens

lx

Codebase exploration tool that reads many files or whole directories in a single call, with per-file headers, glob include/exclude filters, function/type skeleton extraction (signatures only, no bodies), and head/tail line slicing.

rasros/lx · 48 tokens

find-plugin-file

This skill should be used when needing to locate files within the Claude Code plugins cache directory (/.claude/plugins/cache). Triggers include finding tool scripts, skill files, or any plugin resource when the hardcoded path is unknown or varies by plugin version. Use when slash commands or orchestrators need to…

closedloop-ai/claude-plugins · 70 tokens

flow-lean

Use when the user explicitly asks for Flow Lean, lean or less verbose output, action-first responses, expansion of a compressed Flow Lean answer, or Flow Lean recap and skills-footer controls.

FlorianBruniaux/flow-lean · 41 tokens

eco-max

Maximum-savings variant of /eco - the same frugality rules PLUS a low reasoning-effort override for the invoked task. Use for routine chores (rename, small fix, quick question, boilerplate) when the user wants absolute minimum token spend; prefer plain /eco for hard or high-stakes work. Works in any language.

sup3x/claude-code-eco · 71 tokens