Agent Runtime Configuration Validation

Reliability · updated Fri Feb 27

Verifying environment variables and configuration schemas before the agent begins execution.

Steps

  1. Validate all ENV variables against a strict Zod/Pydantic schema on boot.
  2. Ensure no 'Default' credentials are active in production environments.
  3. Perform a 'Dry-Run' connectivity check to all required tool APIs (Salesforce, Slack, etc.).
  4. Verify 'Read-Only' file permissions for agent-inaccessible system configs.
  5. Fail-fast: Terminate the process immediately if a required config is missing or malformed.

view raw JSON →