by wshobson
Multi-harness agentic plugin marketplace for Claude Code, Codex CLI, Cursor, OpenCode, GitHub Copilot, and Gemini CLI
# Add to your Claude Code skills
git clone https://github.com/wshobson/agentsLast scanned: 4/15/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-04-15T06:03:20.408Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}agents is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by wshobson. Multi-harness agentic plugin marketplace for Claude Code, Codex CLI, Cursor, OpenCode, GitHub Copilot, and Gemini CLI. It has 37,770 GitHub stars.
Yes. agents passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/wshobson/agents" and add it to your Claude Code skills directory (see the Installation section above).
agents is primarily written in Python. It is open-source under wshobson on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh agents against similar tools.
No comments yet. Be the first to share your thoughts!
Based on votes and bookmarks from developers who liked this skill
Production-ready agentic workflow building blocks: 92 plugins, 199 agents, 162 skills, 106 commands — built for Claude Code and consumed natively by OpenAI Codex CLI, Cursor, OpenCode, Gemini CLI, and GitHub Copilot from a single Markdown source.
[!NOTE] One source-of-truth (
plugins/), five harnesses. Each harness gets idiomatic, harness-native artifacts — not lowest-common-denominator translations. See docs/harnesses.md for the capability matrix.
Pick your harness:
/plugin marketplace add wshobson/agents
/plugin install python-development # or any of 92 plugins
→ Full Claude Code setup, troubleshooting, and plugin catalog
Codex and Cursor install natively from the committed registries (which point at the source plugins/):
npx codex-marketplace add wshobson/agents # Codex; then install individual plugins
# Cursor: add the marketplace, then `/plugin install <name>` (reads .cursor-plugin/ + source)
Gemini and OpenCode install via clone + generate (the transformed trees are gitignored):
gh repo clone wshobson/agents ~/agents && cd ~/agents
make generate HARNESS=gemini && gemini extensions install . # Gemini
make install-opencode # OpenCode (runs generate + symlinks)
Setup details and per-harness gotchas: docs/harnesses.md. Gemini-specific setup: GEMINI.md (also auto-loaded by Gemini CLI).
| Count | What it is | |
|---|---|---|
| Plugins | 92 | Granular, single-purpose installable units (88 local + 4 external via git-subdir) |
| Agents | 199 | Domain experts (architecture, languages, infra, security, data, ML, docs, business, SEO) |
| Skills | 162 | Modular knowledge packages with progressive disclosure (load when activated) |
| Commands | 106 | Slash commands: scaffolding, security scans, test gen, infrastructure setup |
| Orchestrators | 16 | Multi-agent coordination workflows (full-stack, security, ML, incident response) |
Browse the catalog: docs/plugins.md · docs/agents.md · docs/agent-skills.md
Each plugin is isolated and composable: agents, commands, and skills are auto-discovered from directory structure. Installing a plugin loads only its components into context — not the whole marketplace.
plugins/python-development/
├── .claude-plugin/plugin.json
├── agents/ # 3 Python agents (python-pro, django-pro, fastapi-pro)
├── commands/ # 1 scaffolding command
└── skills/ # 16 specialized skills (async, testing, packaging, …)
Tiered model strategy:
| Tier | Model | Use |
|---|---|---|
| 0 | Fable 5 | Longest-horizon autonomous work — large migrations, multi-hour runs (opt-in, premium cost) |
| 1 | Opus | Architecture, security, code review, production-critical |
| 2 | inherit | User-chosen — backend, frontend, AI/ML, specialized |
| 3 | Sonnet | Docs, testing, debugging, API references |
| 4 | Haiku | Fast operational tasks, SEO, deployment, content |
This marketplace ships to five agentic harnesses from one Markdown source. Each adapter emits harness-native artifacts (not lowest-common-denominator translations):
| Harness | Generates | Notes |
|---|---|---|
| Claude Code | (source-of-truth) | Native marketplace.json + plugins/ |
| Codex CLI | .agents/plugins/marketplace.json + plugins/*/.codex-plugin/plugin.json (committed); .codex/skills/, .codex/agents/ (gitignored) |
8 KB skill cap respected; commands → skills |
| Cursor | .cursor-plugin/, .cursor/rules/ |
Thin marketplace + curated rules; reuses .claude/ |
| OpenCode | .opencode/agents/, .opencode/commands/, .opencode/skills/ |
permission: block from tools: allowlist; OpenCode-safe skill names |
| Gemini CLI | skills/, agents/, commands/ (TOML) |
Native skills + subagents (April 2026 spec) |
| Copilot | .copilot/agents/, .copilot/skills/, .copilot/commands/ |
Markdown agent profiles + SKILL.md skills + commands-as-skills; model maps to native Claude models |
make generate-all # all five
make validate # structural checks
make garden # drift / dead-link / cap detection
Codex and Cursor install from source via committed registries; Gemini and OpenCode install via clone + make.
→ Full capability matrix and per-harness deep-dives
plugin-eval is a three-layer evaluation framework for measuring
and certifying plugin/skill quality:
uv run plugin-eval score path/to/skill --depth quick
uv run plugin-eval certify path/to/skill
→ PluginEval framework documentation
Detail lives in docs/. Read in this order:
Gemini-specific setup: GEMINI.md. All other harness setup, capability deltas, and gotchas live in docs/harnesses.md.
Contributing: CONTRIBUTING.md · Authoring: docs/authoring.md
Pensyve is included as an external
git-subdir entry for Claude Code. Pensyve also maintains direct upstream
integrations for this marketplace's other supported harnesses.
| Harness | Pensyve integration |
|---|---|
| Claude Code | /plugin install pensyve from this marketplace (integrations/claude-code) |
| Codex CLI | integrations/codex-plugin |
| Cursor | integrations/cursor |
| OpenCode | integrations/opencode-plugin |
| Gemini CLI | gemini extensions install https://github.com/major7apps/pensyve |
| Copilot | .copilot/ in repo root or ~/.copilot/ via make install-copilot |
MIT — see LICENSE.