Preflight and Orchestrator
Preflight commands
The [preflight] section defines the commands that subagents run to verify their work. Language-specific defaults are provided automatically based on the project language, but you can override them.
[preflight]
build = "cargo build --workspace"
test = "cargo test --workspace"
lint = "cargo clippy --workspace -- -D warnings"
If omitted, Wiggum uses the defaults from the selected language profile.
Orchestrator configuration
The [orchestrator] section configures the generated orchestrator prompt.
[orchestrator]
persona = "You are a senior Rust software engineer"
rules = [
"Never log tokens at any log level",
"Keep domain crate free of I/O dependencies",
"Rust edition 2024, stable toolchain",
]
Fields
| Field | Required | Description |
|---|---|---|
persona | No | The subagent persona baked into every task prompt |
rules | No | Project-specific rules included in each subagent prompt |