/** * schema-domain-fleet.ts, the fleet config domain (`fleet.*`). * * `fleet.maxSize` is the ONE agent ceiling ("Maximum fleet size", owner-named * 2026-07-13): native spawned agents, ACP-hosted rows, and elastic fixers all * count against it, no per-path sibling caps, ever. It renamed from the * legacy `orchestration.maxActiveAgents` (invisible key migration with a * one-line receipt; spawn refusals name this key). The cap counts * RESPONSIBILITY, not visibility: only agents the daemon spawned/hosts count * (see runtime/orchestration/fleet-count.ts). */ import { type ConfigSettingDefinition } from './schema-shared.js'; /** Fleet policy (`fleet.*`). */ export interface FleetConfig { maxSize: number; } declare module './schema-types.js' { interface GoodVibesConfig { fleet: FleetConfig; } } export declare const fleetConfigDefaults: { fleet: FleetConfig; }; export declare const fleetConfigSettings: ConfigSettingDefinition[]; //# sourceMappingURL=schema-domain-fleet.d.ts.map