Interface AutonomyConfig

interface AutonomyConfig {
    allowHumanPrompting: boolean;
    allowConfigEdits: boolean;
    allowToolChanges: boolean;
    allowedHumanActions?: string[];
    genesisEventId?: string;
}

Properties

allowHumanPrompting: boolean

Whether human prompting is allowed after genesis.

allowConfigEdits: boolean

Whether humans can edit agent configuration after genesis.

allowToolChanges: boolean

Whether humans can add/remove tools after genesis.

allowedHumanActions?: string[]

Whitelist of specific human actions allowed even in restricted mode.

genesisEventId?: string

Genesis event ID (set automatically on first sealed activation).