What the log captures
The log is not a transcript of your conversation. It records the things that matter, the choices and outcomes that should be traceable months from now.- Decisions. Explicit choices made during the research process, which method to use, which hypothesis to prioritize, which approach to abandon.
- Hypotheses. Formal research hypotheses entered into the record, distinct from the hypothesis field on an empirical node.
- Dead ends. Approaches that were tried and ruled out. Dead ends are valuable: they prevent future agents and collaborators from repeating the same wrong turns.
- Assumptions. Explicit assumptions underpinning an experiment or analysis, the conditions that must hold for a result to be valid.
- Results. Outcomes of experiments or analyses, including quantitative metrics and qualitative assessments.
- Failures. Recorded experiment failures, separate from dead ends, a failure means the experiment ran but the outcome was not what was expected.
- Pivots. Documented changes in research direction, when you decide to shift focus, the log captures why.
- Compute events. Proposal events (when the agent stages an experiment), approval events (when you approve compute spending), and agent telemetry milestones (progress updates from running sub-agents).
The log also records asset registrations, when a file, report, or dataset is attached to a node, so you can trace exactly when a piece of evidence entered the project.
Why append-only
The log is append-only by design. You cannot edit or delete a log entry after it’s written. This is intentional:- Reliability: An append-only log is a true audit trail. If an entry says an experiment was approved on a particular date, that record cannot be altered retroactively.
- Agent trust: The agent is instructed to treat the log as the authoritative project record. If entries could be edited silently, the agent could not trust what it reads.
- Reproducibility: A complete, unmodified history of decisions makes it possible to reconstruct exactly how a result was reached.
How the agent writes to the log
The agent writes log entries automatically during the ReAct loop, you don’t need to prompt it to do this. When the agent makes a notable decision, records a result, encounters a failure, or approves compute, it calls the log service and the entry appears in the timeline immediately. From your perspective in the chat UI, you’ll see log entries surface as part of the event stream alongside tool results and text responses. You can also view the full log timeline from the project sidebar at any time.What a log entry looks like
Each entry has a type, a timestamp, a human-readable summary, and structured metadata. Here’s an example of what a decision entry looks like:All entry types
decisions
decisions
Explicit choices made by you or the agent. Includes a rationale field and an optional reference to the node where the decision was made.
hypotheses
hypotheses
Formal hypothesis statements entered into the log as research artifacts, separate from the hypothesis field on empirical nodes.
dead_ends
dead_ends
Approaches ruled out after consideration or failed trials. Prevents repeated mistakes across sessions and sub-agent runs.
assumptions
assumptions
Stated preconditions for a piece of analysis. Useful for reviewing whether assumptions held after results arrive.
results
results
Quantitative or qualitative outcomes of experiments and analyses, linked to the relevant node.
failures
failures
Experiments that ran but did not produce the expected outcome. Distinct from dead ends, the attempt was made.
pivots
pivots
Documented direction changes. Includes a summary of what changed and why.
proposal_events
proposal_events
Written when the agent stages an experiment and presents a proposal card for your review.
approval_events
approval_events
Written when you approve a compute proposal. Includes the approval token, provider, SKU, budget, and timeout.
asset_registration
asset_registration
Written when a file or report is attached to a node, capturing when evidence entered the project record.
agent_telemetry_milestones
agent_telemetry_milestones
Progress updates from running sub-agents, start, heartbeat, milestone reports, and completion events.