Manifest
Clawblox writes.clawblox/manifest.json as the strict metadata contract for
replay and app tooling. Tools should read this file instead of probing backend
processes or inferring paths from naming conventions.
Run Metadata
run describes the bounded execution that produced this manifest. It is
orchestration metadata: it does not control world state, replay behavior, or
agent identity. Its purpose is to let tools order and label multiple run
directories without relying on folder-name conventions or a separate CSV index.
| Field | Meaning |
|---|---|
id | Stable run identifier, normally matching the run directory name. |
index | Optional 1-based order inside a multi-run folder. Tools should fall back to directory-name sorting when absent. |
status | Writer-defined lifecycle state such as running, complete, or failed. |
started_at / ended_at | UTC timestamps for the bounded run. |
resume_from | Optional checkpoint path used to initialize this run’s world. Empty for fresh runs. |
Agent Identity
Each entry inagents describes one logical agent and its recorded artifacts.
| Field | Meaning |
|---|---|
id | Stable world/session agent id when the world provides one. If no world id exists, this may be the run name. |
name | Logical display name used in UI, prompts, chat, and agent selectors. This should be short and human meaningful, such as Rocky or Agent1. |
run_name | Unique run/process/artifact name. This is the value used for tmux windows, filesystem-safe run directories, and disambiguating repeated uses of the same logical name. |
dir | Agent artifact directory relative to the manifest state root when possible. |
world_agent_id | Compatibility copy of the world-provided id. New code should prefer id. |
id when the id is known, or by
dir when different subsystems record artifacts for the same agent before the
world id is available. The manifest should not contain separate agent entries for
the same logical agent’s transcript, workspace recording, and world connection.
Recording Metadata
Combined replay requires staticrecordings[].info metadata.
info fields are required for combined replay. Missing recording
metadata is a protocol error; app tooling must not launch replay backends to infer
segment duration.