README.md

July 2, 2026 Β· View on GitHub

Aeon

AEON

GitHub stars GitHub forks Follow on X Aeon on Bankr Contributing

The most autonomous agent framework.
Give it a direction - it'll use 102 skills (deep research, PR reviews, market monitoring, Vercel deploys…) to get it done. No approval loops. No babysitting. Configure once, forget forever.

Aeon Demo


Quick start

You need three things:

  1. Node.js 20+ - grab the LTS installer from nodejs.org, or use a package manager: brew install node (macOS), winget install OpenJS.NodeJS.LTS (Windows), nvm or your distro's package manager (Linux). Already have it? node -v should print 20 or higher.

  2. GitHub CLI (gh), authenticated - the dashboard uses it for everything (secrets, workflows), and ./aeon checks it before starting. Install: brew install gh (macOS), winget install --id GitHub.cli (Windows), per-distro instructions (Linux). Then run gh auth login and follow the prompts.

  3. Your own copy of this repo - click Use this template at the top of the repo page - keep it public, Actions minutes are free on public repos. CLI version: gh repo fork aaronjmars/aeon --clone.

    The Use this template button at the top of the repo page
git clone https://github.com/<you>/aeon   # skip if you used `gh repo fork --clone`
cd aeon && ./aeon

Open http://localhost:5555 and follow the four steps:

  1. Authenticate - connect your Claude Pro/Max subscription, or paste an API key: Anthropic, Anthropic-compatible, or a gateway key (Bankr, OpenRouter, UsePod, Venice, Surplus) - routed automatically.
  2. Add a channel - Telegram, Discord, or Slack so Aeon can talk to you.
  3. Pick skills - toggle what you want, set schedules. Each skill shows the API keys and MCP servers it needs, with one-click setup.
  4. Run - hit Run now on any skill to try it immediately; API keys and var values apply directly, no push needed. When you change config (schedules, toggles), Push commits it to GitHub in one click so Actions runs it on cron.

That's it - Aeon now runs unattended. On a public repo, GitHub Actions minutes are free. Run ./onboard anytime to verify your setup.

Dashboard views, local dev, env vars, and remote access are documented in apps/dashboard/README.md.

No admin rights / can't install gh?

Grab the gh_*_macOS_arm64.zip (or your platform's binary) from github.com/cli/cli/releases and drop it on your PATH (e.g. ~/.local/bin). No installer, no sudo. Then gh auth login.


What Aeon can do

102 skills, grouped into 10 packs. By default the dashboard shows only the small core set; everything else is hidden until you enable its pack in the Packs view - a visibility switch that reveals a pack's skills across the UI without running anything. Putting a skill on duty stays a per-skill toggle. Every skill is independently installable, schedulable, and chainable. How packs work: docs/skill-packs.md.

PackKeySkillsExamples
🧬 Core - self-evolution, healing, memory; always presentcore12autoresearch, cost-report, create-skill
πŸ›°οΈ Fleet & Replicationfleet5deploy-prototype, distribute-tokens, fleet-control
πŸ“š Research & Contentresearch16deep-research, paper-digest, hn-digest
πŸ’» Dev & Codedev18pr-review, github-monitor, auto-merge
πŸ“ˆ Crypto & Marketsmarkets16token-movers, defi-overview, base-mcp
πŸ›‘οΈ Onchain Securityhound4investigation-report, tx-explain, vigil
✍️ Social & Writingsocial8write-tweet, reply-maker, syndicate-article
βœ… Productivityproductivity11goal-tracker, deal-flow, strategy-builder
πŸ€– Agent Opsagent-ops12operator-scorecard, capabilities-map, skill-scan
πŸ§ͺ Lab - unsorted; freshly authored/imported skills awaiting a packlab0(empty β€” add via category:)
Full catalog (all 102 skills by pack)
PackSkills
Core (core, 12)autoresearch,cost-report,create-skill,digest,heartbeat,install-skill,onboard,reflect,self-improve,skill-evals,skill-health,skill-repair
Fleet & Replication (fleet, 5)deploy-prototype,distribute-tokens,fleet-control,spawn-instance,vuln-scanner
Research & Content (research, 16)article,article-queue,bd-radar,deep-research,fetch-tweets,framework-watch,hn-digest,idea-forge,last30,launch-radar,narrative-convergence,paper-digest,paper-pick,reddit-digest,security-digest,telegram-digest
Dev & Code (dev, 18)auto-merge,auto-workflow,changelog,code-health,ecosystem-pulse,feature,fork-fleet,github-monitor,github-trending,inbox-triage,issue-triage,pr-review,pr-triage,repo-scanner,search-skill,star-milestone,vuln-tracker,workflow-audit
Crypto & Markets (markets, 16)base-mcp,ctrl,defi-overview,fear-divergence,monitor-polymarket,narrative-tracker,onchain-monitor,picks-tracker,pm-manipulation,pm-pulse,price-alert,token-movers,token-pick,treasury-info,unlock-monitor,x402-monitor
Onchain Security (hound, 4)investigation-report,tx-explain,vigil,wallet-profile
Social & Writing (social, 8)farcaster-digest,mention-radar,product-hunt,reply-maker,schedule-ads,soul-builder,syndicate-article,write-tweet
Productivity (productivity, 11)action-converter,deal-flow,followup-patrol,goal-tracker,idea-pipeline,note-taking,reg-monitor,send-email,shiplog,strategy-builder,tool-builder
Agent Ops (agent-ops, 12)api-health,batch-health,capabilities-map,contributor-leaderboard,fork-events,fork-health,memory-flush,operator-scorecard,product-pulse,skill-gap,skill-scan,skill-update
Lab (lab, 0)(empty)

Authoritative source: skills.json + packs.json, the dashboard Packs view, or ./add-skill aaronjmars/aeon --list. A skill's pack comes from its category: frontmatter - see docs/skill-packs.md. Dependency graph: docs/skill-graph.md - a visual map of how skills connect.

It heals itself

Anatomy of a skill run

Every skill output is automatically scored 1–5 by Haiku after each run. Scores and failure flags (api_error, stale_data, rate_limited) are tracked per skill in memory/skill-health/ with a rolling 30-run history. When something breaks, the loop fixes it without you:

Self-healing architecture

  1. heartbeat (3x daily) - detects failed, stuck, or chronically broken skills
  2. skill-health - audits quality scores and flags API degradation patterns
  3. skill-evals - assertion-based output tests to catch regressions
  4. skill-repair - diagnoses and patches failing skills automatically
  5. self-improve - evolves prompts, config, and workflows based on performance

Health skills file issues, repair skills close them. heartbeat is the only skill enabled by default: nothing to report β†’ silent; something needs attention β†’ one notification. Deep dive: docs/CORE.md.

Votable health (on by default β€” set the repo variable HEALTH_ISSUES=0 to turn it off): when a skill regresses (a Haiku score of 1–2 or a failure flag), the loop opens or comments on a per-skill GitHub Issue titled health: <skill>; clean runs stay silent, so there's no issue spam. πŸ‘/πŸ‘Ž the issue and self-improve / skill-repair triage the most-voted, worst-scoring skills first β€” a visible, conflict-free repair queue you can steer.

It replicates

Aeon can spawn and manage copies of itself. spawn-instance forks the repo into a new specialized instance (var: "crypto-tracker: monitor DeFi protocols"), selects relevant skills, and registers it in memory/instances.json - no secrets propagated, billing stays isolated. fleet-control health-checks and dispatches across instances; fleet-scorecard tracks fleet economics.

It ships real work

external-feature ships code to watched repos unprompted. deploy-prototype generates and deploys live web apps to Vercel. vuln-scanner finds real vulnerabilities and discloses them responsibly. autoresearch evolves existing skills through scored variations, and create-skill generates new ones from a sentence.

Add more skills

./add-skill aaronjmars/aeon --list        # browse the built-in catalog
./add-skill BankrBot/skills bankr hydrex  # install from any GitHub repo
./add-skill BankrBot/skills --all         # install everything from a repo
./export-skill token-movers               # package one for standalone use

Installed skills land in skills/ and are added to aeon.yml disabled - flip enabled: true to activate. You can also:

  • Build your own from skill-templates/: ./new-from-template <template> <skill-name> --category <pack> - the --category slots it into a pack (or set category: in the SKILL.md frontmatter). See docs/skill-packs.md.
  • Label any GitHub issue ai-build - Claude reads the issue, implements it, and opens a PR
  • Install community packs - see Community skill packs

Why "the most autonomous"?

Most agent tools put you in the driver's seat - approve this tool call, review this diff, confirm this action. Aeon is built for the work you want done while you're not there: briefings, market monitoring, PR reviews, research digests, security scans.

AeonClaude CodeHermesOpenClaw
Runs unattended on a scheduleYesNoYesNo
Self-heals when skills failYesNoNoNo
Monitors its own output qualityYesNoNoNo
Persistent memory across runsYesNoLimitedNo
Reactive triggers (auto-responds to conditions)YesNoNoNo
Fixes its own broken skillsYesNoNoNo
Zero infrastructureYes (GitHub Actions)LocalSelf-hostedSelf-hosted
Reasons about tasksYesYesYesYes

Other agents are interactive tools you use. Aeon is an autonomous system you configure and walk away from. It decides when to run, what to check, and when to bother you. You still want Claude Code for writing code interactively - but for the 90% of recurring tasks that don't need you in the loop, the most autonomous agent is the one that never asks.

For a comparison against the broader ecosystem (AutoGen, CrewAI, n8n, LangGraph) and active forks in production, see SHOWCASE.md. For products built on Aeon, see ECOSYSTEM.md.

Autonomy spectrum


Configure

Aeon never sleeps - a full day of autonomous runs

Schedules

All scheduling lives in aeon.yml:

skills:
  article:
    enabled: true               # flip to activate
    schedule: "0 8 * * *"       # daily at 8am UTC
  digest:
    enabled: true
    schedule: "0 14 * * *"
    var: "solana"               # topic for this skill

Standard cron format, all times UTC. Supports *, */N, exact values, comma lists. Order matters - the scheduler picks the first matching skill, so put day-specific skills before daily ones and heartbeat last.

The var field

Every skill accepts a single var - a universal input each skill interprets its own way:

Skill typeWhat var doesExample
Research & contentSets the topicvar: "rust" β†’ digest about Rust
Dev & codeNarrows to a repovar: "owner/repo" β†’ only review that repo's PRs
CryptoFocuses on a token/walletvar: "solana" β†’ only check SOL price
ProductivitySets the focus areavar: "shipping v2" β†’ priority brief emphasizes v2

Empty var = the skill's default behavior (scan everything, auto-pick topics). Set it from the dashboard or pass it when triggering manually.

Models

The default model for all skills is set in aeon.yml (or from the dashboard header dropdown):

model: claude-opus-4-8

Options: claude-opus-4-8, claude-fable-5, claude-opus-4-7, claude-sonnet-5, claude-sonnet-4-6, claude-haiku-4-5-20251001. Per-run overrides are available via workflow dispatch, and individual skills can override to optimize cost:

skills:
  token-movers: { enabled: true, schedule: "30 12 * * *", model: "claude-sonnet-4-6" }

Authentication

Set one of these - not both:

SecretWhat it isBilling
CLAUDE_CODE_OAUTH_TOKENOAuth token from your Claude Pro/Max subscriptionIncluded in plan
ANTHROPIC_API_KEYAPI key from console.anthropic.comPay per token
claude setup-token   # opens browser β†’ prints sk-ant-oat01-... (valid 1 year)

The dashboard's Authenticate modal handles both - and routes gateway keys (Bankr bk_…, OpenRouter sk-or-…, Surplus inf_…, or Venice/UsePod via the dropdown) automatically (see LLM Gateways).

Notifications

Set the secret β†’ channel activates. No code changes needed.

ChannelOutboundInbound
TelegramTELEGRAM_BOT_TOKEN + TELEGRAM_CHAT_IDSame
DiscordDISCORD_WEBHOOK_URLDISCORD_BOT_TOKEN + DISCORD_CHANNEL_ID
SlackSLACK_WEBHOOK_URLSLACK_BOT_TOKEN + SLACK_CHANNEL_ID
EmailSENDGRID_API_KEY + NOTIFY_EMAIL_TO-

Telegram: Create a bot with @BotFather β†’ get token + chat ID. Then run the Setup Telegram Commands workflow (Actions tab) to get slash-command autocomplete (/skillname dispatches instantly, no LLM), inline snooze/mute/re-run buttons on notifications, deep links, and stateless follow-up questions. Full guide: docs/telegram-commands.md. Discord: Outbound: Channel β†’ Integrations β†’ Webhooks β†’ Create. Inbound: discord.com/developers β†’ bot β†’ add channels:history scope β†’ copy token + channel ID. Slack: api.slack.com β†’ Create App β†’ Incoming Webhooks β†’ install β†’ copy URL. Inbound: add channels:history, reactions:write scopes β†’ copy bot token + channel ID. Email: sendgrid.com/settings/api_keys β†’ Create API Key (Mail Send permission) β†’ add as SENDGRID_API_KEY, set NOTIFY_EMAIL_TO. Optional repo variables: NOTIFY_EMAIL_FROM (default aeon@notifications.aeon.bot), NOTIFY_EMAIL_SUBJECT_PREFIX (default [Aeon]).

Restrict who can command the agent (inbound): Telegram is already scoped to a single TELEGRAM_CHAT_ID. For Discord and Slack, set the optional repo variables DISCORD_ALLOWED_AUTHOR_ID / SLACK_ALLOWED_USER_ID (or same-named secrets) to the authorized sender's user ID β€” inbound messages from anyone else in the channel are then ignored. Leaving them unset processes commands from any non-bot member of the channel, so set them whenever the channel isn't private to you.

Want ~1s Telegram replies instead of up-to-5-min polling? See Telegram instant mode.

API keys per skill

Skills that call third-party APIs declare their credentials in a requires: frontmatter list, so the dashboard shows which skill needs which key:

requires: [XAI_API_KEY, COINGECKO_API_KEY?]   # bare = required Β· `?` = works better with

The dashboard surfaces this as an API keys panel on each skill (set/unset status, inline "Set" button), a ⚠ flag when an enabled skill is missing a required key, and a "used by" index under each key in Settings β†’ Access Keys. Skills can likewise declare MCP servers with an mcp: list (mcp: [base]) - same two tiers, shown as a per-skill MCP servers panel with install state. Convention details: skill-templates/TEMPLATE.md.


Advanced

Everything below is optional - Aeon runs fine without any of it.

Capability tiers (read-only skills)

A skill declares its write blast-radius in SKILL.md frontmatter:

mode: read-only   # may read the repo, fetch the web, and ./notify β€” but cannot mutate the repo
mode: write       # full access (the default): adds Write / Edit / git / gh / python3

read-only runs the skill with a restricted Claude Code --allowedTools set (Write, Edit, Bash(git:*), Bash(gh:*) are dropped), so a research-and-notify skill physically can't commit, push, edit code, or open a PR. Its legitimate output (memory, .outputs/, articles) is still saved on its behalf by a post-run guard β€” which also reverts any stray code/config a shell redirection slipped through. write is the default and a strict superset. Use read-only for pure read-and-notify skills; keep write for anything that writes code or scratch files. This is the runtime enforcement of the install-time capabilities: hint.

Durable state without the churn

Per-skill execution state (memory/cron-state.json β€” status, success rate, quality) is dual-written by default: each run commits the file and appends an immutable event to a machine-managed, append-only GitHub Issue (aeon:cron-state, kept closed so it never clutters your issue list). Canonical state is a pure fold of that issue's comments, so concurrent runs never race β€” no rewrite, force-push, or rebase-retry. Switch with the repo variable STATE_BACKEND:

STATE_BACKENDBehaviour
unset / dual (default)append to the Issue and commit the file β€” the file stays authoritative, so the Issue path can never stale a reader
issuesappend only; a pre-run materialize step projects the Issue β†’ file so readers are unchanged, and the file is left uncommitted (zero state churn)
filelegacy file-only

Chains record to the same ledger.

Skill chaining

Chain skills so outputs flow between them. Chains run as separate GitHub Actions workflow steps via chain-runner.yml:

chains:
  digest-pipeline:
    schedule: "0 7 * * *"
    on_error: fail-fast       # or: continue
    steps:
      - parallel: [token-movers, hn-digest]  # run concurrently
      - skill: digest                          # runs after parallel group
        consume: [token-movers, hn-digest]   # gets their outputs injected

Each step runs as a separate workflow dispatch; outputs are saved to .outputs/{skill}.md and injected into downstream steps that consume: them. fail-fast aborts on any failure, continue keeps going.

Reactive triggers

Skills with schedule: "reactive" fire on conditions, not cron. The scheduler evaluates triggers after processing cron skills:

reactive:
  skill-repair:
    trigger:
      - { on: "*", when: "consecutive_failures >= 3" }

Scheduler frequency

Edit .github/workflows/messages.yml:

schedule:
  - cron: '*/5 * * * *'    # every 5 min (default)
  - cron: '*/15 * * * *'   # every 15 min (saves Actions minutes)
  - cron: '0 * * * *'      # hourly (most conservative)

Claude only installs and runs when a skill actually matches - non-matching ticks cost ~10s.

MCP servers in skill runs

Let skills call MCP servers (GitHub, a database, a paid API, your own) while they run in GitHub Actions. Opt-in and safe - with no .mcp.json at the repo root, runs are byte-identical to before.

cp .mcp.json.example .mcp.json   # then edit, commit, push

The example ships two working servers - github (uses the runner's built-in GITHUB_TOKEN) and sequential-thinking (no-auth stdio). On the next run, the runner loads .mcp.json and auto-allows every server's tools, so a skill can just say "use the github MCP server to …".

Or skip the file entirely: the dashboard's MCP tab writes .mcp.json for you, lists Featured servers (e.g. Base) for one-click install, and tells you which secret each server needs.

Servers that need a secret - reference it with ${VAR}, never commit the value:

"acme": {
  "type": "http",
  "url": "https://mcp.acme.dev/v1",
  "headers": { "Authorization": "Bearer ${ACME_API_KEY}" }
}

Then just set the secret (dashboard MCP tab inline, Settings β†’ Add Credential, or gh secret set ACME_API_KEY) - the runner auto-resolves any ${VAR} your .mcp.json references from the repo's secrets, with zero workflow editing. If a referenced secret isn't set, the runner skips MCP for that run and logs a warning instead of breaking the skill.

Notes: scope is global (.mcp.json applies to every skill); add "alwaysLoad": true to force a server's tools into context every run; stdio servers run as local processes in the runner, HTTP/SSE servers are reached over the network.

Use Aeon's skills from Claude (MCP)

Aeon skills work outside GitHub Actions too - locally via claude -p -, identical to Actions. API keys are read from your environment or a .env file in the repo root.

Claude (MCP) - every skill appears as an aeon-<name> tool in Claude Desktop and Claude Code:

./add-mcp                    # build and register
./add-mcp --desktop          # also print Claude Desktop config
./add-mcp --uninstall        # remove

Tool naming, the var argument, Claude Desktop config, and a test client are in apps/mcp-server/README.md.

Working client scripts (MCP stdio, Claude Desktop) live in examples/ - each calling a real skill end-to-end. Start with examples/README.md.

Cross-repo access

The built-in GITHUB_TOKEN is scoped to this repo only. For github-monitor, pr-review, issue-triage, and external-feature to work on your other repos, add a GH_GLOBAL personal access token: github.com/settings/tokens β†’ Fine-grained β†’ set repo access β†’ grant Contents, Pull requests, Issues (read/write) β†’ add as GH_GLOBAL secret. Skills use it when available and fall back to GITHUB_TOKEN automatically.

LLM Gateways

Seven AI providers supported: Claude subscription, Anthropic API, OpenRouter, Bankr, UsePod, Venice, Surplus

Aeon can power Claude Code seven ways. Two are direct to Anthropic; the other five route through a gateway. You add a credential in the dashboard's Authenticate modal - paste it and the provider is detected from its prefix (or picked from the dropdown) and saved as the secret below.

Routing is automatic. aeon.yml ships gateway: { provider: auto }, and each run resolves the live provider from whichever secrets are set, in priority order - so adding or removing a key changes routing with no re-config:

claude (CLAUDE_CODE_OAUTH_TOKEN) β†’ anthropic (ANTHROPIC_API_KEY) β†’
openrouter β†’ bankr β†’ usepod β†’ venice β†’ surplus β†’ direct (fallback)

It runs as a cascade: the highest-priority provider whose key is set goes first, and on any failure (no credits, rate limit, outage, dud response) the run automatically falls over to the next provider whose key is set - so a dead provider degrades gracefully instead of failing the run, and it only errors out if every provider fails. The log prints Routing attempt via '<provider>' per hop (and ran via fallback provider … when it recovers).

Override the order with the repo variable GATEWAY_ORDER (space-separated names), or pin a single provider (which disables failover) by setting gateway.provider to direct/bankr/openrouter/usepod/venice/surplus explicitly.

Direct (provider: direct) - the official Anthropic API, no middleman:

ModeCredentialNotes
Claude subscriptionCLAUDE_CODE_OAUTH_TOKENYour Claude Pro/Max plan - Connect in the modal runs the OAuth flow; no per-token billing
Anthropic APIANTHROPIC_API_KEYPay-as-you-go API key (or any Anthropic-compatible endpoint via ANTHROPIC_BASE_URL)

Gateways - route Claude through an alternative provider (cheaper Opus, crypto-settled, privacy-first…). Keys with a distinctive prefix are detected automatically; UsePod and Venice have no prefix, so pick them in the dropdown:

GatewaySecretNotes
BankrBANKR_LLM_KEYDiscounted Opus access
OpenRouterOPENROUTER_API_KEYAnthropic-native passthrough; lowest-risk option
UsePodUSEPOD_TOKENSolana marketplace; token is embedded in the base URL, keep it secret
VeniceVENICE_API_KEYPrivacy-first; OpenAI-compatible, bridged via a per-run claude-code-router sidecar. Point it at any Venice-compatible endpoint with the VENICE_BASE_URL repo variable
SurplusSURPLUS_API_KEYRouted via The Bridge; settles in USDC on Base - fund the wallet + approve() once before use

Adding a gateway

A gateway is wired through five files, all following the existing pattern - so copy an entry of the same tier. There are two: native (the provider already speaks the Anthropic API - just point ANTHROPIC_BASE_URL at it, like Bankr/OpenRouter/UsePod) and sidecar (OpenAI-compatible - bridged per run by a claude-code-router sidecar, like Venice/Surplus).

  1. apps/dashboard/lib/types.ts - add the slug to the GatewayProvider union and the GATEWAY_PROVIDERS array.
  2. apps/dashboard/lib/auth-provider.mjs - add slug: { label, secretName, prefixes } (empty prefixes: [] = dropdown-only, no auto-detect).
  3. apps/dashboard/app/api/secrets/route.ts - list the secret in BUILTIN_SECRETS and map SECRET_NAME β†’ slug in GATEWAY_SECRETS so the dashboard recognises it as a gateway key (and keeps aeon.yml on auto).
  4. scripts/llm-gateway.sh - add a case branch (a native provider exports ANTHROPIC_BASE_URL + the auth token; a sidecar provider calls start_ccr_sidecar <slug> <openai-url> <key> <model>), and add the slug + its secret to the auto-resolver's default order so it's picked up automatically.
  5. .github/workflows/aeon.yml - pass the new secret (and any *_MODEL override variables) into the run's env: (also messages.yml), so the resolver can see it.

Then add a row to the gateway table above. To verify the full loop: paste a key in the dashboard (prefix should auto-detect, or pick it from the dropdown) and run any skill - the workflow log prints ::notice:: gateway=auto resolved to <slug> followed by ::notice:: Routing through ….

Strategy

STRATEGY.md is Aeon's north-star - your overarching goal, top priorities, audience, and hard constraints. It's imported into CLAUDE.md, so it rides along in the context of every skill run: when a choice isn't otherwise determined, the strategy breaks the tie ("showcase real output over new features", "depth over breadth"). Keep it tight (it costs tokens every run) and specific (a vague strategy can't break a tie).

Set it three ways from the dashboard's Strategy tab:

  • Write it - edit STRATEGY.md inline; Save commits and pushes automatically.
  • Templates - start from a blank scaffold or one of five archetypes (Indie SaaS, Open-source maintainer, Researcher/Writer, Crypto/Agent, Creator) and fill in the bracketed bits.
  • Build it - give the strategy-builder skill a one-line goal (and optionally a repo or links). It reads your brief plus the repo README and memory/MEMORY.md, then drafts a tight north-star / priorities / audience / constraints strategy and commits it. No API key needed; runs as a GitHub Action, so hit Pull when it finishes.

Soul

By default Aeon has no personality. The Soul tab gives it one - soul/SOUL.md (identity, worldview, opinions) and soul/STYLE.md (voice, vocabulary) are read on every run, so notifications and content sound like you. Four ways to set it:

  • Write it - edit SOUL.md / STYLE.md inline; Save commits and pushes.
  • Templates - start from a blank scaffold or an archetype (Founder, Researcher, Creator).
  • Install a real soul - one click pulls a complete example (Karpathy, Garry Tan, Steipete, Vivian Balakrishnan) from the soul.md gallery into your soul/.
  • Build from your handle - give the soul-builder skill any of an X handle, your full name (web search), or links (LinkedIn, site, blog, GitHub). It reads them and drafts SOUL.md + STYLE.md + voice examples in your style. Set XAI_API_KEY for the richest read of your actual X timeline - it falls back to web search without it.

Prefer files? Fork soul.md, fill in SOUL.md / STYLE.md / examples/good-outputs.md (10–20 calibration samples), and drop them under soul/ - same result. The ## Voice section of CLAUDE.md reads them automatically, so identity propagates to every skill.

Quality check: soul files work when they're specific enough to be wrong. "I think most AI safety discourse is galaxy-brained cope" is useful; "I have nuanced views on AI safety" is not.

Publishing (GitHub Pages & RSS)

Aeon publishes articles to a GitHub Pages gallery and an RSS feed.

  • Pages: Settings β†’ Pages β†’ source Deploy from a branch, branch main, folder /docs. The site lives at https://<username>.github.io/aeon; the update-gallery skill keeps it in sync.
  • RSS: Subscribe at https://raw.githubusercontent.com/<owner>/<repo>/main/articles/feed.xml - regenerated after each content skill runs.

Telegram instant mode

Replies aren't instant by default - Aeon runs on GitHub Actions and polls Telegram every 5 minutes. That's by design: it's built for autonomous background work, not real-time chat. For ~1-second replies, deploy the self-contained Cloudflare Worker in apps/webhook/ into your own Cloudflare account (no shared infra, no credential custody) - a one-time setup of about 5 minutes:

Deploy to Cloudflare

The deploy wizard prompts for the four variables (TELEGRAM_BOT_TOKEN, TELEGRAM_CHAT_ID, GITHUB_REPO, GITHUB_TOKEN) and stores them as encrypted Worker secrets, so the Worker comes out configured - then point your bot at it with setWebhook. The dashboard walks through all three steps with one-click webhook registration: Settings β†’ Credentials β†’ Telegram β†’ ⚑ Instant replies. The button needs a public source repo - on a private fork, mirror apps/webhook/ to a small public repo and point the button URL there.

Full guide: apps/webhook/README.md. The poller detects an active webhook (getWebhookInfo) and skips Telegram polling automatically, so the two never conflict. The Worker also routes slash commands, button taps, and reply follow-ups (see docs/telegram-commands.md) β€” redeploy it after updating to pick those up.

Remote dashboard access

The dashboard's /api/* routes drive gh workflow run and read/write repo secrets, so they're gated to loopback callers by default - no remote callers, no DNS-rebinding from a malicious page. To reach the dashboard from another machine or over a tunnel (Tailscale, ngrok, reverse proxy):

Env varBehaviour
AEON_DASHBOARD_ALLOWED_HOSTS=aeon.local,box.tail-xxx.ts.netExtends the loopback allowlist by hostnames (comma-separated, case- and port-insensitive)
AEON_DASHBOARD_ALLOW_ANY_HOST=1Disables Host-header checking entirely. Only for a trusted reverse proxy that terminates Host upstream - loudly insecure otherwise

The gate also rejects state-changing requests whose Origin isn't allowlisted, so a malicious page can't drive /api/secrets via a no-cors POST. Code: apps/dashboard/middleware.ts + apps/dashboard/lib/security/api-gate.ts.

Fleet Watcher (authorization layer)

Add inline ALLOW/BLOCK authorization in front of every skill run. Each workflow asks your self-hosted Fleet Watcher control plane "is this allowed?" before Claude starts and reports the outcome after. BLOCK = workflow exits non-zero, Claude never runs, audit ref recorded.

Already wired into .github/workflows/aeon.yml as two opt-in steps. To enable: stand up Fleet Watcher, mint a token via POST /api/aeon/register, and add two secrets - FLEET_ENDPOINT (base URL) and FLEET_TOKEN (the agnt_… token). Define your red lines (per-skill caps, counterparty allowlists, dangerous-string patterns) in its dashboard.

If the secrets aren't set, both steps no-op - fully backward compatible. If Fleet is unreachable when they are set, the preflight fails closed (skill doesn't run); the postflight always runs so blocked skills are still recorded.

Community skill packs

Aeon Framework ecosystem map

Aeon's built-in (first-party) packs - Core, Fleet, Research, Dev, Markets, Hound, Social, Productivity, Agent Ops - live in this repo and are enabled from the dashboard's Packs view; see docs/skill-packs.md. The packs below are community collections in their own repos.

Third-party skill collections in their own repos, installable as one bundle - two ways:

One-click (dashboard). Open the Packs view, scroll to Community packs, and hit Install pack on any card. That runs the security-scanned installer in the background and ships an auto-merging PR, so the skills land on main (and show up across the dashboard) with no manual step. Want to merge it yourself instead? The card's copy button hands you the exact CLI command below.

CLI.

./install-skill-pack baseddevoloper/aeon-skill-pack-vvvkernel
./install-skill-pack --list      # browse the registry (skill-packs.json)

Either way the installer reads the pack's skills-pack.json manifest, runs the security scanner on each SKILL.md, and copies approved skills into skills/ - disabled in aeon.yml (nothing runs until you set the pack's secrets and flip enabled: true), with provenance recorded in skills.lock. Full schema and trust model: docs/community-skill-packs.md.

PackSkillsDescription
aeon-skill-pack-vvvkernel9Venice AI inference via VVVKernel - onchain, audit, growth, narrative, image gen, monitoring
luca-aeon-skills4Financial intelligence via x402Books AI - wallet scanning, treasury monitoring, financial reports, and agent registry on Base
zer0-skill-pack6Polymarket intelligence - daily thesis, mispricing scanner, contrarian fades, narrative-vs-markets, paper-trade PnL journal, alpha comment curator
gitbounty-skill-pack1Bounty hunting on the gitlawb network via gitbounty - discover open bounties, scout the best fit with the gitbounty LLM scout, draft a solution plan (read-only)
aeon-skills2Two-model-consensus PR review (Opus 4.7 + GPT-5) - channel drawdown for installed repos, x402 pay-per-call for public repos
careful-finance-aeon-skill-pack1Careful Finance market intelligence - scan DeFi yield and perpetual-futures opportunities, then print or publish a conservative hourly snapshot
aeon-skill-pack-liquidpad4Track LiquidPad on Base - burn cycle alerts, new token launches with onchain provenance, daily protocol digest, and fee accrual tracking
aeon-skill-pack-mythosforge5Read-only MythosForge monitoring - ops/backlog/jury/payout health, proof-of-creation integrity on Base, theme/round guard against silent relabels, jury-drift detection, and live gallery/proof-page QA
demo-pack1Holographic demo skill - proves the Sparkleware registry install pipeline works
aeon-pulse1Daily activity summary for the Aeon framework - recent commits, releases, and open issues
registry-watch1Daily digest of new packs added to the Sparkleware registry - discover community skills without manually browsing
arxiv-digest1Daily digest of newest AI / autonomous-agent papers on arXiv - top submissions in cs.AI, cs.LG, cs.MA
hn-top1Daily digest of HackerNews top stories - dev / startup / AI conversation in one screen
eth-gas-watch1Ethereum gas-price status check on a schedule - flags cheap windows for batching on-chain ops
morning-briefing1Daily morning briefing - date, day-of-week, current weather, and a sparkly closer
aeon-skill-pack-noelclaw2Persistent versioned memory and multi-agent swarm coordination - save typed artifacts to Noel Vault and manage shared agent session state across runs
signa (--path aeon-skills)20Full SIGNA suite - wallet-signed cross-platform agent messaging, multi-agent broadcast and delegate, encrypted rooms + ERC-8004 trust gate, plus Bankr resolver / launches, gitlawb, MiroShark, and x402 receipts + bounded spend mandates (a human grants a signed budget, the agent spends within it and asks for more)
aeon-skill-pack-mneme8Mneme as Aeon's persistent memory layer - vector recall across runs, entity/relation graph, live Base chain streams, async LLM "dream" reflections, and schema-aware /chat. One MNEME_API_KEY, zero infra.
Hunch Prediction Markets (--path aeon-skill-pack)3Crowd-conviction signal, market discovery, and x402 betting on PlayHunch - onchain prediction markets on Base. Unlike monitor-only packs, hunch-bet places real positions (simulate-by-default, $1-$10, USDC payout + onchain proof)
clawhunter-skills2Aggregates and AI-triages crypto bounties across venues (Pump Fun GO, Atelier, EarnFi, tiny.place) and matches each to your agent with a plan to win β€” plus paid research and create tools (voice tones, logo-grounded images, Kling video direction, web + X research). Paid tools settle via x402 (USDC on Solana or Base).
Polymarket Trader by Simmer (--path aeon-skill-pack)3Signal, discovery, and real position-taking on Polymarket - the deepest prediction-market venue - powered by Simmer. Unlike monitor-only packs, polymarket-trade places actual orders (simulate-by-default, live opt-in, bounded)
Charon for AEON (--path skills/aeon)2Repo-local policy enforcement for AEON runs, with guided setup and natural-language policy management

To list a pack here, open a PR adding a row. Guidelines:

  • The pack must be in its own public repo with a clear license and a per-skill SKILL.md.
  • Skills should follow the conventions in add-skill and the core catalog - no monkey-patching of Aeon internals, no skill that depends on private endpoints.
  • Add a skills-pack.json manifest at the pack root so install-skill-pack knows which skills the pack ships (see docs for the schema).
  • The README row should link to the repo, name the skill count, and one-line what the pack is for.
  • In the same PR, add a matching entry to skill-packs.json - the machine-readable mirror of this table (registry schema in the docs).

Two-repo strategy

This repo is a public template. Run your own instance as a private fork so memory, articles, and API keys stay private:

git remote add upstream https://github.com/aaronjmars/aeon.git
git fetch upstream
git merge upstream/main --no-edit

Your memory/, articles/, and personal config won't conflict - they're in files that don't exist in the template.

GitHub Actions cost

Basically free - runs on your existing Claude subscription and a free GitHub account

ScenarioCost
No skill matched (most ticks)~10s - checkout + bash + exit
Skill runs2–10 min depending on complexity
Heartbeat (nothing found)~2 min
Public repoUnlimited free minutes

Private repos: Free plan = 2,000 min/mo, Pro/Team = 3,000 + $0.008/min overage. To reduce usage: switch to */15 or hourly cron, disable unused skills, keep the repo public. Every run logs token usage to memory/token-usage.csv; the cost-report skill generates a cost breakdown by skill and model.

Project structure

The Stack

CLAUDE.md                ← agent identity (auto-loaded by Claude Code)
STRATEGY.md              ← north-star: goal, priorities, audience, constraints (rides along every run)
aeon.yml                 ← skill schedules, chains, reactive triggers, enabled flags
skills.json              ← machine-readable skill catalog (102 skills, category per skill)
packs.config.json        ← first-party pack definitions (core allowlist + pack list)
packs.json               ← generated pack catalog the dashboard reads (10 packs)
./aeon                   ← launch the local dashboard (Next.js on port 5555)
./onboard                ← validate the fork's setup (secrets, workflows, channels)
./notify                 ← multi-channel notifications (Telegram, Discord, Slack, Email, json-render)
./notify-jsonrender      ← convert skill output to dashboard feed cards via Haiku
./add-skill              ← import skills from GitHub repos (with security scanning)
./add-mcp                ← register Aeon as an MCP server for Claude Desktop/Code
./export-skill           ← package skills for standalone distribution
./generate-skills-json   ← regenerate skills.json from SKILL.md files
./generate-packs-json    ← regenerate packs.json from packs.config.json + skills.json
./new-from-template      ← scaffold a skill from a template (--category sets its pack)
docs/                    ← GitHub Pages site (articles, activity log, memory)
soul/                    ← optional identity files (SOUL.md, STYLE.md, examples/, data/)
skills/                  ← each skill is a SKILL.md prompt file (102 total; `category:` = its pack)
workflow-templates/      ← GitHub Agentic Workflow templates (.md)
skill-templates/         ← templates for building your own skills
apps/                    ← standalone sub-projects, each with its own package.json
  dashboard/             ← local web UI (Next.js + json-render feed)
  mcp-server/            ← MCP server - exposes skills as Claude tools
  webhook/               ← Telegram instant-mode Cloudflare Worker (~1s delivery)
memory/
  MEMORY.md              ← goals, active topics, pointers
  cron-state.json        ← per-skill execution metrics (status, success rate, quality)
  skill-health/          ← rolling quality scores per skill (last 30 runs)
  token-usage.csv        ← token cost tracking per run
  issues/                ← structured issue tracker for skill failures
  topics/                ← detailed notes by topic
  logs/                  ← daily activity logs (YYYY-MM-DD.md)
.outputs/                ← skill chain outputs (passed between chained steps)
scripts/
  prefetch-xai.sh        ← pre-fetch X/Grok API data outside sandbox
  postprocess-replicate.sh ← generate images via Replicate after Claude runs
  skill-runs             ← audit recent GitHub Actions skill runs
  sync-site-data.sh      ← sync memory/logs to docs site data
.github/workflows/
  aeon.yml               ← skill runner (workflow_dispatch, issues, quality scoring)
  chain-runner.yml       ← skill chain executor (parallel + sequential pipelines)
  messages.yml           ← cron scheduler + message polling (Telegram/Discord/Slack)

FAQ

What is Aeon?

Aeon is an AI agent system that runs unattended on GitHub Actions, self-heals when skills fail, and monitors its own output quality. Configure once, walk away - it handles recurring tasks like briefings, market monitoring, PR reviews, and research digests.

Can I create custom skills?

Yes. Bootstrap from skill-templates/ (./new-from-template <template> <skill-name> --var KEY=VALUE...), describe one to the create-skill skill, or label a GitHub issue ai-build and let Aeon build it.

Troubleshooting

  • Dashboard not loading - make sure ./aeon is running and check http://localhost:5555.
  • Skills not executing - run ./onboard --remote to verify setup, check GitHub Actions workflow status.
  • Notifications not working - verify channel secrets in the dashboard (Telegram/Discord/Slack tokens).
  • Self-healing not working - enable skill-repair and skill-health, check memory/ state.

Need more help?

Check the docs/ directory, run ./onboard for setup verification, or open an issue on GitHub.


Star History

Star History Chart

Support the project : 0xbf8e8f0e8866a7052f948c16508644347c57aba3