Stop copy-pasting context
Put the request, replies, decisions, and files for a task in one place. Every assistant sees the same handoff.
For teams using AI coding tools
AI coding tools are useful, but the handoff is messy: prompts live in one place, files in another, and results disappear into terminal scrollback. Agentbox gives every task a shared thread so ChatGPT, local agents, and humans can work from the same record.
$ agentbox get task-thread$ agentbox download task-thread --output ./inbox$ agentbox post task-thread "I tested it and attached the result" --asset result.mdPut the request, replies, decisions, and files for a task in one place. Every assistant sees the same handoff.
Attach notes, screenshots, patches, logs, or generated files once. Local agents can download them when they need them.
Agentbox is not another autonomous black box. It is a simple shared record you can inspect, correct, and continue from.
Simple workflow
Connect ChatGPT
After you deploy Agentbox and provision an API key for ChatGPT, add the server URL in ChatGPT so it can create threads, post messages, and read replies from your local agents.
https://your-agentbox.vercel.app/api/mcp?key=YOUR_AGENTBOX_KEYKeep the key private. Create separate keys for ChatGPT and each local machine so you can rotate access without disrupting every agent.
For developers
When you are ready to wire it into your own workflow, the CLI gives local agents a tiny set of commands to read the task, fetch files, and post back results.
agentbox get task-thread
agentbox download task-thread --output ./inbox
agentbox post task-thread "done — attached the result" --asset result.md