/** * Quick-lane task classification (issue #3984). * * Read-only classification surface for the quick lane: prints whether a task * request is eligible for the quick lane (bounded, direct execution) or must * keep the existing deep path (planning/interview). This performs no routing * and mutates nothing — it only exposes the deterministic classifier so task * classification can be inspected, audited, and consumed by tooling. */ import { Command } from "@gajae-code/utils/cli"; export default class QuickLane extends Command { static description: string; static args: { action: import("@gajae-code/utils/cli").ArgDescriptor & { description: string; required: true; options: string[]; }; text: import("@gajae-code/utils/cli").ArgDescriptor & { description: string; required: true; multiple: true; }; }; static flags: { json: import("@gajae-code/utils/cli").FlagDescriptor<"boolean"> & { description: string; }; }; static examples: string[]; run(): Promise; }