install-skill

install-skill is a skill for Claude Code, Codex from aeonfun/aeon. It costs 26 tokens per session (2,241 once invoked), scanned A, original, MIT.

An installer that copies a community skill pack from a GitHub repository into your project and opens a pull request. A pull request is a proposed code change that can be checked before it is merged.

In plain words
What is it for?
Use it to install all or selected skills from a repository, optionally choose a branch, and deliver the changes through a scanned, disabled-by-default pull request.
Why use it?
It avoids direct changes to the main branch while still allowing the approved installation to merge automatically after the project’s checks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

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.

agentmods
npx agentmods add skills/aeonfun/aeon/install-skill
Any agent
npx skills add aeonfun/aeon --skill install-skill
Clone the repo
git clone --depth 1 https://github.com/aeonfun/aeon

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 install-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/aeonfun/aeon/install-skill.svg)](https://agentmods.dev/skills/aeonfun/aeon/install-skill)
Your own site
<a href="https://agentmods.dev/skills/aeonfun/aeon/install-skill"><img src="https://agentmods.dev/badge/skills/aeonfun/aeon/install-skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,241 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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.00026 $0.02241
Opus 5 $0.00013 $0.01120
Sonnet 5 $0.00005 $0.00448
Haiku 4.5 $0.00003 $0.00224

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

Security

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:
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/install-skill/SKILL.md · 120 lines

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 pack
  • liquidpadbot/aeon-skill-pack-liquidpad liquidpad-burn-monitor — install one skill from it
  • mnemedb/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:

  1. Downloads the repo tarball and reads its skills-pack.json manifest (per-skill path, schedule, default_enabled, secrets_required, capabilities). No manifest → it falls back to scanning skills/*/SKILL.md.
  2. Security-scans every skill from an untrusted source via scripts/skill-scan.sh. Sources listed in skills/security/trusted-sources.txt skip the deep scan (format checks still run). In CI there is no TTY, so a HIGH-severity finding blocks that skill unless --force is passed — this is the safety gate, leave it on.
  3. Copies each skill into skills/<slug>/, then updates aeon.yml (added enabled: false so nothing runs until the operator turns it on), skills.json, and records provenance in skills.lock.

Your job is to drive that script, regenerate the catalog, and wrap the result in a reviewable PR.

Read the full file on GitHub · 120 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. yesterday First seen · 120 lines · 26 tokens per session scan A 836ad1056f44

Subscribe to this mod's changes

install-skill is a skill published in the GitHub repository aeonfun/aeon (716 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). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

git-advanced-workflows

Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.

wshobson/agents · 54 tokens

workflow-patterns

Use this skill when implementing tasks according to Conductor's TDD workflow, handling phase checkpoints, managing git commits for tasks, or understanding the verification protocol.

wshobson/agents · 35 tokens

block-no-verify-hook

Configure a PreToolUse hook to prevent AI agents from skipping git pre-commit hooks with --no-verify and other bypass flags. Use when setting up Claude Code projects that enforce commit quality gates.

wshobson/agents · 46 tokens

security-pipeline

Use when security verification is needed - pre-commit security checks, vulnerability scanning, STRIDE threat analysis. Integrates with /handoff-verify --security and /commit-push-pr. CWE Top 25 based.

sangrokjung/claude-forge · 48 tokens

repo-stats-autoupdate

Keeps README badge + inline counts in sync with the real number of skills, agents, graph nodes/edges, communities, converted pipelines, and test inventory. Runs automatically on every commit via a git pre-commit hook. Use when the README drifts from reality or before publishing a release.

stevesolun/ctx · 66 tokens

caveman-commit

Ultra-compressed commit message generator. Cuts noise from commit messages while preserving intent and reasoning. Conventional Commits format. Subject ≤50 chars, body only when "why" isn't obvious. Use when user says "write a commit", "commit message", "generate commit", "/commit", or invokes /caveman-commit.…

stevesolun/ctx · 79 tokens