/** * Return skill names for tab-completion of `skaile skill show `. * * @docLink cli/dev-guide#completion */ export declare function resolveSkillNames(): string[]; /** * Return skill domain names for tab-completion of `skaile skill list `. * * @docLink cli/dev-guide#completion */ export declare function resolveDomains(): string[]; /** * Return flow IDs for tab-completion of `skaile run ` and `skaile flow show `. * * Always resolves against the cwd project — `resolveDynamic` dispatches on * argv position, so it only fires when the flow id is the first argument and * never sees a `--project-dir`. The command itself still honours that flag. * * @docLink cli/dev-guide#completion */ export declare function resolveFlowIds(): string[]; /** * Return session run-IDs for tab-completion of `skaile session show/switch/delete `. * * Synchronous filesystem walk — completer callers cannot await. Reads filenames * from `/.skaile/sessions/*.json` without parsing each session file. * * @param projectDir - Project directory to scan for sessions. * @docLink cli/dev-guide#completion */ export declare function resolveSessionIds(projectDir: string): string[]; /** * Static list of config key names for tab-completion of `skaile config get/set `. * * @docLink cli/dev-guide#completion */ export declare const CONFIG_KEYS: string[]; //# sourceMappingURL=complete-resolvers.d.ts.map