Developer PreviewRepository Sourced
Verb: Control Layer for Coding Agents
The control layer around coding agents. The agents generate; Verb owns the environment they run in, the record of what actually happened, and the way back when something breaks.
1* **Sessions that survive process death.** A session keeps its identity across an agent exiting, the
2 app being force-stopped, and the machine losing the process entirely - then resumes by the agent's
3 *own* conversation id. Proven end to end on a physical Android device for Claude and Codex.
4* **Two hosts, one contract.** Android (proot + PTY) and desktop (native Unix PTY) implement the same
5 session semantics and the same durable record shape.
6* **Structural memory, not surveillance.** Durable records hold identity, context and state. Never a
7 PID, process handle, command text, terminal bytes, prompts, transcripts or credentials.
8* **One session lifecycle, three recovery-capable agents.** `LIVE -> INTERRUPTED -> RECOVERABLE ->
9 ENDED` is implemented for Claude Code, Codex CLI and OpenCode.