open-nav
    Preparing search index...

    Interface ResolvedConfig

    Configuration from the environment, using the same variables as the CLI so one .env serves both.

    Credentials are never taken as tool arguments. A tool argument travels through the agent's context and its transcript; an environment variable does not.

    interface ResolvedConfig {
        baseUrl?: string;
        credentials?: NavCredentials;
        environment: "test" | "production";
        missing: string[];
        software?: SoftwareType;
    }
    Index
    baseUrl?: string
    credentials?: NavCredentials
    environment: "test" | "production"
    missing: string[]

    Which required variables are absent, if any.

    software?: SoftwareType