@karmaniverous/jeeves
    Preparing search index...

    Variable WORKSPACE_CONFIG_DEFAULTSConst

    WORKSPACE_CONFIG_DEFAULTS: {
        core: {
            configRoot: "./config";
            gatewayUrl: "http://127.0.0.1:3000";
            workspace: ".";
        };
        memory: { budget: 20000; staleDays: 30; warningThreshold: 0.8 };
    } = ...

    Built-in workspace config defaults.

    Type Declaration

    • Readonlycore: { configRoot: "./config"; gatewayUrl: "http://127.0.0.1:3000"; workspace: "." }

      Core shared defaults.

      • ReadonlyconfigRoot: "./config"

        Default platform config root path.

      • ReadonlygatewayUrl: "http://127.0.0.1:3000"

        Default OpenClaw gateway URL.

      • Readonlyworkspace: "."

        Default workspace root path.

    • Readonlymemory: { budget: 20000; staleDays: 30; warningThreshold: 0.8 }

      Memory hygiene shared defaults.

      • Readonlybudget: 20000

        Default MEMORY.md character budget.

      • ReadonlystaleDays: 30

        Default staleness threshold in days.

      • ReadonlywarningThreshold: 0.8

        Default warning threshold as a fraction of budget (80%).

    These defaults are used as the lowest-priority tier in config resolution (below CLI flags, env vars, and jeeves.config.json values).