Documentation Index
Fetch the complete documentation index at: https://iii.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
The engine is just a router
Think of the engine like a router, it receives requests, routes them to workers, and routes responses back as needed.Engine configuration
The iii engine starts from aconfig.yaml file at your project root. Pass --config <path> to
point at a different file, or --use-default-config to start with a default set of workers (handy
for first-run and scratch work).
Configuration file structure
config.yaml has a single top-level key, workers:, that lists the workers the engine should load.
Each entry has a name (a registry slug or local worker name) and a config block whose shape is
defined by that worker.
Workers do not need to be running alongside iii; configuring them in config.yaml is a convenience. A worker
can be deployed anywhere and only needs a connection string to the iii instance. See
Creating Workers / Connecting to the engine for more information.
Environment variable expansion
Values inconfig.yaml support ${VAR:default} syntax. The expansion uses the value of the
environment variable VAR, falling back to default when the variable is not set. Use this to swap
ports, URLs, and feature flags per environment without forking the config file.
Default configuration
Runiii --use-default-config to start the engine with a default set of workers without writing a
config.yaml. Useful for first-run and scratch work. Once you need to customize ports, adapters, or
the set of workers, switch to a real config.yaml.