Persistent shared state for agent workflows
Paste one prompt.
Keep every agent on the same thread.
Threadron gives any agent a durable thread of work: what happened, what changed, what to do next.
Paste one instruction block into Claude Code, OpenClaw, Hermes, or any agent that can read a prompt. Threadron keeps the work history available across sessions and machines.
The problem
Local state breaks the handoff.
Local state works fine. Until:
- You switch laptops. Gone.
- You use a second agent. It starts from scratch.
- You come back tomorrow. New session, new amnesia.
- A task runs longer than one sitting. Context evaporates.
The problem isn't intelligence. It's that every agent is an isolated, forgetful silo.
Threadron keeps the shared thread in one place so the next agent sees the same work, the same context, and the same next step.
How it works
Three properties. One guarantee.
01
Persistent
State survives sessions, devices, and agent swaps. Come back tomorrow and the thread is still there, with its history intact.
02
Shared
Every agent reads and writes the same state. Claude sees what Hermes did. OpenClaw sees the same next action. No silos, no duplicate work.
03
Always available
Cloud-hosted by default. Accessible from any device, any agent, anywhere. Your state travels with your workflow instead of living on one machine.
Dead simple API
One prompt. Any agent.
Threadron is designed to be pasted into the instruction file or system prompt of any agent. Once it can see the prompt, it can keep the thread alive.
Create a work item
POST /v1/tasks
{
"title": "Fix connection pool race condition",
"project": "api-v2",
"agent": "claude-code",
"goal": "Eliminate intermittent connection timeouts under load",
"current_state": "Race condition identified in pool acquire path. Fix drafted.",
"next_action": "Write concurrent request tests, then open PR",
"outcome_definition": "Zero timeout errors in load test at 500 rps"
}
New session picks up
GET /v1/tasks?project=api-v2&status=in_progress
Claude Code · OpenClaw · Hermes · Shared State · Artifacts · Claims · Handoffs · Execution History · REST API · Self-hostable ·
Claude Code · OpenClaw · Hermes · Shared State · Artifacts · Claims · Handoffs · Execution History · REST API · Self-hostable ·
Stop the amnesia. Share the thread.
Paste one prompt, connect one API key, and every agent sees the same work history.