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.
npx skills add aaronjmars/aeon-agent --skill install-skillgit clone --depth 1 https://github.com/aaronjmars/aeon-agentWrote 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.
[](https://agentmods.dev/skills/aaronjmars/aeon-agent/install-skill)<a href="https://agentmods.dev/skills/aaronjmars/aeon-agent/install-skill"><img src="https://agentmods.dev/badge/skills/aaronjmars/aeon-agent/install-skill.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00026 | $0.02241 |
| Opus 5 | $0.00013 | $0.01120 |
| Sonnet 5 | $0.00005 | $0.00448 |
| Haiku 4.5 | $0.00003 | $0.00224 |
Grade A, and why
install-skill scanned grade A with 1 finding 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.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
`bin/install-skill-pack` fetches the pack tarball over the network (curl to `codeload.github.com`). `curl` reaches the network fine — there is no network sandbox. If the fetch still fails: This is a copy
100% identical to install-skill — 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.
How it starts
The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.
${var} — The community pack to install:
owner/repo, optionally followed by specific skill slugs to install only a subset, and optional flags. Required. Examples:
AntFleet/aeon-skills— install the whole packliquidpadbot/aeon-skill-pack-liquidpad liquidpad-burn-monitor— install one skill from itmnemedb/aeon-skill-pack-mneme --branch develop— install from a non-default branch
If ${var} is empty, exit INSTALL_SKILL_NO_VAR:
./notify "install-skill aborted: var empty — pass a pack repo e.g. \"owner/repo\" (optionally + skill slugs)"
Then stop.
Today is ${today}. Your task is to install the community skill pack named in ${var} into this fork and ship it as a PR that auto-merges — so the skills land on main (and show up in the dashboard) with no manual step. Never commit directly to main: the change still flows through a reviewable, CI-gated PR — it just merges itself. This is the dashboard "Install" button's backend: the operator clicked it on a Community Pack card, so be fast, safe, and honest about what landed. The safety gate is real but unchanged: every skill is security-scanned and lands disabled, so nothing executes until the operator sets secrets and flips enabled: true.
How installation works (so you can explain it and trust the output)
The repo already ships a hardened installer, bin/install-skill-pack, which is the single source of truth — do not reimplement it. Given owner/repo it:
- Downloads the repo tarball and reads its
skills-pack.jsonmanifest (per-skillpath,schedule,default_enabled,secrets_required,capabilities). No manifest → it falls back to scanningskills/*/SKILL.md. - Security-scans every skill from an untrusted source via
scripts/skill-scan.sh. Sources listed inskills/security/trusted-sources.txtskip the deep scan (format checks still run). In CI there is no TTY, so a HIGH-severity finding blocks that skill unless--forceis passed — this is the safety gate, leave it on. - Copies each skill into
skills/<slug>/, then updatesaeon.yml(addedenabled: falseso nothing runs until the operator turns it on),skills.json, and records provenance inskills.lock.
Your job is to drive that script, regenerate the catalog, and wrap the result in a reviewable PR.
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.
- yesterday First seen · 120 lines · 26 tokens per session scan A 836ad1056f44
install-skill is a skill published in the GitHub repository aaronjmars/aeon-agent (11 stars, last pushed today), licensed MIT. It adds 26 tokens to every session and 2,241 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to install-skill, differing in 0 lines, and is treated as a copy.
Other skills, from other repositories
prowler-commit
Creates professional git commits following conventional-commits format. Trigger: When creating commits, after completing code changes, when user asks to commit.
gh-auth-isolation
Safely manage multiple GitHub identities (EMU + personal) in agent workflows.
comet-github
A routing guide for Comet-related GitHub work. It directs requests about pull requests, issues, CI failures, ideas, and fixes to the appropriate review or implementation process.
github-skill
Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.
codex-autoresearch
Run autonomous, measurable experiments in a Git repository: change one hypothesis, verify a numeric metric, keep improvements, and revert failures. Use when the user wants Codex to keep iterating toward a numeric target in the foreground or as a detached background run. Do not use for ordinary one-shot coding…
changelog-composer
Generates structured changelogs and release notes from git history and PRs, classifying breaking changes, features, fixes, performance, docs. Triggers on: "generate changelog", "write release notes", "what changed since", "prepare release", "release notes for", "diff since tag".