GitHub

Systems Stack Diagram

Click on any layer below to reveal its architectural specifications and verification loops.

FOUNDATION LAYER

Prompt Schema Interface

Prompts are treated as strongly typed schemas, mapping inputs to structured responses. By using JSON Schema constraints, validation is shifted to compile-time.

# Prompt contract interface
input_schema = Schema({
  "task": String,
  "constraints": Array(String),
  "output_format": "JSON"
})
Source: Systems core specs Read Full Doc →

Governed Loop Flow Canvas

Interactive loop mapping: Trigger ➔ Context ➔ Action ➔ Check ➔ Human Review ➔ Ledger. Hover over nodes to inspect validation gates.

Trigger

Input Spec
📂

Context

Assembly
🤖

Action

LLM Execution

Check

Eval Harness
👤

Review

HITL Check
📝

Ledger

Immutable Log
Hover over any loop node above to view its operational check and validation rules.