Personal agent plugins. One repo, one command.
| Plugin | What it does | Type |
|---|---|---|
| superpowers | Structured dev workflow: plan → TDD → execute | skill |
| gitnexus | Codebase knowledge graph + MCP server | npm + MCP |
| context7 | Live library docs in context | MCP |
| ui-ux-pro-max | UI/UX design intelligence skill | skill |
| andrej-karpathy-skills | Behavioral coding guidelines: think first, keep changes simple and surgical, verify goals | skill |
| [custom] repo skills | Auto-discover each local skill under skills/*/SKILL.md and install it to selected platforms |
skill |
git clone https://github.com/agent/agent-ops.git
cd agent-ops
bash install.shThe installer initializes all plugin submodules automatically.
Any custom skills committed under skills/*/SKILL.md are discovered automatically by both install.sh and uninstall.sh.
bash uninstall.shgit submodule update --remote --merge
git add .
git commit -m "chore: bump submodules"Or just re-run bash install.sh and answer y when asked to pull latest.
agent-ops/
├── install.sh # run this
├── uninstall.sh # remove installed tools
├── .gitmodules # submodule declarations
├── plugins/ # git submodules (external plugins, not committed)
│ ├── superpowers/
│ ├── gitnexus/
│ ├── context7/
│ ├── ui-ux-pro-max/
│ └── andrej-karpathy-skills/
├── skills/ # your own custom skills (committed here)
├── mcp/ # any MCP servers you author (committed here)
└── configs/
├── .claude/ # CLAUDE.md, settings fragments
├── .codex/ # AGENTS.md, config snippets
└── cursor/ # .cursor/rules
- claudecode — Claude Code CLI
- codex — OpenAI Codex CLI
- cursor — Cursor IDE (skills via
~/.cursor/skills/, MCP via~/.cursor/mcp.json)