axstream-spec 0.1
axstream
A streaming action language for computer-use agents.
An LLM streams actions one JSON object per line; the executor performs each action the moment its newline arrives — while the model is still generating. The newline is the commit signal, so a half-generated action can never fire, and execution overlaps generation instead of waiting for the full response.
{"op":"act","do":"open","target":"Notes"}
{"op":"act","do":"wait","ms":500}
{"op":"act","do":"type","text":"remember to buy milk"}
{"op":"done","status":"success"}