jules: Skill for Claude Code

.claude/skills/good-morning/SKILL.md

good-morning is a skill for Claude Code from jonathanmalkin/jules. It costs 95 tokens per session (3,404 once invoked), scanned B, original, MIT.

A daily or weekly briefing workflow that reads a prepared operations summary and presents it for review. It checks whether the briefing exists and whether its date matches today.

In plain words
What is it for?
Use it for morning rundowns, weekly reviews, and checking today's priorities, tasks, and other start-of-day information.
Why use it?
It gives you a quick view of scheduled work and operational context while flagging missing or outdated briefings.

Skill for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: names the AskUserQuestion tool.

This is jonathanmalkin/jules's own configuration. It tells Claude Code how to work on jules itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything jules configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 .claude/scripts/generate-content-packet.py --stdout.

Reuse

Borrowing it

Nothing to install: this file belongs to jonathanmalkin/jules. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jonathanmalkin/jules/main/.claude/skills/good-morning/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jonathanmalkin/jules

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 good-morning

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/jonathanmalkin/jules/good-morning"><img src="https://agentmods.dev/badge/skills/jonathanmalkin/jules/good-morning.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,404 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00095 $0.03404
Opus 5 $0.00048 $0.01702
Sonnet 5 $0.00019 $0.00681
Haiku 4.5 $0.00010 $0.00340

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

Security

Grade B, and why

good-morning scanned grade B with 2 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

3. On Approve/Reject: search Paperclip (`curl -sf "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues?q=<keyword>" -H "Authorization: Bearer $PAPERCLIP_API_KEY"`), update status via `curl -sf -X PATCH "$PAPERC

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Paperclip: `curl -sf "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues?status=todo,in_progress" -H "Authorization: Bearer $PAPERCLIP_API_KEY"` for active issues
.claude/skills/good-morning/SKILL.md · 288 lines

How it starts

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

Good Morning Briefing

Interactive companion to the overnight batch. The briefing is pre-generated and saved to Briefing.md (root) and Documents/Field-Notes/YYYY-MM-DD-Briefing.md (archive). This skill reads, presents, and facilitates the interactive walkthrough. It never generates the briefing itself.

Decision Tree

Branch A — Briefing exists

  1. Read Briefing.md at the repo root.
  2. If root copy is missing, try the dated archive: Documents/Field-Notes/$(date +%Y-%m-%d)-Briefing.md.
  3. Validate: must contain a # Good Morning header and be >200 characters.
  4. Staleness check: Extract the date from the # Good Morning — YYYY-MM-DD header. If it doesn't match today, flag it: "Heads up — this briefing is from [date], not today. The overnight batch may not have run. Want me to pull a live summary instead?"
  5. If valid and fresh (or user accepts stale), present per the Presenting section.
  6. If invalid (empty, garbled, no header), treat as missing — fall through to Branch B.

Branch B — Briefing missing or invalid

  1. Check git log for overnight commit:
    git log --oneline -5 --grep="overnight: briefing"
    
  2. If a commit exists for today's date: run git pull origin main, then retry reading Briefing.md. If still missing after pull, fall through to fallback.
  3. If no overnight commit found: the Cloud task didn't run. Inform [Your Name] and offer inline fallback.

Fallback (ephemeral, not saved)

Generate a lightweight briefing conversationally from live sources:

  • Paperclip: curl -sf "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues?status=todo,in_progress" -H "Authorization: Bearer $PAPERCLIP_API_KEY" for active issues
  • Gmail: Scripts/gmail-read.py --hours 24
  • Git: git log --oneline --since="yesterday" Note that this is ephemeral and won't persist. Recommend checking why the overnight batch didn't run.

Presenting

Structured walkthrough. Complete each step before moving to the next. Most mornings go straight through without looping — the iteration is there when needed, not forced.

Read the full file on GitHub · 288 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 · 288 lines · 95 tokens per session scan B 1df4956b8beb

Subscribe to this mod's changes

good-morning is a skill published in the GitHub repository jonathanmalkin/jules (65 stars, last pushed 3mo ago), licensed MIT. It adds 95 tokens to every session and 3,404 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.