beeweave: Skill for Claude Code

.skills/wiki/beeweave-daily-update/SKILL.md

beeweave-daily-update is a skill for Claude Code, Codex from ptonlix/beeweave. It costs 117 tokens per session (1,933 once invoked), scanned A, original, MIT.

A scheduled maintenance tool for an Obsidian wiki that checks source files, refreshes the page index, and updates a file of currently important pages.

In plain words
What is it for?
Use it for daily freshness checks, index updates, and regular wiki maintenance, including scheduled morning runs.
Why use it?
It reduces the manual work needed to keep the wiki's records current as source files change.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; mentions Codex.

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

Reuse

Borrowing it

Nothing to install: this file belongs to ptonlix/beeweave. 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/ptonlix/beeweave/main/.skills/wiki/beeweave-daily-update/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ptonlix/beeweave

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 beeweave-daily-update

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/ptonlix/beeweave/beeweave-daily-update"><img src="https://agentmods.dev/badge/skills/ptonlix/beeweave/beeweave-daily-update.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 117 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,933 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.00117 $0.01933
Opus 5 $0.00059 $0.00966
Sonnet 5 $0.00023 $0.00387
Haiku 4.5 $0.00012 $0.00193

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

Security

Grade A, and why

beeweave-daily-update 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 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.

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/wiki/beeweave-daily-update/SKILL.md · 200 lines

How it starts

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

Daily Update — Wiki Maintenance Cycle

You run a lightweight maintenance pass over the wiki: check source freshness, refresh the index, update hot.md, and write the state file that the terminal notification reads.

Before You Start

  1. Resolve config — follow the Config Resolution Protocol in beeweave-core/SKILL.md (inline @name override → walk up CWD for .env~/.beeweave/config → prompt setup). This gives BEEWEAVE_VAULT_PATH and BEEWEAVE_REPO.
  2. Derive vault-scoped state dir — all runtime state is scoped to the resolved vault, not global:
    VAULT_ID=$(echo "$BEEWEAVE_VAULT_PATH" | md5sum 2>/dev/null | cut -c1-8 || md5 -q - <<< "$BEEWEAVE_VAULT_PATH" | cut -c1-8)
    STATE_DIR="$HOME/.beeweave/state/$VAULT_ID"
    mkdir -p "$STATE_DIR"
    
  3. Read $BEEWEAVE_VAULT_PATH/.manifest.json.

Modes

Run Mode (default — triggered by cron or /beeweave-daily-update)

Execute the maintenance cycle:

Step 1: Source freshness check

Compare each source in .manifest.json against its file's modification time. Classify as:

  • Freshmtime ≤ ingested_at
  • Stalemtime > ingested_at (new content exists, not yet ingested)
  • Missing — source file no longer exists

Step 2: Index refresh

Read $BEEWEAVE_VAULT_PATH/index.md. If any pages in the vault are missing from the index (or vice versa), update the index. Use find $BEEWEAVE_VAULT_PATH -name "*.md" -not -path "*/_*" to enumerate vault pages, then reconcile against the index.

Step 3: hot.md update

Read hot.md. If it's >48h old based on its updated: frontmatter, regenerate it: read the 10 most recently modified wiki pages and write a fresh ~500-word semantic snapshot of what the wiki covers. This keeps the next session's context warm without a full vault crawl.

Step 4: Write state

Write to the vault-scoped $STATE_DIR derived in "Before You Start":

date +%s > "$STATE_DIR/.last_update"
echo "<stale_count>" > "$STATE_DIR/.pending_delta"
echo "$BEEWEAVE_VAULT_PATH" > "$STATE_DIR/.vault_path"

Read the full file on GitHub · 200 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 · 200 lines · 117 tokens per session scan A a530917a095b

Subscribe to this mod's changes

beeweave-daily-update is a skill published in the GitHub repository ptonlix/beeweave (6 stars, last pushed 1mo ago), licensed MIT. It adds 117 tokens to every session and 1,933 once invoked, about $0.0006 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.