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 agentmods add instructions/millionco/agent-install/agents-mdgit clone --depth 1 https://github.com/millionco/agent-installWhat 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 | $0.01170 | $0.01170 |
| Opus 5 | $0.00585 | $0.00585 |
| Sonnet 5 | $0.00234 | $0.00234 |
| Haiku 4.5 | $0.00117 | $0.00117 |
Grade A, and why
agent-install AGENTS.md 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 2d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.
General Rules
- MUST: Use @antfu/ni. Use
nito install,nr SCRIPT_NAMEto run.nunto uninstall. - MUST: Use TypeScript interfaces over types.
- MUST: Keep all types in the global scope.
- MUST: Use arrow functions over function declarations.
- MUST: Default to NO comments. Only add a comment when the "why" is truly non-obvious — browser quirks, platform bugs, performance tradeoffs, fragile internal patching, or counter-intuitive design decisions. Never add comments that restate what the code does or what a well-named function/variable already conveys.
- MUST: Use kebab-case for files.
- MUST: Use descriptive names for variables (avoid shorthands, or 1-2 character names).
- MUST: Do not type cast (
as) unless absolutely necessary. - MUST: Remove unused code and don't repeat yourself.
- MUST: Put all magic numbers in
constants.tsusingSCREAMING_SNAKE_CASEwith unit suffixes (_MS,_PX). - MUST: Put small, focused utility functions in
utils/with one utility per file. - MUST: Use
Boolean()over!!.
Development instructions
This is a pnpm monorepo with apps/ and packages/. No external services required.
Package layout
One package: packages/agent-install — agent-install on npm. It ships both the Node API (via subpath exports) and the CLI (via bin) from a single build.
src/
index.ts -> re-exports ./skill/index.ts (default = skill surface)
skill.ts -> ./skill/index.ts
mcp.ts -> ./mcp/index.ts
agents-md.ts -> ./agents-md/index.ts
skill/ -> library: SKILL.md install, discovery, git/URL fetch
mcp/ -> library: MCP server install across JSON/JSONC/YAML/TOML
agents-md/ -> library: AGENTS.md section editor + CLAUDE.md symlink
utils/ -> shared utilities
cli/
cli.ts -> CLI entry (built to dist/cli.js; invoked via bin/agent-install.mjs shim)
commands/
skill/, mcp/, doc/
utils/ -> CLI-only helpers (logger, formatters)
bin/
agent-install.mjs -> #!/usr/bin/env node shim that imports dist/cli.js
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.
- 2d ago First seen · 86 lines · 1,170 tokens per session scan A c473ba8b5500
agent-install AGENTS.md is an instructions file published in the GitHub repository millionco/agent-install (53 stars, last pushed 2mo ago), licensed MIT. It adds 1,170 tokens to every session, about $0.0059 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
webflow-skills CLAUDE.md
Instructions for webflow/webflow-skills, covering project overview, repository structure, ci validation, what ci checks and 2. marketplace and plugin configs exist.
rolecraft AGENTS.md
Instructions for rolecraft-sh/rolecraft, covering rolecraft — development guidelines, ⚠️ startup checklist (read before every task), workflow, interaction rules and code style.
MathModelAgent CLAUDE.md
Claude Code instructions for jihe520/MathModelAgent, covering claude.md, 项目概述, commands, 后端 and 安装依赖.
lime AGENTS.md
AGENTS.md instructions for limecloud/lime, covering lime 源码仓库指南, 事实源, 工程约束, 协议与质量 and 执行方式.
clean-code-skills clean-code.instructions.md
Instructions for btseee/clean-code-skills, covering clean-code instructions, clean code rules (clean-code-skills), work loop, dependency direction and file and code placement.
wtcraft CLAUDE.md
Instructions for zywkloo/wtcraft, covering wtcraft routing, repo structure (wtcraft dogfooding), model knowledge policy and release guardrails.