aeon

aeon is a skill for Claude Code from aaronjmars/aeon-agent. It costs 147 tokens per session (8,358 once invoked), scanned E, a copy of aeon, MIT.

A setup and scheduling guide for Aeon, an agent that runs skills from a GitHub repository on a schedule. It covers starting an instance, changing its schedule, editing skills, choosing skills, and setting its long-term direction and voice.

In plain words
What is it for?
Use it to start or reschedule Aeon, enable or install skills, turn a conversation into a scheduled skill, edit existing skills, inspect past work for automation ideas, or configure STRATEGY.md and soul/.
Why use it?
It helps connect repeated work to scheduled runs and troubleshoot cases where the agent does not run as expected. It also requires checking that commands target the correct repository before making changes.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is bash scripts/check-skill-categories.sh # category is one of the six.

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

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 aeon

README.md
[![agentmods](https://agentmods.dev/badge/skills/aaronjmars/aeon-agent/aeon.svg)](https://agentmods.dev/skills/aaronjmars/aeon-agent/aeon)
Your own site
<a href="https://agentmods.dev/skills/aaronjmars/aeon-agent/aeon"><img src="https://agentmods.dev/badge/skills/aaronjmars/aeon-agent/aeon.svg" alt="Measured on agentmods" height="20"></a>
Per session 147 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,358 The whole file, excluding the scripts and references it only reads on demand.
Security scan E 4 findings. Scan, not verified.
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.00147 $0.08358
Opus 5 $0.00073 $0.04179
Sonnet 5 $0.00029 $0.01672
Haiku 4.5 $0.00015 $0.00836

Measured yesterday against content hash ee643687f351, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade E, and why

aeon scanned grade E with 4 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 yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/mine-history.mjs), 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

"What am I doing by hand over and over that Aeon could just do?" Mode 4 turns *this* chat into a skill; Mode 8 mines *past* chats to find which chat is worth turning into one. It reads the operator's local Claude Code tr

Reads MCP configurationmediumAgent snooping

mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.

- **"No MCP tools available."** On the Claude harness a single unresolved `${VAR}` in `.mcp.json` disables **every** MCP server for that run, not just the broken one (`::warning::.mcp.json references secret(s) not set:`

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf aeon.git && git clone https://github.com/<owner>/<name>.git && cd <name>

Makes network callslowCapability

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

<curl / WebFetch / `./secretcurl` / `gh api` — how this skill fetches>
Origin

This is a copy

100% identical to aeon — 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.

.claude/skills/aeon/SKILL.md · 452 lines

How it starts

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

Aeon

Aeon is an agent that runs on the user's own GitHub repo via Actions. A skill is a Markdown file (skills/<name>/SKILL.md); aeon.yml says which ones run and when.

Pick the mode they're asking for:

1 · Start No instance yet, or set one up from scratch
2 · Reschedule Change times, cadence, or what a skill focuses on
3 · Unblock "It didn't run" / "nothing happened"
4 · Chat → skill Turn what we just did into a scheduled skill
5 · Edit a skill Change what an existing skill does
6 · What to turn on Pick skills, browse packs, install more
7 · Strategy & voice STRATEGY.md and soul/ — the north star and the tone
8 · Mine history → skill "What of my repeated work could Aeon do for me?" — surface it from past Claude Code chats

Preflight (every mode)

  1. Find the repo: current dir → gh repo set-default → ask. Clone it if it isn't local.

  2. Confirm gh points at THEIR instance, before any command that writes.

    gh repo view --json nameWithOwner -q .nameWithOwner
    

    If that prints aeonfun/aeon and they aren't working on upstream itself, stop and run gh repo set-default <owner>/<repo>. gh prefers an upstream remote over origin when no default is pinned, and every Aeon write (auth, secrets set, skills run, config pushes) is a gh -R <resolved> call — so it will cheerfully put their API keys on the upstream repo and dispatch runs there. It looks like success: no error, a real run id, and the skill just never fires on their instance.

  3. gh auth status — everything routes through gh. If it fails, tell them to run gh auth login and stop.

  4. Use the ./aeon CLI for all config writes. It preserves comments in aeon.yml and validates. Never hand-edit the YAML — with one exception: the CLI cannot create an entry for a brand-new skill (see Mode 4 step 4).

Don't trust "disabled" for a skill you just created. The read path lists skills from disk and defaults a missing aeon.yml entry to enabled: false, so "not configured" and "disabled" look identical. One command tells them apart:

Read the full file on GitHub · 452 lines

Files

What ships with it

7 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. yesterday Changed · +1 lines ee643687f351
  2. 6d ago First seen · 451 lines · 147 tokens per session scan E 3886dade499b

Subscribe to this mod's changes

aeon is a skill published in the GitHub repository aaronjmars/aeon-agent (11 stars, last pushed yesterday), licensed MIT. It adds 147 tokens to every session and 8,358 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it E with 4 findings (reads agent configuration directories, reads mcp configuration, recursive force delete). It is 100% identical to aeon, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens