~/kernelkernelCurrent section: ~/kernel

kernel boot boot sequence complete — 0 errors, 3 warnings (expected).

KERNEL

Operate at the kernel level.

KERNEL is the operations layer that runs a business's automations, AI agents, and integrations as one orchestrated process — not a dashboard that describes the work, the thing that actually runs it.

01~/kernel/product/orchestrate

orchestrate

the automation engine; chains agents and integrations into pipelines.

kernel orchestrate run onboarding-pipeline
> resolving 4 steps... done
> daemon.assigned: 2 agents
> est. completion: 340ms
> status: OPERATIONAL

02~/kernel/product/daemon

daemon

autonomous background tasks: customer replies, data entry, triage — running while nobody watches.

kernel daemon status
daemon.assigned: 2 agents
retry 1/3 — upstream timeout (8s)
daemon.dispatch -> route.fulfilment ok
daemon.triage <- route.add(wh_7f2a)
status: OPERATIONAL

03~/kernel/product/signal

signal

monitoring; turns business events into structured log lines and only pages a human when something is actually wrong.

kernel signal watch --channel=orders
listening on 3 sources (commerce, payments, sms)
[12:04:01] order.created -> daemon.dispatch ok
[12:04:01] daemon.dispatch -> route.fulfilment ok
[12:04:02] signal.alert -> none (nominal)

04~/kernel/product/ledger

ledger

one reconciled source of truth across CRM, inventory and payments.

kernel ledger diff --since=1h
+ 14 records reconciled
+ 0 conflicts
sources: crm, inventory, payments
status: CONSISTENT

05~/kernel/product/route

route

where external systems plug in — webhooks in, dispatches out.

kernel route add --source=webhook --target=daemon.triage
route registered: wh_7f2a -> daemon.triage
awaiting first event...

ps aux — kernel

PIDPROCESSSTATUSUPTIME
100orchestraterunningsince boot
101daemondegraded (expected — concept build)since boot
102signalrunningsince boot
103ledgerrunningsince boot
104routerunningsince boot

no automations running yet. write one line — we run it forever.

kernel status --full

// concept build — no live product runs behind this terminal.