ust as a conventional operating system provides the foundation for safely coordinating computational resources such as CPUs, memory, and processes, a Runtime OS can be understood as the foundation for safely coordinating intelligence, people, rules, organizations, and the real world.
Where a conventional OS coordinates CPUs, memory, and processes, a Runtime OS coordinates decisions, agents, boundaries, accountability, and human approval.
From this perspective, the structure of a Runtime OS has a strong correspondence with conventional OS architecture. The Signal Input Layer resembles device drivers; the Decision Scheduler corresponds to a CPU scheduler; the Decision Runtime Kernel corresponds to the kernel; and the Boundary Layer corresponds to access control. Decision systems for the AI era can therefore be understood as having an OS-like architecture.
This article examines the Decision Trace / Ledger Layer in detail.
Overview: Logging Systems and Journaling
In a Runtime OS, the Decision Trace / Ledger Layer is not merely a logging feature. It is the memory layer for decisions.
Logs and journals are equally essential in a conventional OS. Typical examples include:
- syslog
- audit logs
- filesystem journals
- transaction logs
They record what happened, when it happened, who performed an action, and why a failure occurred. Without logs, it is impossible to analyze incidents, trace misuse, roll back changes, conduct audits, or recover systems. In other words, a log in a conventional OS is a memory that records the system’s past state.
The same issue exists in a Runtime OS. However, a Runtime OS records more than CPU usage, memory access, and file operations. It records:
- Decisions
- Signals
- Boundaries
- Human approvals
- Escalations
- Executions
- Accountability
- Failures
- Governance
In other words, a Trace records the decision itself.
Why Decision Trace Is Necessary
For a standalone generative AI system, returning an answer may be enough. In the world of Runtime OS, however, AI systems will execute, control, stop, contract, transfer funds, and affect society.
This inevitably raises a question: Why was this decision made?
For example:
Why was a factory stopped?
Why was a payment made?
Why was a contract changed?
Why was a diagnosis changed?
An AI model’s reasoning alone is not an adequate explanation of responsibility. What is needed is a Decision Trace that includes:
- Which signals were used
- Which boundaries were evaluated
- Whether human approval was obtained
- Whether policies were violated
- Which agents were involved
- What the execution result was
The Essence of Trace in Runtime OS
A Decision Trace is not a simple log. Its essence is a causal history of decision-making.
Event
↓
Signal
↓
Decision
↓
Boundary
↓
Human
↓
Execution
↓
Result
It records this entire sequence. It is a Decision Journal.
Correspondence with a Conventional OS
| Conventional OS function | Role |
|---|---|
| syslog | Records system events |
| audit log | Audits operations |
| filesystem journal | Supports failure recovery |
| transaction log | Maintains consistency |
| Runtime Trace type | Role |
| Decision Trace | Decision history |
| Failure Trace | Learning from failures |
| Governance Trace | Governance audit |
| Accountability Trace | Accountability tracking |
| Execution Trace | Execution history |
What a Decision Trace Records
A Decision Trace should record at least the following.
1. Signal Trace
This records which signals were used, for example:
temperature_sensor_12
vision_agent_alert
worker_report
erp_status_update
It answers: What evidence was used?
2. Decision Trace
This records the decision that was generated, for example:
machine_shutdown_recommended
additional_inspection_required
human_approval_requested
It should also record the decision content, confidence, risk score, and alternatives.
3. Boundary Trace
This records the boundaries that were evaluated, for example:
safety_boundary
financial_boundary
medical_boundary
privacy_boundary
It also preserves outcomes such as:
allow
deny
require_human_gate
escalate
4. Human Trace
This is the history of Human Gates: who approved, rejected, or overrode a decision; their comments; and the time of approval. It is crucial because the ultimate responsibility in a Runtime OS rests with human authority.
5. Execution Trace
This records what was executed, such as:
API call
DB update
robot action
workflow execution
notification
It also records success, failure, timeout, rollback, and compensation.
6. Result Trace
This records the final result, for example:
machine stopped
payment completed
contract updated
workflow cancelled
It answers: How did the real world change?
Failure Trace
This is especially important. Conventional AI systems often do not handle failure well. A Runtime OS must record erroneous decisions, boundary violations, human rejections, execution failures, conflicts, and escalations.
It is therefore an OS that turns failures into learning assets.
It can accumulate answers to questions such as:
Why was the machine stopped incorrectly?
Why was a payment made incorrectly?
Why did a human reject the decision?
This is the purpose of Failure Trace.
Governance Trace
Runtime OS connects to social systems. That makes auditability, regulation, organizational responsibility, and explainability necessary.
For example, organizations must be able to trace:
Why was this administrative decision made?
Who approved it?
Was there a legal violation?
Was a boundary bypassed?
This is Governance Trace.
Accountability Trace
An equally important question is: Who is accountable?
Accountability Trace makes it possible to follow the chain:
AI proposed
Human approved
Manager overrode
Execution acted
The Meaning of a Runtime Ledger
A Ledger is not simply a database. Its essence is to preserve decision history in a form that is difficult to tamper with. The important properties are:
- append-only records
- immutable traces
- signed events
- timestamped decisions
This is a Decision Ledger.
Trace Structure
In Decision Trace Model terms:
Event
↓
Signal
↓
Decision
↓
Boundary
↓
Human
↓
Execution
↓
Result
↓
Trace
The entire lifecycle is retained. A Trace is therefore Decision Lifecycle Memory.
Position in Runtime OS
Structurally:
Signal
↓
Decision Scheduler
↓
Runtime Kernel
↓
Boundary
↓
Human Gate
↓
Execution
↓
===================
Decision Trace
===================
Trace is a recording layer that runs through the entire Runtime OS.
The Critical Difference from a Conventional OS
A conventional OS records what was executed. A Runtime OS records why a decision was made. This is the decisive difference.
The Essence of Decision Trace
The purpose of Decision Trace is not merely to make AI explainable. Its purpose is to establish:
- accountability
- governance
- learning
- auditability
- safety
- organizational memory
In a Runtime OS, Trace is therefore a social memory mechanism.
Design Principles for the Decision Trace / Ledger Layer
The Decision Trace / Ledger Layer can be defined as follows:
The Decision Trace / Ledger Layer is the recording layer of a Runtime OS that captures signals, decisions, boundaries, human authority, execution, failure, and governance causally and chronologically, enabling accountability, auditability, learning, responsibility tracking, and organizational memory.
This is the essence of Decision Trace in a Runtime OS.
Design Proposal
The basic structure is as follows:
Runtime Event
↓
Trace Event Builder
↓
Trace Schema Validator
↓
Causal Linker
↓
Append-only Ledger
↓
Trace Indexer
↓
Audit / Governance View
↓
Learning / Failure Analysis
1. Trace Event Builder
Every important event generated inside the Runtime OS is transformed into a Trace Event. The targets include:
Signal received
Decision created
Boundary evaluated
Human approved / rejected
Execution started
Execution completed
Execution failed
Rollback / compensation occurred
Escalation occurred
Example:
{
"event_id": "evt_001",
"trace_id": "trace_001",
"event_type": "boundary_evaluated",
"decision_id": "dec_001",
"actor": "boundary_engine",
"result": "require_human_approval",
"timestamp": "2026-05-26T10:00:00+09:00"
}
The key point is that traces are not produced after the fact. Every Runtime layer emits a Trace Event at the moment the event occurs.
2. Common Trace Event Schema
The following minimal schema is sufficient:
{
"event_id": "evt_001",
"trace_id": "trace_001",
"parent_event_id": "evt_000",
"event_type": "decision_created",
"layer": "decision_scheduler",
"actor_type": "agent",
"actor_id": "risk_agent",
"object_type": "decision",
"object_id": "dec_001",
"action": "create_decision",
"result": "success",
"reason": ["temperature_anomaly", "risk_score_high"],
"inputs": ["sig_001", "sig_002"],
"outputs": ["dec_001"],
"risk_score": 0.91,
"confidence": 0.86,
"metadata": {},
"timestamp": "2026-05-26T10:00:00+09:00"
}
The important fields are trace_id and parent_event_id; they make it possible to follow the causal relationships of a decision.
3. Causal Linker
Decision Trace is not merely a chronological log. It must connect what caused an event, what was decided, what was executed, and what result followed. Events are therefore connected as a causal graph:
sig_001
↓
dec_001
↓
bd_001
↓
hg_001
↓
exec_001
↓
result_001
This makes it possible to answer, later:
Why did this execution occur?
Which signal was its evidence?
Who approved it?
Where did it fail?
4. Append-only Ledger
The Ledger should be append-only rather than an ordinary update-oriented database:
Do not rewrite past Trace Events.
Add a new Correction Event to correct them.
Add a Revocation Event rather than deleting them.
Example:
{
"event_type": "correction_added",
"corrects_event_id": "evt_010",
"reason": "sensor calibration error detected later"
}
This design increases auditability and trustworthiness.
5. Trace Types
Classify traces by purpose:
Decision Trace
Execution Trace
Human Trace
Boundary Trace
Failure Trace
Governance Trace
Accountability Trace
| Trace type | Records |
| Decision Trace | Decision process |
| Execution Trace | Execution results |
| Human Trace | Approval, rejection, and overrides |
| Boundary Trace | Safety-boundary evaluation |
| Failure Trace | Failure, interruption, and compensation |
| Governance Trace | Audit and regulatory compliance |
| Accountability Trace | Responsible actors |
6. Failure Trace Design
Failures must always be recorded as dedicated events:
{
"event_type": "execution_failed",
"trace_id": "trace_001",
"decision_id": "dec_001",
"failure_type": "api_timeout",
"failure_stage": "execution",
"impact": "machine_not_stopped",
"recovery_action": "escalated_to_human_operator",
"timestamp": "2026-05-26T10:02:00+09:00"
}
Record the failure type, location, possible cause, impact scope, recovery action, prevention notes, and whether human intervention occurred.
7. Accountability Trace Design
For accountability tracking, actors must be explicit. At minimum, distinguish:
ai_agent
human
system
policy_engine
boundary_engine
external_api
Example:
{
"event_type": "human_approved",
"actor_type": "human",
"actor_id": "user_204",
"authority_level": "plant_manager",
"decision_id": "dec_001",
"comment": "Site inspection completed. Shutdown approved.",
"timestamp": "2026-05-26T10:03:00+09:00"
}
This makes it possible to trace the flow of responsibility: AI proposed, Boundary constrained, Human approved, and Execution acted.
8. Integrity and Tamper Resistance
It is desirable for the Ledger to provide tamper resistance. For an MVP, the following is sufficient:
append-only table
event hash
previous event hash
created_at
optional actor signature
Example:
{
"event_id": "evt_002",
"previous_event_hash": "abc123...",
"event_hash": "def456..."
}
This enables detection of event tampering. A blockchain is not essential; an append-only PostgreSQL table with a hash chain is sufficient at the outset.
9. Query and View Design
Recording traces alone is not enough; they must be readable. Required views include:
Decision Timeline View
Causal Graph View
Human Approval View
Failure Analysis View
Governance Audit View
Accountability View
For example, a search on trace_id = trace_001 should display Signal → Decision → Boundary → Human → Execution → Result as one coherent flow.
10. Proposed Module Structure
trace/
schemas.py
event_builder.py
causal_linker.py
ledger_writer.py
hash_chain.py
trace_indexer.py
audit_view.py
failure_analyzer.py
service.py
11. Database Design
PostgreSQL is sufficient at the start:
CREATE TABLE trace_events (
event_id TEXT PRIMARY KEY,
trace_id TEXT NOT NULL,
parent_event_id TEXT,
event_type TEXT NOT NULL,
layer TEXT NOT NULL,
actor_type TEXT,
actor_id TEXT,
object_type TEXT,
object_id TEXT,
action TEXT,
result TEXT,
inputs JSONB,
outputs JSONB,
reason JSONB,
metadata JSONB,
risk_score NUMERIC,
confidence NUMERIC,
previous_event_hash TEXT,
event_hash TEXT,
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
);
Add indexes for retrieval:
CREATE INDEX idx_trace_events_trace_id
ON trace_events(trace_id);
CREATE INDEX idx_trace_events_event_type
ON trace_events(event_type);
CREATE INDEX idx_trace_events_object
ON trace_events(object_type, object_id);
12. Processing Flow
def write_trace_event(event):
event.previous_event_hash = get_latest_hash(event.trace_id)
event.event_hash = calculate_hash(event)
validate_trace_event(event)
insert_append_only(event)
update_trace_index(event)
return event
13. Append-only Constraints
The PostgreSQL design should prohibit UPDATE and DELETE:
INSERT only
No UPDATE
No DELETE
Use correction_event for corrections
Use revocation_event for revocations
This strengthens the trustworthiness of the Decision Ledger.
What to Build First for an MVP
Start with these five components:
1. Trace Event Schema
2. Ledger Writer
3. PostgreSQL append-only table
4. Timeline View by trace_id
5. Failure Event recording
Then add:
Hash Chain
Causal Graph View
Governance Audit View
Accountability View
Failure Analyzer
Conclusion: Design Principles
The Decision Trace / Ledger Layer is not simply log storage. Its essence is:
Runtime Event
↓
Causal Trace
↓
Append-only Ledger
↓
Audit / Learning / Accountability
The governing design principle is therefore:
The Decision Trace / Ledger Layer is the memory layer of Runtime OS that records signals, decisions, boundaries, Human Gates, execution, results, and failures in causal and chronological form on an append-only basis, so that an organization can later explain, audit, learn from, and assign accountability for why a decision was made.
With this layer, Runtime OS becomes more than an execution system. It becomes a decision infrastructure that learns from failure and can explain responsibility.

Chinoba
Intelligence as Relationship
Research Platform
founded by
Masao Watanabe
AI Systems Architecture
Decision Trace
Human–AI Coordination
Algorithmic Governance
Related Research
This topic is part of the Chinoba Knowledge Base.

コメント