Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

6 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ—ก๏ธ Claude Arsenal

66 expert AI agents ยท 2,247 skills ยท one token-lean config

The most complete, most efficient capability pack for Claude Code โ€” from web design to cybersecurity. Ships expert-level skills for everything, yet adds near-zero startup token cost because Claude routes from a tiny map and loads exactly one file per task.

License: MIT Agents Skills Domains Token cost PRs welcome Made for

โญ If this saves you tokens or time, star it โ€” it genuinely helps others find it.


Why this exists

Big skill packs have a hidden cost: dump hundreds of skills into Claude and every session pays for hundreds of descriptions in context. Claude Arsenal solves both sides:

  • ๐Ÿง  Expert on everything. Every skill and agent is framed to operate at principal / senior level โ€” even a one-line change gets senior judgment, not a lazy shortcut.
  • โšก Token-minimal by design. The only thing that auto-loads is a ~65-line routing map. 2,247 skills sit on disk and load one at a time, on demand. Opening a new terminal costs ~1 small file โ€” not 2,247 descriptions.
  • ๐Ÿงท Remembers itself. Drop it in a folder and Claude Code auto-loads its CLAUDE.md the moment you cd in. No install step, no re-reading the tree every session.
  • ๐Ÿ“ฆ Self-contained & shareable. Pure Markdown + a tiny Node generator. Zip it, fork it, drop it in any project. MIT-licensed.

How the token efficiency works

flowchart LR
    A[New terminal in folder] --> B[Auto-load CLAUDE.md<br/>~65 lines = the cache]
    B --> C{Task matches<br/>domain map?}
    C -- yes --> D[Read ONE skill file<br/>skills/name/SKILL.md]
    C -- niche --> E[grep CATALOG.md once] --> D
    C -- specialist --> F[Spawn ONE agent]
    D --> G[Do the work]
    F --> G
    style B fill:#10b981,color:#fff
    style D fill:#3b82f6,color:#fff
    style G fill:#8b5cf6,color:#fff
Loading

The 2,017-file community library and the full INDEX.md are never bulk-read โ€” Claude greps a single catalog line, then opens one file. That's the whole trick.

What's inside

Count Notes
๐Ÿค– Agents 66 Principal-level specialists, spawn on demand
๐ŸŽฏ Core skills 230 Hand-authored, expert-framed, consistent (19 domains)
๐ŸŒ Community skills 2,017 Imported from open source, deduplicated (6,443 โ†’ 2,017)
๐Ÿ“š Total skills 2,247 Loaded one file per task
๐Ÿงญ Auto-load footprint ~65 lines The routing map, nothing else

19 core domains

๐ŸŽจ Web Design ยท โš›๏ธ Frontend ยท ๐Ÿ”ง Backend ยท ๐Ÿ—„๏ธ Databases ยท ๐Ÿš€ DevOps ยท โ˜๏ธ Cloud ยท ๐Ÿ›ก๏ธ Cybersecurity (25) ยท ๐Ÿค– AI/ML ยท ๐Ÿ“ฑ Mobile ยท โœ… Testing ยท ๐Ÿ”€ Data Engineering ยท ๐Ÿ”Œ API/Integration ยท โšก Performance ยท ๐Ÿ“ Docs ยท ๐Ÿ“‹ Project Mgmt ยท ๐ŸŒฟ Git ยท ๐Ÿ’ป Languages ยท โ›“๏ธ Blockchain ยท ๐ŸŽฎ Game Dev

Quick start

# 1. Get it
git clone https://github.com/fkfkg/Agent-Library.git
cd Agent-Library

# 2. Open Claude Code in this folder โ€” CLAUDE.md auto-loads. That's it.
#    Or install into another project:
./scripts/install.sh /path/to/your/project        # macOS/Linux
./scripts/install.ps1 -Target C:\path\to\project  # Windows PowerShell

Then just ask โ€” Claude routes to the right expert automatically:

You ask Claude routes to
"Build a responsive pricing page" responsive-layout + landing-page-design
"Audit this auth code" security-auditor agent + authentication-security
"This query is slow" sql-optimizer agent + query-optimization
"Set up a canary deploy" canary-releases + devops-engineer

Structure

claude-arsenal/
โ”œโ”€โ”€ CLAUDE.md            # ~65-line routing map (the only thing that auto-loads)
โ”œโ”€โ”€ INDEX.md             # full core catalog โ€” opened on demand
โ”œโ”€โ”€ manifest.json        # machine-readable catalog
โ”œโ”€โ”€ agents/              # 66 agent definitions
โ”œโ”€โ”€ skills/              # 230 curated core skills (<name>/SKILL.md)
โ”œโ”€โ”€ skills-community/    # 2,017 imported+deduped skills + CATALOG.md + ATTRIBUTION.md
โ””โ”€โ”€ scripts/             # generator, importer, validator

Extend it

# Edit scripts/skills-data.mjs or scripts/agents-data.mjs, then:
node scripts/generate.mjs      # regenerates core skills, agents, INDEX.md, manifest.json

The community library is imported separately (see scripts/IMPORT.md) and left untouched by the generator.

Community library & attribution

skills-community/ aggregates open-source skills, deduplicated to the single best copy per topic. Full source + license breakdown: skills-community/ATTRIBUTION.md (every skill file also carries its origin in a footer). Sources โ€” all MIT / Apache-2.0: sickn33/agentic-awesome-skills, addyosmani/agent-skills, mattpocock/skills, wshobson/agents, coreyhaines31/marketingskills, anthropics/skills. Anthropic's source-available document skills were excluded from redistribution.

Security & responsible use

Offensive-security content (penetration-tester, red-team-operator, malware-analyst, pentest skills) is for defensive and authorized testing only โ€” your own systems, scoped engagements, CTFs, or isolated labs, with explicit authorization. See SECURITY.md.

Contributing

PRs adding skills, agents, or fixes are welcome โ€” see CONTRIBUTING.md. Keep skills expert-framed and token-lean; run node scripts/validate.mjs before opening a PR.

License

MIT โ€” free to use, fork, and share.

Built for Claude Code. If it helped, leave a โญ.

About

Agent Library is a centralized collection of reusable AI agent skills, workflows, prompts, and specialized knowledge modules. Built for Claude Code, Codex, Cursor, and other AI coding agents with an efficient on-demand loading architecture.

Resources

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages