ghostclaw: Skill for Claude Code

.claude/skills/add-morning-briefing/SKILL.md

add-morning-briefing is a skill for Claude Code from b1rdmania/ghostclaw. It costs 33 tokens per session (847 once invoked), scanned A, original, MIT.

A set of recurring agent briefings created from scheduled prompts. A scheduled prompt is an instruction that runs automatically at a chosen time.

In plain words
What is it for?
Creating weekday morning summaries, Friday weekly reviews, or other recurring checks at times and with content chosen by the user.
Why use it?
It removes the need to remember to ask for regular updates. The briefing can gather information such as weather, email, pull requests, news, or calendar items.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: names the AskUserQuestion tool.

This is b1rdmania/ghostclaw's own configuration. It tells Claude Code how to work on ghostclaw 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 ghostclaw configures →

Reuse

Borrowing it

Nothing to install: this file belongs to b1rdmania/ghostclaw. 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/b1rdmania/ghostclaw/main/.claude/skills/add-morning-briefing/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/b1rdmania/ghostclaw

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/b1rdmania/ghostclaw/add-morning-briefing"><img src="https://agentmods.dev/badge/skills/b1rdmania/ghostclaw/add-morning-briefing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 847 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.00033 $0.00847
Opus 5 $0.00016 $0.00424
Sonnet 5 $0.00007 $0.00169
Haiku 4.5 $0.00003 $0.00085

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

Security

Grade A, and why

add-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.

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/add-morning-briefing/SKILL.md · 92 lines

How it starts

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

Add Morning Briefing

Registers scheduled tasks that run the agent with specific prompts on a cron. No code changes needed — this skill just creates IPC task files.

Setup

1. Ask the user

Use AskUserQuestion to understand what they want:

  • Which briefings? Morning summary / Weekly review / Both / Custom
  • What time? Default: 8am weekdays for morning, 5pm Friday for weekly
  • What to include? Weather, email, PRs, news, calendar, custom checks
  • Location? For weather (default: London)

2. Register the tasks

For each briefing, write an IPC task file to data/ipc/main/tasks/.

Find the main group's chat JID first:

sqlite3 store/messages.db "SELECT jid FROM registered_groups WHERE folder = 'main' LIMIT 1;"
Morning Briefing (weekdays at 8am)
CHAT_JID="tg:414798121"  # Replace with actual JID
cat > data/ipc/main/tasks/morning_$(date +%s).json << EOF
{
  "type": "schedule_task",
  "prompt": "Morning briefing. Be concise — 5 lines max.\n\n1. Check the weather for London today\n2. Check Gmail for anything urgent in the last 12 hours\n3. Check for open PRs on my GitHub repos (gh pr list)\n4. Any scheduled tasks that failed overnight (check task_run_logs in the database)\n\nFormat as a quick summary. No greetings, no sign-off.",
  "schedule_type": "cron",
  "schedule_value": "0 8 * * 1-5",
  "context_mode": "isolated",
  "targetJid": "$CHAT_JID"
}
EOF
Weekly Review (Friday at 5pm)
cat > data/ipc/main/tasks/weekly_$(date +%s).json << EOF
{
  "type": "schedule_task",
  "prompt": "Weekly review. Check conversations/ folder for this week's conversation archives. Summarise:\n\n1. What we worked on this week\n2. What's still open or unfinished\n3. What to focus on next week\n\nKeep it to 10 lines. No fluff.",
  "schedule_type": "cron",
  "schedule_value": "0 17 * * 5",
  "context_mode": "isolated",
  "targetJid": "$CHAT_JID"
}
EOF

3. Customise the prompts

Adjust prompts based on user answers from step 1. Common additions:

Read the full file on GitHub · 92 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. 11d ago First seen · 92 lines · 33 tokens per session scan A 7b2b6edd6c7a

Subscribe to this mod's changes

add-morning-briefing is a skill published in the GitHub repository b1rdmania/ghostclaw (92 stars, last pushed 4mo ago), licensed MIT. It adds 33 tokens to every session and 847 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-30.

Related

Other skills, from other repositories

reminder-format

House format for the text passed to reminderset. Read before calling reminderset, and again before editing a reminder (cancel + re-create). Three rules — open with the literal marker , state the goal in one line, then list numbered steps the future-self should run when the reminder fires. Keeps fired envelopes…

Rustam-Z/hamroh · 82 tokens

adhd-daily-planner

Time-blind friendly planning, executive function support, and daily structure for ADHD brains. Specializes in realistic time estimation, dopamine-aware task design, and building systems that actually work for neurodivergent minds.

FreedomIntelligence/OpenClaw-Medical-Skills · 49 tokens

welcome

Introduce yourself to a newly connected channel. Triggered automatically when a channel is first wired. Send a friendly greeting and brief overview of what you can do.

nanocoai/nanoclaw · 33 tokens

add-teams

Add Microsoft Teams channel integration via Chat SDK.

nanocoai/nanoclaw · 13 tokens

meeting-note-summarizer

Turn meeting notes or transcripts into factual summaries, decisions, questions, and action items. Use when a user wants a concise recap or needs explicit owners and deadlines extracted without filling in missing details.

iflytek/skillhub · 44 tokens

daily-standup-journal

Generate concise daily standups, reflection prompts, and weekly retrospectives for individuals or teams. Use for planning a day, surfacing blockers, reviewing user-provided entries, or drafting a check-in without assuming prior history.

iflytek/skillhub · 51 tokens