AdlProjectConfig
Defined in: packages/core/src/project/config.ts:16
Shape of adl.config.* at a project root.
Registry arrays are indexed on load and again on LoadedAdlProject.reload.
Runtime: set adl on the config default export. In project code, import the runtime
via a tsconfig path alias (recommended: #adl → ./src/adl.ts). Tooling uses
loadAdlProject().getAdl() — not the alias.
Properties
Section titled “Properties”
optionaladl?:AdlRuntime
Defined in: packages/core/src/project/config.ts:24
Process runtime (stores, observers). Set from src/adl.ts (recommended) or inline.
Exposed to tooling via loadAdlProject().getAdl() / config.adl.
agents?
Section titled “agents?”
optionalagents?:AnyAgent[]
Defined in: packages/core/src/project/config.ts:26
name:
string
Defined in: packages/core/src/project/config.ts:18
Human-readable project label shown in the inspection UI.
templates?
Section titled “templates?”
optionaltemplates?:Template<unknown>[]
Defined in: packages/core/src/project/config.ts:29
Registry key is template.name (filename basename).
tools?
Section titled “tools?”
optionaltools?:ToolSet
Defined in: packages/core/src/project/config.ts:38
Registry-only shared tools. Runtime merge uses AdlRuntimeConfig.tools
on createAdlRuntime — agents are created before this config object is
finished loading.
Future inspection UI: list these tools and trigger a manual tool run (same idea as starting a workflow) without going through an agent turn.
workflows?
Section titled “workflows?”
optionalworkflows?:Workflow<unknown,unknown,unknown>[]
Defined in: packages/core/src/project/config.ts:27