Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .codex-plugin/assets/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "agentbox",
"version": "0.1.0",
"description": "Drive AgentBox from Codex on the host: create isolated sandboxes for coding agents, run them in parallel, queue background jobs, and push commits safely through the host relay.",
"author": {
"name": "Marco D'Alia"
},
"homepage": "https://github.com/madarco/agentbox",
"repository": "https://github.com/madarco/agentbox",
"license": "MIT",
"keywords": [
"codex",
"agentbox",
"sandbox",
"docker",
"hetzner",
"daytona"
],
"interface": {
"displayName": "AgentBox",
"shortDescription": "Run coding agents in parallel, each in its own sandboxed box.",
"composerIcon": "./assets/icon.svg"
},
"skills": [
"./skills/"
]
}
1 change: 1 addition & 0 deletions .codex-plugin/skills/agentbox-info
4 changes: 2 additions & 2 deletions apps/cli/src/wizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,9 @@ function rebuildMinutesFor(provider: ProviderName): string {
case 'daytona':
return '7';
case 'vercel':
return '25';
return '5-10';
case 'hetzner':
return '35–50';
return '7-10';
default:
return '1';
}
Expand Down
Loading