kernel/graph/causal.c | Causal event ring, Lamport clock, event hashing, parent links, and read-through hydration. |
kernel/graph/cjournal.c | Persistent causal journal segments, hash sidecars, roots, index, and proof health. |
kernel/graph/replay.c | Snapshot reconstruction and replay-derived state. |
kernel/graph/timeline.c | Named event chains and timeline cursor state. |
kernel/graph/actor.c | Actor registry, mailboxes, route table, and remote proxy logic. |
kernel/graph/mesh.c | Peer discovery and encrypted mesh transport. |
kernel/graph/federation.c | Remote actor delivery and causal graph exchange. |
kernel/graph/prove.c | Causal proof commands and verification helpers. |
kernel/graph/describe.c | Consolidated annotate, narrate, enrich, and context descriptions. |
kernel/graph/whatif.c | Counterfactual impact analysis. |
kernel/graph/analysis.c | Consolidated blame, entropy, and critical-path analysis. |
kernel/graph/control.c | Consolidated barrier and circuit-breaker control. |
kernel/graph/search.c | Consolidated causal search and pattern logic. |
kernel/graph/ops.c | Consolidated heal, supervise, reactive, and trigger operations. |
kernel/graph/diagnostics.c | Consolidated ghost and diagnose tools. |
kernel/graph/kv.c | Consolidated key-value store and watcher. |
kernel/graph/integrity.c | Snapshot and Merkle integrity support. |
kernel/graph/provenance.c | Provenance and timeline diff support. |
kernel/apps/cmd_graph.c | Kernel graph command implementations, including cpath and cdot. |
programs/shell.c | User shell command table and operator surfaces. |
programs/httpd.c | Dashboard, /causal explorer, and causal API endpoints. |
programs/scrub.c | Time-travel TUI and one-shot replay/what-if modes. |
kernel/apps/telnetd.c | telnetd on port 23, noiseshd on port 5200, per-task I/O hooks, telnet NAWS, and encrypted shell sessions. |
kernel/core/syscall.c | Syscall dispatch, terminal cooked-key decode (SYS_TERM_GETKEY), terminal sizing (SYS_CON_GETSIZE), and causal context. |
kernel/drivers/console.c | Console output, ANSI clear/cursor/colour emission through remote io_write hooks, VGA/serial mirroring. |
programs/editor.c | Full-screen editor that uses cooked terminal keys and console sizing, so it can run remotely. |
kernel/apps/script.c | slosh scripting: variables, expr, if/while/for, functions, positional parameters, return, recursion, and shell passthrough. |
kernel/apps/cmd_files.c | Coherent file commands over RAM scratch and SlFS fallback/persistence. |
docs/remote-access.md | Canonical remote workstation guide: telnet, noiseshd, terminal behaviour, filesystem routing, and daemon survival. |
scripts/noise-shell-client.py | Host-side client for the Noise-encrypted shell, including interactive and command modes. |
kernel/fs/blockfs.c | Persistent SlFS implementation. |
kernel/net/tcp.c | TCP state machine and causal network events. |