morning

morning is a command for Claude Code from eddiebelaval/squire. It costs 0 tokens per session (1,018 once invoked), scanned A, original, MIT.

A daily briefing command that loads saved project context and checks the status of active projects. It highlights priorities, deadlines, reminders, unfinished work, and blockers.

In plain words
What is it for?
Use it for daily planning, reviewing recent work, checking Git changes, and finding the day’s most important tasks.
Why use it?
It reduces the need to reconstruct what happened across projects before starting the day.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md). Also seen: reads .claude/ paths; names the AskUserQuestion tool; mentions Claude Code.

Good fit Use it for daily planning, reviewing recent work, checking Git changes, and finding the day’s most important tasks.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/eddiebelaval/squire/morning
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.

Clone the repo
git clone --depth 1 https://github.com/eddiebelaval/squire

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

README.md
[![agentmods](https://agentmods.dev/badge/commands/eddiebelaval/squire/morning/github.svg)](https://agentmods.dev/commands/eddiebelaval/squire/morning)
Your own site
<a href="https://agentmods.dev/commands/eddiebelaval/squire/morning"><img src="https://agentmods.dev/badge/commands/eddiebelaval/squire/morning/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

Your own site · 80×15
<a href="https://agentmods.dev/commands/eddiebelaval/squire/morning"><img src="https://agentmods.dev/badge/commands/eddiebelaval/squire/morning.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,018 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.
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.00000 $0.01018
Opus 5 $0.00000 $0.00509
Sonnet 5 $0.00000 $0.00204
Haiku 4.5 $0.00000 $0.00102

Measured 5d ago against content hash 07952f4b0605, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

morning 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 5d 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.

commands/morning.md · 145 lines

How it starts

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

/morning - Daily Morning Brief

Load context, check status across all projects, surface priorities for the day.

Pre-computed Context

TODAY=$(date +%Y-%m-%d)
DAY_OF_WEEK=$(date +%A)

Date: $TODAY ($DAY_OF_WEEK)

Process

1. Load Memory Context

Read ~/.claude/MEMORY.md for:

  • Active projects and their status
  • Current focus area
  • Any deadlines or reminders

Read ~/.claude/projects/-Users-eddiebelaval-Development/memory/session-log.md for:

  • What was worked on yesterday
  • Any unfinished tasks or blockers

2. Cross-Project Git Status

Check each active project for uncommitted work and open PRs:

# Homer
cd ~/Development/Homer && echo "=== HOMER ===" && git status -s && git log --oneline -3

# Parallax
cd ~/Development/id8/products/parallax && echo "=== PARALLAX ===" && git status -s && git log --oneline -3

# Rune
cd ~/Development/id8/products/rune && echo "=== RUNE ===" && git status -s && git log --oneline -3

# Vox
cd ~/Development/id8/products/vox && echo "=== VOX ===" && git status -s && git log --oneline -3

# Claude Code Artifacts
cd ~/Development/claude-code-visualize && echo "=== ARTIFACTS ===" && git status -s && git log --oneline -3

Check for open PRs across repos:

gh pr list --state open --json title,url,repository 2>/dev/null

3. Active Tasks

Scan workspace task directories for active tasks:

# Homer tasks
ls ~/Development/Homer/workspace/tasks/*.md 2>/dev/null

# Parallax tasks
ls ~/Development/id8/products/parallax/workspace/tasks/*.md 2>/dev/null

Sort by priority (high > medium > low).

4. Infrastructure Health

Check HYDRA job status:

launchctl list | grep -i hydra 2>/dev/null

Check for any failed launchd jobs:

launchctl list | grep -E "hydra|vox|e2e" 2>/dev/null

5. Deadlines & Reminders

Check MEMORY.md for any upcoming deadlines. Known recurring:

  • Annual Report: May 1, 2026 ($138.75)
  • Capital One Spark Classic: Call by March 10, 2026

Read the full file on GitHub · 145 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. 5d ago First seen · 145 lines · 0 tokens per session scan A 07952f4b0605

Subscribe to this mod's changes

morning is a command published in the GitHub repository eddiebelaval/squire (21 stars, last pushed 23d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,018 tokens. 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-09-03.