morning-briefing

morning-briefing is a skill for Claude Code, Codex from JansenAnalytics/claudex. It costs 29 tokens per session (678 once invoked), scanned C, original, MIT.

A daily briefing generator that combines weather, market information, system health, upcoming tasks, and recent GitHub activity. It is designed to give a short overview at the start of the day.

In plain words
What is it for?
Use it for a morning status report covering Oslo weather, exchange rates, services, disk usage, uptime, and GitHub notifications.
Why use it?
It gathers routine updates from several places so you do not have to check each source separately.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: positional $N argument; built for openclaw.

Good fit Use it for a morning status report covering Oslo weather, exchange rates, services, disk usage, uptime, and GitHub notifications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jansenanalytics/claudex/morning-briefing
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 JansenAnalytics/claudex --skill morning-briefing
Clone the repo
git clone --depth 1 https://github.com/JansenAnalytics/claudex

Made for: Claude Code, Codex.

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/jansenanalytics/claudex/morning-briefing/github.svg)](https://agentmods.dev/skills/jansenanalytics/claudex/morning-briefing)
Your own site
<a href="https://agentmods.dev/skills/jansenanalytics/claudex/morning-briefing"><img src="https://agentmods.dev/badge/skills/jansenanalytics/claudex/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/jansenanalytics/claudex/morning-briefing"><img src="https://agentmods.dev/badge/skills/jansenanalytics/claudex/morning-briefing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 678 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 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.00029 $0.00678
Opus 5 $0.00015 $0.00339
Sonnet 5 $0.00006 $0.00136
Haiku 4.5 $0.00003 $0.00068

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

Security

Grade C, and why

morning-briefing scanned grade C 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 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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -s "https://open.er-api.com/v6/latest/USD" | python3 -c "

Makes network callslowCapability

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

curl -s "wttr.in/Oslo?format=%c+%t+%h+%w+%p"
skills/morning-briefing/SKILL.md · 77 lines

What it actually says

Morning Briefing Skill

Generate a concise daily briefing for the user covering:

1. Weather (Oslo)

curl -s "wttr.in/Oslo?format=%c+%t+%h+%w+%p"

2. Market Overview

# FX rates (from exchangerate.host or similar free API)
curl -s "https://open.er-api.com/v6/latest/USD" | python3 -c "
import json,sys
d=json.load(sys.stdin)['rates']
pairs = {'EUR': d.get('EUR'), 'GBP': d.get('GBP'), 'AUD': d.get('AUD'), 'NZD': d.get('NZD'), 'CAD': d.get('CAD'), 'CHF': d.get('CHF'), 'JPY': d.get('JPY'), 'NOK': d.get('NOK')}
for k,v in pairs.items():
    if v: print(f'USD/{k}: {v:.4f}')
" 2>/dev/null || echo "FX data unavailable"

3. System Health

# Disk usage
df -h / | tail -1 | awk '{print "Disk: " $5 " used"}'

# Services
for svc in openclaw-poe-gateway openclaw-argus-gateway; do
    status=$(systemctl --user is-active $svc 2>/dev/null || echo "unknown")
    echo "$svc: $status"
done

# Claudex uptime
pid=$(pgrep -f "claude.*channels.*telegram" 2>/dev/null | head -1)
if [ -n "$pid" ]; then
    echo "Claudex: running ($(ps -p $pid -o etime= | xargs))"
fi

4. GitHub Activity

# Recent notifications
~/.local/bin/gh api notifications --jq '.[0:5] | .[] | "[\(.repository.name)] \(.subject.title)"' 2>/dev/null || echo "No notifications"

5. Trade System Status

# Last trade from journal
sqlite3 ${PROP_HEDGE_AGENTS_HOME:-$HOME/projects/prop-hedge-agents}/data/trade-journal.db \
    "SELECT date, strategy_type, outcome FROM trades ORDER BY id DESC LIMIT 1;" 2>/dev/null || echo "No trades"

Output Format (for Telegram)

Keep it brief — bullet points, no tables:

☀️ Oslo: 12°C, partly cloudy, light wind

📊 Markets:
• EUR/USD: 1.0842
• GBP/USD: 1.2650
• ...

🖥️ Systems: All healthy
• Kite ✅ | Poe ✅ | Argus ✅ | Claudex ✅

📌 Today:
• [any calendar events or reminders]
Files

What ships with it

1 file 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. 5d ago First seen · 77 lines · 29 tokens per session scan C 23394a247562

Subscribe to this mod's changes

morning-briefing is a skill published in the GitHub repository JansenAnalytics/claudex (5 stars, last pushed 2mo ago), licensed MIT. It adds 29 tokens to every session and 678 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

daily-briefing

Structured morning briefing skill — daily summaries covering calendar, tasks, weather, news, and priorities. Supports cron, heartbeat, and on-demand triggers.

theagentledger/agent-skills · 34 tokens

remindme

⏰ simple Telegram reminders for OpenClaw. cron, zero dependencies.

CraftOS-dev/CraftBot · 20 tokens

adhd-output-style

This skill should be used when the user asks for "ADHD output", "fewer output tokens", "short numbered steps", "limited working memory formatting", or explicitly invokes "adhd-output-style".

fcakyon/claude-codex-settings · 46 tokens

community

Use when building or running a persistent two-way community space — Discord, Telegram, Circle: platform choice, structure, onboarding, native→bot→human moderation, rituals, growth loops, health metrics. NOT churn of paying product customers (that is retention), NOT broadcast email (that is newsletter), NOT one live…

ericrisco/rsc-harness · 77 tokens

maintainer-bar

Operate the MaintainerBar SwiftUI menu bar app and its ghcrawl backend. Use for: refreshing issue clusters, searching issues semantically, checking repo pulse, managing notifications, building/running the app, and coordinating ghcrawl data pipelines.

OpenCoven/coven · 52 tokens

telegram-userbot

Use when full MTProto control of Telegram account via Telethon. DM, Voice Note, Call, Video Call, Group/Channel management, member scraping, bot cloning, outreach automation, broadcast, CRM tracking, content reposting, scheduled messaging, webhook triggers. Use for all Telegram automation as a real user (not bot API).

oyi77/1ai-skills · 70 tokens