The 10 Particles

Every service in the Field is modeled after a physics particle. The name encodes what it does — and what it must never do.

Canonical Flow

Every event follows this path. No step may be skipped.

BosonFermionSigned EventEnvelope (HMAC)
FermionHiggsPolicy query — allowed?
FermionHadronPersist workflow state
FermionPhotonDispatch Actions from ActionPlan
PhotonNeutrinoEmit audit records
FermionNeutrinoDecision + outcome records

Core Particles 6

The 6 particles in the canonical pipeline — every event passes through them in order.

B

Boson

Ingress & Canonicalization

Force carrier — mediates interactions between systems

Accepts external inputs (webhooks, API calls, scheduled triggers), validates identity, wraps payloads into canonical EventEnvelopes with CorrelationId and HMAC signatures. Returns 202 immediately — never blocks on downstream processing.

Outputs: EventEnvelope + CorrelationId + HMAC signature
Must never: Decide routing policy, execute side effects, hold workflow state, interpret payload semantics
F

Fermion

Decisioning & Orchestration

Matter particle — gives the system its structure

Core routing engine. Evaluates pipeline rules against incoming EventEnvelopes, consults Higgs for policy evaluation, produces ActionPlans — ordered, declared lists of Actions. Dispatches to Photon for execution. Supports dry-run mode as a first-class concept.

Outputs: ActionPlans + execution results + decision metadata + dry-run reports
Must never: Own tenant policy, embed connector logic, act as audit ledger, hold durable workflow state
H

Higgs

Governance Brain

The Higgs field gives particles mass — defines observable properties

Owns tenant configuration, evaluates policy rules: allow/deny/filter for any proposed action, connector, model, or target. Operates on allowlists by default. Provides redaction transforms and data classification.

Outputs: PolicyDecision (allow/deny/filter) + TenantConfig + redaction transforms
Must never: Execute side effects, store raw secrets, become a general workflow engine
H

Hadron

Durability & State Machines

Composite particle — durable, structured, persistent

Durable job store persisting workflow state across restarts. Manages step state machines (pending → dispatched → executing → succeeded/failed), retry logic with exponential backoff, dead letter queues, and persistent idempotency.

Outputs: Durable workflow state + job receipts + replay cursors + DLQ entries
Must never: Implement business policy, execute connectors directly, make routing decisions
P

Photon

Connectors & Egress

Carries electromagnetic force to the outside world

Typed connectors to external systems — HTTP APIs, message queues, LLM providers, SaaS platforms. Resolves credentials from vault at execution time. Classifies errors as transient, permanent, or rate-limited.

Outputs: ConnectorResult (success/failure + response + error classification + latency)
Must never: Decide policy or orchestration, evaluate tenant entitlements, hold workflow state
N

Neutrino

Audit, Observability & Explainability

Passes through matter without interacting — observes but does not change outcomes

Append-only audit ledger recording the full processing chain for every event. Provides cost/latency accounting, decision explainability, trace views, and queryable event history.

Outputs: Immutable audit records + trace views + metrics + explainability reports
Must never: Influence execution outcomes, block the critical path, mutate events or decisions

Supporting Particles 4

Specialized services that extend the pipeline without violating its boundaries.

Q

Quark

Domain Objects

Fundamental building block — typed constituents inside composite structures

Parses raw event payloads into typed domain events (PR, Ticket, Invoice, LLMRequest). Provides shared vocabulary for pipeline matching. Purely interpretation and typing.

Outputs: Typed domain event models + validation results
Must never: Route, decide, or execute — purely interpretation and typing
G

Gluon

Workflow Composition

The strong force that binds quarks into hadrons — composition and binding

Workflow graph / DSL with fan-out, fan-in, conditional branching, and compensation logic. Workflows are declared, serializable, and versioned data, not embedded code.

Outputs: Workflow definitions + compiled ActionPlans + compensation plans
Must never: Bypass Higgs policy — all composed actions remain policy-filtered
G

Graviton

Time & Scheduling

Mediates gravity — the force defined by spacetime

Cron triggers, delays, SLA timers, polling schedules. All time-derived events re-enter the field through the canonical path as EventEnvelopes.

Outputs: Time-derived EventEnvelopes + timer state + schedule metadata
Must never: Execute side effects directly — output is always an EventEnvelope or timer state transition
M

Muon

Sandbox Execution

Heavier cousin of the electron — exists briefly, does work, decays

Safe execution of user-defined transforms and logic within strict sandbox boundaries. Resource-limited, no network access by default, deterministic execution.

Outputs: Deterministic transform results + sandbox execution logs + resource metrics
Must never: Allow arbitrary privileged execution, escape sandbox isolation