morning-briefing

morning-briefing is a skill for Claude Code from krishagel/geoffrey. It costs 35 tokens per session (6,899 once invoked), scanned A, original, MIT.

A daily briefing workflow that gathers information from your calendar, task list, email, tickets, news, and weather, then presents it in several formats.

In plain words
What is it for?
Use it to review the day's events, due or overdue tasks, recent messages, news, weather, and other work updates in the terminal, an Obsidian note, or an email with an audio version.
Why use it?
It removes the need to check many services separately each morning and combine the important items yourself.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/hagelk/non-ic-code/geoffrey/skills/google-workspace.

Part of the geoffrey plugin — 33 skills, 2 commands, 4 hooks shipped together

Good fit Use it to review the day's events, due or overdue tasks, recent messages, news, weather, and other work updates in the terminal, an Obsidian note, or an email with an audio version.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add krishagel/geoffrey
Claude Code
/plugin install geoffrey

Made for: Claude Code.

Or install geoffrey, the plugin that ships this one along with the rest of its 33 skills, 2 commands, 4 hooks.

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-briefing

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/krishagel/geoffrey/morning-briefing"><img src="https://agentmods.dev/badge/skills/krishagel/geoffrey/morning-briefing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,899 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.00035 $0.06899
Opus 5 $0.00017 $0.03449
Sonnet 5 $0.00007 $0.01380
Haiku 4.5 $0.00003 $0.00690

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

Security

Grade A, and why

morning-briefing 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 11d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/apply_pronunciations.js, scripts/get_due_flagged.js, scripts/get_last_business_day.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/morning-briefing/SKILL.md · 857 lines

How it starts

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

Morning Briefing Workflow

Overview

Generates a daily morning briefing and delivers it three ways:

  1. Terminal: Summary displayed immediately
  2. Obsidian: Full briefing saved to daily note
  3. Email: Briefing text + audio podcast attachment

Location

  • Gig Harbor, WA - Use for weather queries

Phase 1: Gather Data

Execute these data gathering steps:

1.1 Calendar (Today's Events)

cd /Users/hagelk/non-ic-code/geoffrey/skills/google-workspace && bun calendar/list_events.js psd --today

Returns JSON with today's events including:

  • Event summary, location, start/end times
  • Attendees and response status
  • Hangout/meet links

Account: Use psd for work calendar

1.2 OmniFocus Tasks (Due & Flagged)

osascript -l JavaScript /Users/hagelk/non-ic-code/geoffrey/skills/morning-briefing/scripts/get_due_flagged.js

Returns tasks that are:

  • Due today or overdue
  • Flagged
  • Available (not blocked, not deferred to future)

1.3 Recent Emails (Last 24 Hours)

# Get yesterday's date in Gmail query format
YESTERDAY=$(date -v-1d +%Y/%m/%d)
cd /Users/hagelk/non-ic-code/geoffrey/skills/google-workspace && bun gmail/list_messages.js psd --query "in:inbox after:$YESTERDAY" --max 15

Returns recent inbox messages with:

  • From, subject, date, snippet
  • Whether read or unread
  • Thread ID for context
  • Labels array

Filtering: Only show emails still in inbox (not already labeled/processed).

  • Emails with custom labels (Label_XXXXX) have been sorted and should be excluded
  • Exception: Include emails with SaneCC or SaneLater labels (worth knowing about)
  • System labels (UNREAD, INBOX, CATEGORY_*, IMPORTANT) don't count as "processed"

Philosophy: Any email still in inbox from last 24 hours needs attention, read or not.

Account: Use psd for work email

1.4 Open Freshservice Tickets

bun /Users/hagelk/non-ic-code/geoffrey/skills/freshservice-manager/scripts/list_tickets.js '{"workspace_id": 2, "filter": "new_and_my_open"}'

Read the full file on GitHub · 857 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 857 lines · 35 tokens per session scan A d701bda118c4

Subscribe to this mod's changes

morning-briefing is a skill published in the GitHub repository krishagel/geoffrey (5 stars, last pushed 6mo ago), licensed MIT. It adds 35 tokens to every session and 6,899 once invoked, about $0.0002 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-31.