* feat(pi): register the Pi harness in capabilities, model aliases, and tool maps * feat(pi): add the Pi adapter (skills, prompt templates, subagent-extension agents) * feat(pi): generate the .pi tree via make generate HARNESS=pi * feat(pi): validate the generated .pi tree * feat(pi): gardener reports stale .pi artifacts * feat(pi): make install-pi symlinks the .pi tree into the Pi config dir * test(pi): real-CLI smoke tests via token-free slash expansion; install pi in CI * test(pi): override every Anthropic credential variable in the smoke env * docs: add the Pi harness everywhere the harness list appears * fix(pi): close the final-review findings (CI type-check, base URL override, validator gap, docs) * docs(pi): align harness-count wording and the no-billing explanation Claude-Session: https://claude.ai/code/session_01DZazzWVyb8MxPCuLC1w5Qo * fix(pi): scope clean and prune to the adapter-owned .pi subtrees; tighten filename checks Claude-Session: https://claude.ai/code/session_01DZazzWVyb8MxPCuLC1w5Qo
15 KiB
Cross-harness capability matrix
claude-agents is a multi-harness plugin marketplace. Source-of-truth lives under plugins/
as Claude Code markdown. Per-harness artifacts are generated by adapters under tools/adapters/.
This file mirrors the capability matrix in
tools/adapters/capabilities.py. Edit there; regenerate viamake docs.
Supported harnesses
| Harness | Status | Generated paths |
|---|---|---|
| Claude Code | source-of-truth | plugins/, .claude-plugin/marketplace.json |
| OpenAI Codex CLI | supported | committed: .agents/plugins/marketplace.json, plugins/*/.codex-plugin/plugin.json; gitignored: .codex/skills/, .codex/agents/ |
| Cursor (2.5+) | supported | committed: .cursor-plugin/, .cursor/rules/ (curated) — points at source plugins/ |
OpenCode (sst/opencode) |
supported | gitignored: .opencode/agents/, .opencode/commands/, .opencode/skills/, opencode.json |
Google Antigravity CLI (agy) |
supported | gitignored: .antigravity/plugins/<name>/{skills/,agents/,commands/} |
Pi (pi, @earendil-works/pi-coding-agent) |
supported | gitignored: .pi/{skills/<plugin>/<skill>/,prompts/,agents/} |
Agent Skills installers (gh skill 2.90+, npx skills) |
supported, skills only | nothing generated; both read plugins/*/skills/ from GitHub directly, see Skills-only installers |
Capability matrix
| Capability | Claude Code | Codex | Cursor | OpenCode | Antigravity | Pi |
|---|---|---|---|---|---|---|
| Skills (SKILL.md native) | ✅ | ✅ | ✅ via .claude/ |
✅ via .opencode/skills/ |
✅ (native, self-contained per plugin) | ✅ (recursive discovery) |
| Subagents (markdown native) | ✅ | TOML format | ✅ via .claude/ |
✅ (different frontmatter) | ✅ (agents/<name>.md + invoke_subagent/define_subagent) |
via the reference subagent extension (agents/<plugin>__<agent>.md) |
| Slash commands | ✅ | converted to skills | ✅ | ✅ | TOML at commands/<p>/<cmd>.toml (agy reports these as "converted to skills") |
prompt templates at prompts/<plugin>__<cmd>.md |
| Plugin marketplace | ✅ | — | ✅ (2.5+) | — | ✅ (agy plugin install <name>@marketplace / agy plugin link) |
— (packages via npm, git, or a local path) |
| Parallel subagents | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ (extension) |
| Per-agent tool allowlist | ✅ (tools:) |
only sandbox_mode |
only readonly: |
✅ (permission: block) |
✅ (tools:, agy-native names) |
✅ (tools:, extension) |
TodoWrite tool |
✅ | — | — | ✅ | — | — |
Task/Agent spawn tool |
✅ | name in prose | ✅ | ✅ (task) |
✅ (invoke_subagent/define_subagent) |
subagent (extension) |
| MCP servers | ✅ | ✅ | ✅ | ✅ | ✅ | via extension |
| Lifecycle hooks | ✅ | — | — | ✅ (TS plugins) | ✅ | ✅ (TypeScript extensions) |
| Context file | CLAUDE.md |
AGENTS.md (32 KiB cap) |
AGENTS.md |
AGENTS.md / ~/.claude/CLAUDE.md |
AGENTS.md (read natively) |
AGENTS.md |
| Context file recommended cap | 150 lines / 500 tokens | 150 lines / 500 tokens | 150 lines / 500 tokens | 150 lines / 500 tokens | 150 lines / 500 tokens | 150 lines / 500 tokens |
| Skill body hard cap | none | 8 KB | none | none | none | none |
| Tool name case | CamelCase (Read) |
action verbs (no tool vocab) | lowercase | lowercase (strict) | lowercase (agy-native names) | lowercase (read, bash) |
| Bare model aliases | ✅ (fable/opus/sonnet/haiku) |
mapped to GPT-5.x family | use inherit |
full provider/model-id | mapped to tier alias (pro/flash/inherit) |
full provider/model-id |
Claude Code native features
Claude Code is the source-of-truth harness. It reads the canonical context file via CLAUDE.md,
a symlink to AGENTS.md. Features it supports that other harnesses degrade or lack:
- Per-agent tool allowlist —
tools:frontmatter honored verbatim (Cursor / Codex are coarser; the OpenCode adapter translates this into apermission:block). Task/Agentspawn tool — fan-out parallel subagent execution. (Codex requires naming an agent in prose to delegate.)TodoWrite— native progress tracking. (Not available in Codex / Cursor / Antigravity / Pi.)- Slash-command marketplace — full
/plugin install,/plugin marketplaceworkflow.
Claude-Code-only paths:
.claude-plugin/marketplace.json— plugin registry (source of truth)plugins/<name>/.claude-plugin/plugin.json— per-plugin manifest
Graceful degradation
Each adapter handles incompatibilities mechanically — authors don't need to know the per-harness rules to write portable content.
| Source pattern | Codex | Cursor | OpenCode | Antigravity | Pi |
|---|---|---|---|---|---|
tools: Read, Grep (agent allowlist) |
dropped; sandbox_mode = "read-only" heuristic |
dropped (Cursor doesn't honor) | converted to permission: deny block |
rewritten to agy-native tool names | rewritten to Pi built-in names; tools: [] becomes read, grep, find, ls |
color: blue (agent) |
dropped | dropped | dropped | dropped | dropped |
model: opus (agent) |
mapped to gpt-5.5 |
rewritten to inherit |
rewritten to anthropic/claude-opus-4-8 |
mapped to pro |
rewritten to anthropic/claude-opus-4-8 |
model: fable (agent) |
mapped to gpt-5.5 |
rewritten to inherit |
rewritten to anthropic/claude-fable-5 |
mapped to pro |
rewritten to anthropic/claude-fable-5 |
TodoWrite in body |
no equivalent — leave as-is | no equivalent — leave as-is | works as-is | no equivalent | no equivalent |
| Skill body > 8 KB | split into references/details.md |
passed through | passed through | passed through | passed through |
Agent named worker |
namespaced to <plugin>__worker |
passed through | passed through | passed through (no <plugin>__ namespacing — the plugin dir already scopes it) |
namespaced to <plugin>__worker.md (the agents directory is flat) |
Slash command (commands/<x>.md) |
converted to skill | passed through | rewritten to .opencode/commands/ |
TOML at commands/<plugin>/<x>.toml, body always inlined (never @{path}-injected) |
prompt template at prompts/<plugin>__<x>.md, the body is copied as written once Claude tool references are rewritten to Pi names, $ARGUMENTS is left in place for Pi to substitute, and no wrapper text is added |
Output paths (committed vs gitignored)
Native install is lean: only small JSON registries (pointing at the source plugins/) are
committed. The large transformed skill/agent trees stay gitignored — regenerate them locally.
Committed:
.claude-plugin/marketplace.json # SOURCE OF TRUTH
plugins/ # SOURCE OF TRUTH
AGENTS.md # canonical context file
.agents/plugins/marketplace.json # Codex marketplace registry (source.path: ./plugins/<name>)
plugins/*/.codex-plugin/plugin.json # per-plugin Codex manifest (skills: ./skills/)
.cursor-plugin/, .cursor/rules/ # Cursor marketplace + curated rules (point at source)
Gitignored (regenerate with make generate):
.codex/skills/, .codex/agents/ # transformed Codex trees (for ~/.codex/skills symlink recipe)
.opencode/agents/, .opencode/commands/, .opencode/skills/, opencode.json
.antigravity/plugins/<name>/ # self-contained agy plugins (skills/, agents/, commands/)
.copilot/agents/, .copilot/skills/, .copilot/commands/
.pi/skills/, .pi/prompts/, .pi/agents/ # transformed Pi trees (skills are nested per plugin)
.pi/ is also Pi's project-local config directory, so you may keep your own files there such
as .pi/settings.json or .pi/extensions/*.ts. The adapter owns only .pi/skills,
.pi/prompts and .pi/agents. Cleaning and pruning stay inside those three subdirectories and
leave everything else under .pi/ alone.
Native install
- Codex —
npx codex-marketplace add wshobson/agents(or it's auto-discovered as a project marketplace when the repo is the cwd), then install individual plugins. Codex readsSKILL.mdstraight fromplugins/<name>/skills/; skills over the 8 KB cap are truncated by Codex at load. The gitignored.codex/skills/copies remain for the~/.codex/skillssymlink recipe. - Cursor — add the marketplace, then
/plugin install <name>. Entries point at source./plugins/<name>; Cursor readsSKILL.md+.mdagents from source directly. - Antigravity — no one-step-from-URL install (the lean tradeoff). Clone the repo, then
make generate HARNESS=antigravityand eitheragy plugin install .antigravity/plugins/<name>per plugin, ormake install-antigravityto symlink every generated plugin into~/.gemini/antigravity-cli/plugins/(agy's config dir) at once. - OpenCode — no one-step-from-URL install. Clone the repo, then
make install-opencode(runs generate + symlinks.opencode/→~/.config/opencode/). - Pi — no one-step-from-URL install. Clone the repo, then
make install-pisymlinks every generated skill directory, prompt template, and agent into~/.pi/agent/(override withPI_CODING_AGENT_DIR). Skills and prompts can also be installed as a package withpi install /path/to/agents/.pi; agents need the symlink route because Pi packages have no agents resource, and they only work with the referencesubagentextension or a compatible package. Runningpiinside the clone also works. Pi asks to trust the project and then reads.pi/directly. Pick one route. If you install globally withmake install-piand also runpiinside the clone, Pi sees every skill twice and warns on each name.
Skills-only installers
gh skill (GitHub CLI 2.90+) and npx skills (vercel-labs/skills)
install Agent Skills into any supported agent straight from GitHub. Both discover every
plugins/<plugin>/skills/<skill>/ directory in this repo without a clone, a marketplace, or a
generate step. They carry skills only: no agents, commands, or hooks.
# gh skill: lists as `[plugins] <plugin>/<skill>`, selects by bare skill name or exact path
gh skill install wshobson/agents # interactive browse
gh skill install wshobson/agents python-testing-patterns
gh skill install wshobson/agents plugins/python-development/skills/python-testing-patterns # exact path skips the tree walk
gh skill install wshobson/agents --all --agent claude-code --scope user
gh skill install wshobson/agents python-testing-patterns --pin <sha>
# npx skills: lists and selects by bare skill name
npx skills add wshobson/agents --list
npx skills add wshobson/agents --skill python-testing-patterns -a claude-code
npx skills add wshobson/agents --all -g
Gotchas:
- Both install under the bare skill name (
<agent>/skills/<skill>/). The<plugin>/prefix ingh skilllistings is display only;python-development/python-testing-patternsis not a valid selector,python-testing-patternsand the exactplugins/...path are. Skill directory names are unique across plugins andmake smoke-testkeeps them that way; a duplicate would collide on install. gh skillinstalls from the latest GitHub release when one exists, and frommainonly when the repo has none. This repo publishes no releases, so installs trackmain. Creating a release would freezegh skillinstalls at that tag until the next one.- Local checkouts. After
make generate-all,npx skills add ./agentsalso walks the gitignored.codex/,.opencode/,.copilot/,.antigravity/and.pi/trees and lists their copies. Install from the GitHub source instead, or usegh skill install . --from-local, which skips hidden directories. - Spec gate.
gh skill publish --dry-runvalidates every SKILL.md against the agentskills.io spec: name pattern, name equal to the directory name, required frontmatter.make smoke-testruns it, plus discovery through both CLIs, against the real binaries.
Regenerating
The committed registries point at source; the transformed trees are regenerated on demand.
Contributors must run make generate-all before committing source changes — CI fails on drift
of the committed registries.
make generate HARNESS=codex
make generate HARNESS=cursor
make generate HARNESS=opencode
make generate HARNESS=antigravity
make generate HARNESS=pi
# Or all at once (run before committing source changes):
make generate-all
# Optional global installs:
make install-opencode
make uninstall-opencode
make install-antigravity
make uninstall-antigravity
make install-pi
make uninstall-pi
External Pensyve integrations
The Claude Code marketplace includes Pensyve as an external git-subdir plugin.
For generated harnesses, use Pensyve's upstream harness-native integration:
| Harness | Upstream integration |
|---|---|
| Claude Code | https://github.com/major7apps/pensyve.git, path integrations/claude-code |
| Codex CLI | integrations/codex-plugin |
| Cursor | integrations/cursor |
| OpenCode | integrations/opencode-plugin |
| Copilot | .copilot/ (repo-level) or ~/.copilot/ (global install via make install-copilot) |
External HOL Guard integration
The Claude Code marketplace includes HOL Guard as an external git-subdir plugin from
https://github.com/hashgraph-online/hol-guard-plugin.git, path distributions/wshobson-agents.
The reviewed payload exposes the portable hol-guard and plugin-scanner skills and
keeps decisioning local by default. Guard Cloud is neither required nor promoted. This
marketplace entry is a Claude Code discovery surface only; it does not add HOL Guard to the
generated Codex, Cursor, OpenCode, Antigravity, Copilot, or Pi outputs.
The reviewed payload is pinned to commit 43b2dda59e9f07057c52e69fd7426188faae1488 and installs the exact local CLI versions
hol-guard==2.2.119 and plugin-scanner==2.2.119, with user approval required before
installation. For a reviewed payload update, advance the marketplace sha and matching
marketplace/external manifest versions together.
When the user explicitly requests protection, the local HOL Guard runtime can modify supported harness hook/settings configuration. Generated harness outputs in this repository do not vendor or rewrite the external HOL Guard payload.
Global install
OpenCode, Copilot, Antigravity, and Pi support installing generated artifacts globally for user-level discovery:
make install-opencode # symlink .opencode/ → ~/.config/opencode/
make uninstall-opencode
make install-copilot # symlink .copilot/ → ~/.copilot/
make uninstall-copilot
make install-antigravity # symlink each .antigravity/plugins/<p>/ → ~/.gemini/antigravity-cli/plugins/<p>/
make uninstall-antigravity
make install-pi # symlink each .pi/ skill, prompt, and agent → ~/.pi/agent/
make uninstall-pi
# Force-replace conflicting symlinks:
make install-copilot FORCE=1
make install-antigravity FORCE=1
make install-pi FORCE=1
Copilot discovers agents from
.copilot/agents/and skills from.copilot/skills/at the repo level, and from~/.copilot/agents/and~/.copilot/skills/at the user level. The adapter emits to.copilot/; usemake install-copilotfor user-level discovery.
See also
authoring.md— portable-content style guide for plugin authorsarchitecture.md— overall design principlesplugin-eval.md— theharness_portabilityscoring dimension