@ace-sdk/cli
Version:
ACE CLI - Command-line tool for intelligent pattern learning and playbook management
19 lines • 442 B
TypeScript
/**
* Cache management command
*/
interface CacheOptions {
type?: 'ram' | 'sqlite' | 'all';
}
interface CacheRecallOptions {
session: string;
}
/**
* Clear local cache
*/
export declare function cacheCommand(options: CacheOptions): Promise<void>;
/**
* Recall patterns from a pinned session
*/
export declare function cacheRecallCommand(options: CacheRecallOptions): Promise<void>;
export {};
//# sourceMappingURL=cache.d.ts.map