/** * Context Command - Generate package-scoped AI context * * @license Apache-2.0 * * Generates AI-optimized context for specific packages in a monorepo. * Minimizes token usage by scoping patterns, constraints, and examples * to only what's relevant for the target package. * * Usage: * drift context @drift/core # Generate context for a package * drift context packages/core # By path * drift context @drift/core --format ai # AI-optimized format * drift context @drift/core --snippets # Include code snippets * drift context --list # List all packages */ import { Command } from 'commander'; export declare const contextCommand: Command; //# sourceMappingURL=context.d.ts.map