Add Codex plugin (.codex-plugin) to drive AgentBox from Codex#72
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit b9677e2. Configure here.
|
|
||
| `<box>` is optional almost everywhere — it defaults to the current project's box, or use its short index (`1`, `2`, …), name, or id prefix. Run `agentbox <command> --help` for options. | ||
|
|
||
| Full docs: https://agent-box.sh/docs |
There was a problem hiding this comment.
Duplicate host skill drifts
Low Severity
The Codex plugin skill largely repeats the bundled agentbox-info host reference with a shorter subset. Two hand-maintained copies already disagree on pause timing and cloud setup, increasing the chance future CLI changes update only one file.
Reviewed by Cursor Bugbot for commit b9677e2. Configure here.
There was a problem hiding this comment.
Fixed in 027439d. Replaced the hand-copied codex skill with a symlink to the single source of truth at apps/cli/share/host-skills/agentbox-info — mirroring the existing repo-root skills/agentbox-info symlink. The two copies can no longer drift.
The codex plugin hand-copied a condensed version of the canonical host-side skill, which Bugbot flagged as already drifting from the source. Mirror the existing repo-root `skills/agentbox-info` pattern: symlink the codex plugin skill to the single source of truth at apps/cli/share/host-skills/agentbox-info, so the two can never drift.


Adds a
.codex-plugin/bundle so AgentBox can be installed as an OpenAI Codex plugin (mirrors the existing.claude-plugin/)..codex-plugin/plugin.json— manifest (name, version, repository, MIT, interface/composerIcon, skills)..codex-plugin/skills/agentbox/SKILL.md— host-side skill teaching Codex to drive theagentboxCLI (create/codex/dashboard/parallel boxes, access, lifecycle, relay)..codex-plugin/assets/icon.svg— 512×512 marketplace icon.Enables submission to the Codex plugin marketplace (hashgraph-online/awesome-codex-plugins). Does not touch any runtime code.
Note
Low Risk
Documentation and plugin metadata only; no changes to AgentBox runtime, auth, or data paths.
Overview
Adds a
.codex-plugin/bundle so AgentBox can be installed as an OpenAI Codex plugin, parallel to the existing Claude plugin layout.The manifest (
plugin.json) registers name, version, MIT license, UI copy, composer icon path, and a skills directory. Theagentboxskill (skills/agentbox/SKILL.md) instructs Codex to run on the host and drive theagentboxCLI—create boxes, launch Codex/Claude/OpenCode in sandboxes, parallel runs, dashboard attach, tunnels, and lifecycle/relay behavior. A 512×512icon.svgsupplies the marketplace/composer icon.No application or CLI runtime code is modified; this is packaging and documentation for Codex marketplace submission only.
Reviewed by Cursor Bugbot for commit b9677e2. Configure here.