weekly-aeoncard

weekly-aeoncard is a skill for Claude Code, Codex from aaronjmars/aeon-agent. It costs 39 tokens per session (2,042 once invoked), scanned A, a copy of weekly-aeoncard, MIT.

A weekly usage report that reads a token-use file and renders recent and all-time totals as a shareable SVG image. SVG is an image format that stays sharp when resized.

In plain words
What is it for?
Use it to review token consumption, compare a chosen number of days with all-time use, and see which skills account for the most usage.
Why use it?
It turns a raw usage log into a quick visual summary without estimating or fetching extra data. A dry-run option lets you create the report without sending a notification.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to review token consumption, compare a chosen number of days with all-time use, and see which skills account for the most usage.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aaronjmars/aeon-agent/weekly-aeoncard
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 aaronjmars/aeon-agent --skill weekly-aeoncard
Clone the repo
git clone --depth 1 https://github.com/aaronjmars/aeon-agent

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 weekly-aeoncard

README.md
[![agentmods](https://agentmods.dev/badge/skills/aaronjmars/aeon-agent/weekly-aeoncard/github.svg)](https://agentmods.dev/skills/aaronjmars/aeon-agent/weekly-aeoncard)
Your own site
<a href="https://agentmods.dev/skills/aaronjmars/aeon-agent/weekly-aeoncard"><img src="https://agentmods.dev/badge/skills/aaronjmars/aeon-agent/weekly-aeoncard/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 weekly-aeoncard

Your own site · 80×15
<a href="https://agentmods.dev/skills/aaronjmars/aeon-agent/weekly-aeoncard"><img src="https://agentmods.dev/badge/skills/aaronjmars/aeon-agent/weekly-aeoncard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,042 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 100% copy Near-identical to another mod 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.00039 $0.02042
Opus 5 $0.00019 $0.01021
Sonnet 5 $0.00008 $0.00408
Haiku 4.5 $0.00004 $0.00204

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

Security

Grade A, and why

weekly-aeoncard 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 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (render_card.py), 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.

Origin

This is a copy

100% identical to weekly-aeoncard — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/weekly-aeoncard/SKILL.md · 108 lines

How it starts

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

${var} — window + delivery control.

  • empty → weekly card: last 7 days + all-time, render the image, notify.
  • dry-run → render the image + report + dashboard spec but send no notification (artifacts still write). Combine with a window, e.g. dry-run 30.
  • integer N → override the weekly window to the last N days (default 7, cap 90). Example: 14, 30.

Today is ${today}. Turn this instance's own token ledger (memory/token-usage.csv) into a one-glance recap: how many tokens it burned this week, how many since it started, which skills dominate — rendered as a self-contained SVG card an operator can screenshot and share. Every number is measured from the ledger; nothing is fetched, sampled, or estimated. The heavy lifting is in skills/weekly-aeoncard/render_card.py (pure Python stdlib, deterministic) so you orchestrate, not hand-compute.

Steps

  1. Parse ${var} → window + mode.

    V="$(echo "${var}" | tr '[:upper:]' '[:lower:]' | xargs)"
    MODE=execute; case "$V" in dry-run*) MODE=dry-run; V="${V#dry-run}"; V="$(echo "$V" | xargs)";; esac
    WINDOW_DAYS=7; case "$V" in ''|*[!0-9]*) : ;; *) WINDOW_DAYS="$V";; esac
    [ "$WINDOW_DAYS" -gt 90 ] 2>/dev/null && WINDOW_DAYS=90
    [ "$WINDOW_DAYS" -lt 1 ] 2>/dev/null && WINDOW_DAYS=7
    
  2. Guard the ledger. The recap is synthesis-only — no ledger, nothing to show.

    CSV=memory/token-usage.csv
    if [ ! -s "$CSV" ] || [ "$(wc -l < "$CSV")" -lt 2 ]; then
      ./notify "weekly-aeoncard skipped: memory/token-usage.csv absent or empty (no runs recorded yet)"
      exit 0   # WEEKLY_AEONCARD_NO_DATA
    fi
    
  3. Derive the instance name + image link. From the git origin, so the card self-labels and the notification deep-links the committed SVG.

    REMOTE="$(git remote get-url origin 2>/dev/null)"
    REPO="$(echo "$REMOTE" | sed -E 's#.*github.com[:/]([^/]+/[^/.]+)(\.git)?/?$#\1#')"
    INSTANCE="${REPO#*/}"; [ -n "$INSTANCE" ] || INSTANCE=aeon
    SVG="output/images/weekly-aeoncard-${today}.svg"
    IMG_LINK="https://github.com/${REPO}/blob/main/${SVG}"
    
  4. Render the card + artifacts. One call writes the SVG (canonical image), a best-effort PNG, the markdown report, the dashboard spec, and appends the run log. It prints a one-line JSON summary on stdout — capture it.

    mkdir -p output/images output/articles apps/dashboard/outputs
    # The PNG (for inline Telegram) needs a rasterizer. The workflow stages `rsvg-convert`
    # (librsvg2-bin) for this skill before the run — the agent allowlist blocks in-run
    # pip/apt. render_card.py uses cairosvg if importable, else rsvg-convert, else SVG-only.
    SUMMARY="$(python3 skills/weekly-aeoncard/render_card.py \
      --csv "$CSV" --today "${today}" --window-days "$WINDOW_DAYS" \
      --instance "$INSTANCE" --img-link "$IMG_LINK" \
      --out "$SVG" \
      --png "output/images/weekly-aeoncard-${today}.png" \
      --report "output/articles/weekly-aeoncard-${today}.md" \
      --dashboard "apps/dashboard/outputs/weekly-aeoncard.json" \
      --log "memory/logs/${today}.md")"
    RC=$?
    if [ "$RC" -ne 0 ]; then
      ./notify "weekly-aeoncard: render failed (rc=$RC) — ledger unreadable"
      exit 0
    fi
    

    All writes land under output/ and apps/dashboard/outputs/ — paths the run commits. The PNG is a raster copy for inline Telegram delivery (needs cairosvg or rsvg-convert); if neither is available the SVG stands alone as the canonical image and the notify degrades to a text recap + link.

  5. Read the numbers back. Parse $SUMMARY for the notification (it holds week_human, week_runs, life_human, life_runs, since, cache_read_pct, top_week):

    WK=$(echo "$SUMMARY" | jq -r .week_human); WKR=$(echo "$SUMMARY" | jq -r .week_runs)
    LF=$(echo "$SUMMARY" | jq -r .life_human); LFR=$(echo "$SUMMARY" | jq -r .life_runs)
    SINCE=$(echo "$SUMMARY" | jq -r .since)
    TOP=$(echo "$SUMMARY" | jq -r '[.top_week[:3][] | "\(.[0]) \(.[1]/1e6|floor)M"] | join(", ")')
    PNG=$(echo "$SUMMARY" | jq -r '.png // ""')   # empty when no rasterizer was available
    

Read the full file on GitHub · 108 lines

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. 4d ago First seen · 108 lines · 39 tokens per session scan A cc13c31e385d

Subscribe to this mod's changes

weekly-aeoncard is a skill published in the GitHub repository aaronjmars/aeon-agent (11 stars, last pushed yesterday), licensed MIT. It adds 39 tokens to every session and 2,042 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to weekly-aeoncard, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens