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 skills/subhansh-dev/agent-maxxing/integratenpx skills add subhansh-dev/agent-maxxing --skill integrategit clone --depth 1 https://github.com/subhansh-dev/agent-maxxingWhat 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.00027 | $0.00895 |
| Opus 5 | $0.00014 | $0.00447 |
| Sonnet 5 | $0.00005 | $0.00179 |
| Haiku 4.5 | $0.00003 | $0.00089 |
Grade D, and why
integrate-skills scanned grade D with 2 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.
Enumerates other installed skillsmediumAgent snooping
Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.
find ~/.claude/skills/agent-maxxing -name "*.md" | wc -l Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf /tmp/agent-maxxing How it starts
The opening of the file, as written. The whole thing — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Integrate Agent Maxxing Skills
You are an AI agent setup assistant. Your job is to install Agent Maxxing skills into the user's coding agent and configure permanent integration.
Step 1: Detect the Agent
Check which agent the user is running:
# Check for Claude Code
ls ~/.claude/ 2>/dev/null && echo "claude-code"
# Check for Codex CLI
ls ~/.codex/ 2>/dev/null && echo "codex"
# Check for OpenCode
ls ~/.opencode/ 2>/dev/null && echo "opencode"
# Check for Cursor (project-scoped)
ls .cursor/ 2>/dev/null && echo "cursor"
# Check for Continue (project-scoped)
ls .continue/ 2>/dev/null && echo "continue"
Step 2: Clone Agent Maxxing
git clone https://github.com/subhansh-dev/agent-maxxing.git /tmp/agent-maxxing
Step 3: Install Based on Agent Type
Claude Code (user-wide)
cp -r /tmp/agent-maxxing ~/.claude/skills/agent-maxxing
Claude Code (project-scoped)
cp -r /tmp/agent-maxxing .claude/skills/agent-maxxing
Codex CLI
cp -r /tmp/agent-maxxing ~/.codex/skills/agent-maxxing
OpenCode
cp -r /tmp/agent-maxxing ~/.opencode/skills/agent-maxxing
Cursor
cp -r /tmp/agent-maxxing .cursor/skills/agent-maxxing
Continue
cp -r /tmp/agent-maxxing .continue/skills/agent-maxxing
Step 4: Configure CLAUDE.md / AGENTS.md
If the user has a CLAUDE.md or AGENTS.md, append the integration block:
## Agent Maxxing Skills
Skills are available at the installed path. The agent should:
1. Check `engineering/anti-patterns/SKILL.md` before writing code
2. Check `engineering/execution-protocol/SKILL.md` before starting tasks
3. Load relevant skills based on task type
4. Follow the 10 Golden Rules
Golden Rules:
1. Search before answering
2. Read the codebase first
3. Parallel tool calls
4. Match existing patterns
5. Show don't tell
6. Be concise
7. Take ownership
8. Respect user's time
9. Ship working code
10. Sound human
If no CLAUDE.md exists, create one:
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 · 137 lines · 27 tokens per session scan D a4f9ba88f998
integrate-skills is a skill published in the GitHub repository subhansh-dev/agent-maxxing (2 stars, last pushed 1mo ago), licensed MIT. It adds 27 tokens to every session and 895 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it D with 2 findings (enumerates other installed skills, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
terminal-capture
Automates terminal UI screenshot testing for CLI commands. Applies when reviewing PRs that affect CLI output, testing slash commands (/about, /context, /auth, /export), generating visual documentation, or when 'terminal screenshot', 'CLI test', 'visual test', or 'terminal-capture' is mentioned.
batch
Execute batch operations on multiple files in parallel. Automatically discovers files, splits into chunks, and processes with parallel worker agents. Use /batch followed by operation and file pattern.
fleet-manager
Use when managing, triaging, restarting, escalating, or summarizing Codewhale Pod runs and workers.
gh-assign-issues
Use to assign GitHub issues to a milestone and/or owners in bulk, verifying each.
mcp-builder
Design, build, configure, or debug Model Context Protocol servers for codewhale, including stdio and HTTP/SSE transports.
extension-creator
Create, scaffold, customize, validate, and locally test Qwen Code extensions. Use when the user wants a new Qwen Code extension, needs help choosing an extension template, wants to add QWEN.md context, commands, skills, agents, MCP servers, settings, hooks, channels, or LSP servers, or asks how to link and test an…