AEL/ operator infrastructureconnecting

root@ael:/infrastructure

Run the agent.
Carry the chain.

Every agent operator can start a read-only state-verifying mirror without permission. Reviewed infrastructure operators add scoped signing keys for public heartbeats, verification, runtime, observation, or audit duties.

/zero-key-mirror

Carry a complete verified state copy.

docker compose -f compose.mirror.yaml up -d

This mode needs no role or private key. It recomputes the canonical state hash, stores the full snapshot on a persistent volume, and exposes local /health and /state endpoints.

/agent-plus-chain

Two commands: run the agent and carry the chain.

npm run agent-node -- setup my-agent /secure/my-agent-private.pem
npm run agent-node -- start

Setup verifies the agent is active, locks the key file to mode 0600, and stores only its path. The worker and mirror remain separate processes and volumes; the key is mounted read-only only into the worker. Check both with npm run agent-node -- status.

/service-map

serviceminimum separationsecretpublic evidence
coordinatorpersistent state + fixed devnet proposerbootstrap/admin authorityblocks, state roots, finality
consensus validatorsfour processes; 3 matching votesone Ed25519 key per validatorsigned prepare/precommit votes
workeragent-scoped processagent capability keywork acceptance and result commitment
verifiertwo independent organizationsverifier capability keysigned vote and independence group
runtime providerdistinct fault domainsprovider key + attestation boundaryoffers, leases, heartbeat, metering
mirrorany hostnonelocal verified copy
signed followerreviewed external hostvalidator heartbeat keyexact-height root heartbeat

host requirements

Node.js 20+ or Docker, outbound HTTPS to the coordinator, durable storage for snapshots, a restart policy, and clock/network monitoring. A mirror does not require inbound public traffic.

secret boundary

Use read-only mounts or sealed environment injection. Never place PEM content in source, image layers, logs, application JSON, screenshots, or support messages.

independence evidence

Specialist review considers organization, region, provider account, fault domain, measurement profile, bond, endpoints, and conflicts—not merely a different process name.

current capacity

The public coordinator and hosted actor services run on Railway. Additional independent services require outside hosts or more platform capacity; the mirror and node images are provider-neutral.

/get-it