integrate-skills

An installation guide for adding a collection of Agent Maxxing skills to an AI coding agent.

In plain words
What is it for?
Use it to install the skills for Claude Code, Codex CLI, OpenCode, Cursor, or Continue, depending on which agent and project setup you use.
Why use it?
It removes the repeated setup work of detecting the agent, obtaining the skill collection, and placing it in the expected directory. The guide supports several coding agents and installation scopes.

Skill for Claude CodeCodex

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/subhansh-dev/agent-maxxing/integrate
Any agent
npx skills add subhansh-dev/agent-maxxing --skill integrate
Clone the repo
git clone --depth 1 https://github.com/subhansh-dev/agent-maxxing

Made for: Claude Code, Codex.

Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 895 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 findings. 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 $0.00027 $0.00895
Opus 5 $0.00014 $0.00447
Sonnet 5 $0.00005 $0.00179
Haiku 4.5 $0.00003 $0.00089

Measured 2d ago against content hash a4f9ba88f998, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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
INTEGRATE/SKILL.md · 137 lines

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:

Read the full file on GitHub · 137 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. 2d ago First seen · 137 lines · 27 tokens per session scan D a4f9ba88f998

Subscribe to this mod's changes

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.