mirror of
https://github.com/CharlesWiltgen/Axiom.git
synced 2026-09-20 19:58:20 +08:00
63daf6fe74
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).
20 lines
323 B
JSON
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"
|
|
}
|
|
]
|
|
}
|