205 ready-to-use AI agents + 21 skills + 8 commands for OpenCode and Claude Code.
Repository: github.com/xscriptor/ai
npm: npx @xscriptor/ai-agents
| Path | Content |
|---|---|
agents/ | 181 specialized agents (33 groups) |
senior/agents/ | 24 consolidated senior agents (16 ecosystems) |
skills/ | 3 project skills (xscriptor, devx, samurai) |
senior/skills/ | 18 deep-reference skills |
scripts/ | 8 utility scripts (install, validate, generate, etc.) |
packages/ai-agents/ | npm package @xscriptor/ai-agents |
commands/ | 8 OpenCode commands (/review, /audit, /docs, /arch, /test, /deploy, /refactor, /design) |
agents/ (Specialized) | senior/agents/ (Senior) | |
|---|---|---|
| Scope | One skill per agent (e.g., Python, React, Docker) | Whole ecosystem per agent (e.g., full-stack TS, cloud-native) |
| Usage | Compose multiple agents for complex tasks | Single agent handles the full problem |
| Tokens | 3-9 agents = ~10k-46k tokens | 1 agent = ~1.5k-2.4k tokens (73% less) |
| Depth | Deep expertise in one area | Breadth + on-demand skill loading for depth |
# npx (no clone) — installs everything
npx @xscriptor/ai-agents
# Selective install
npx @xscriptor/ai-agents --agents # specialized only
npx @xscriptor/ai-agents --senior # senior only
npx @xscriptor/ai-agents --skills # skills only
npx @xscriptor/ai-agents --commands # commands only
npx @xscriptor/ai-agents --groups general,languages
npx @xscriptor/ai-agents --anthropic # Claude Code
npx @xscriptor/ai-agents --project # current project
# Clone and install all
git clone https://github.com/xscriptor/ai.git
cd ai
./scripts/install-agents.sh
# Selective with local script
./scripts/install-agents.sh --agents
./scripts/install-agents.sh --senior
./scripts/install-agents.sh --skills
./scripts/install-agents.sh --commands
# Remote (installs everything by default)
curl -fsSL https://raw.githubusercontent.com/xscriptor/ai/main/scripts/install-agents.sh | bash