diff --git a/.codex-plugin/assets/icon.svg b/.codex-plugin/assets/icon.svg new file mode 100644 index 0000000..db87296 --- /dev/null +++ b/.codex-plugin/assets/icon.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 0000000..88b5d1a --- /dev/null +++ b/.codex-plugin/plugin.json @@ -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/" + ] +} diff --git a/.codex-plugin/skills/agentbox-info b/.codex-plugin/skills/agentbox-info new file mode 120000 index 0000000..5647c2c --- /dev/null +++ b/.codex-plugin/skills/agentbox-info @@ -0,0 +1 @@ +../../apps/cli/share/host-skills/agentbox-info \ No newline at end of file diff --git a/apps/cli/src/wizard.ts b/apps/cli/src/wizard.ts index 8535d6f..315c326 100644 --- a/apps/cli/src/wizard.ts +++ b/apps/cli/src/wizard.ts @@ -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'; }