/** * `openlore working-set` — assemble the structural briefing a change needs * (change: add-working-set-context-briefing). * * `context --change ` assembles a single deterministic, token-budgeted * briefing spanning the change's target repositories in a configured spec-store * binding — `orient`, generalized from one repo to the change's targets. The * briefing is per-target attributed and conclusion-shaped. Read-only; it never * blocks and always exits 0 (an unbriefable change is reported, not fatal). */ import { Command } from 'commander'; export interface WorkingSetContextCliOptions { cwd?: string; change?: string; tokenBudget?: number; json?: boolean; } /** * Run `working-set context`. Read-only; returns the process exit code (always 0 — * the command reports a briefing, it never fails the caller). Exported for testing. */ export declare function runWorkingSetContextCli(opts: WorkingSetContextCliOptions): Promise; export declare const workingSetCommand: Command; //# sourceMappingURL=working-set.d.ts.map