Add AgentBox to Development & Workflow#192
Conversation
There was a problem hiding this comment.
Code Review
This pull request registers a new third-party plugin called "AgentBox" to run coding agents in parallel, sandboxed environments. It adds the plugin metadata, a host-side skill, documentation, and assets. The review feedback correctly identifies that the skills directory is misplaced inside the .codex-plugin directory instead of the plugin root, which will prevent Codex from resolving the skill path defined in plugin.json.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| "skills": [ | ||
| "./skills/" | ||
| ] |
There was a problem hiding this comment.
The skill file is currently placed at plugins/madarco/agentbox/.codex-plugin/skills/agentbox/SKILL.md. However, according to the standard plugin anatomy and your own README.md (which references skills/agentbox), the skills directory should be located at the root of the plugin (plugins/madarco/agentbox/skills/agentbox/SKILL.md). Because "skills": ["./skills/"] in plugin.json is resolved relative to the plugin root, Codex will not be able to find the skill in its current location inside .codex-plugin/. Please move the skills directory to the root of the plugin.
Codex resolves "skills": "./skills/" relative to the plugin root, and every other plugin in this repo keeps skills/ as a sibling of .codex-plugin/. Moves skills/agentbox out of .codex-plugin/ so the skill resolves correctly. Addresses the review feedback on hashgraph-online#192.
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Files Reviewed (6 files)
Reviewed by step-3.7-flash-20260528 · 528,479 tokens |
|
Missing the required index entries. You have the plugin bundle under |
Addresses review feedback on hashgraph-online#192: register AgentBox in the two marketplace artifacts (plugins.json and .agents/plugins/marketplace.json), inserted alphabetically under Development & Workflow to stay in sync with the README entry.
…ins/agentbox/ madarco/agentbox#81 relocated the Codex plugin from the repo root .codex-plugin/ to plugins/agentbox/ (self-marketplace). Update the mirror + install_url to match: - install_url -> HEAD/plugins/agentbox/.codex-plugin/plugin.json - ship the real skills/agentbox-info/SKILL.md (was a placeholder skills/agentbox/) - refresh plugin.json (skills is now the string "./skills/") + README from upstream - drop LICENSE/SECURITY.md/.codexignore (not present at the new plugin root, so the generator would not mirror them)
Adds AgentBox (https://github.com/madarco/agentbox, MIT) to Community Plugins → Development & Workflow (alphabetical, after Aegis).
AgentBox drives Codex from the host to run coding agents in parallel, each in its own sandboxed box — local Docker or cloud VMs (Hetzner/Daytona/Vercel/E2B) — with sub-1s checkpoint starts, a per-box browser + VS Code, and git credentials kept on the host.
Included: self-contained bundle at
plugins/madarco/agentbox/—.codex-plugin/plugin.json(withinterface.composerIcon),assets/icon.svg(512×512), a host-side skill (skills/agentbox), README, SECURITY.md, LICENSE (MIT),.codexignore. Passesvalidate-plugin-pr.pyandcheck-alphabetical.pylocally.Note on sync: the
.codex-plugin/manifest is also being added to the AgentBox repo itself (madarco/agentbox#72).generate_plugins_json.pymirrors bundles from the upstream repo archive, so please merge that PR first (or alongside) this one so the marketplace sync picks up.codex-pluginfrom madarco/agentbox's default branch.