Files
charleswiltgen__axiom/.agents/plugins/marketplace.json
T
Charles Wiltgen 63daf6fe74 feat(codex): make the Codex variant installable via a marketplace manifest
Codex installs plugins from a marketplace, but the build emitted only a
plugin (axiom-codex/.codex-plugin/plugin.json) with no marketplace
manifest — so there was no documented way to install it. Add a repo-root
.agents/plugins/marketplace.json (Codex reads it at the clone root, so it
serves both local and git installs) pointing at ./axiom-codex:

  codex plugin marketplace add CharlesWiltgen/Axiom
  codex plugin add axiom@axiom-marketplace

Document the native plugin install in docs/start/codex-install.md —
enabling features.hooks, the trust prompt, and the sh -lc login-profile
stdout caveat. Guarded by pre-deploy 12m (added with the hooks port).
2026-06-25 10:51:52 -07:00

20 lines
323 B
JSON

{
"name": "axiom-marketplace",
"interface": {
"displayName": "Axiom"
},
"plugins": [
{
"name": "axiom",
"source": {
"source": "local",
"path": "./axiom-codex"
},
"policy": {
"installation": "AVAILABLE"
},
"category": "Developer Tools"
}
]
}