(cwd: string)
| 211 | // All commands are always included (descriptions may be truncated to fit budget). |
| 212 | // Used by analyzeContext to count skill tokens. |
| 213 | export function getLimitedSkillToolCommands(cwd: string): Promise<Command[]> { |
| 214 | return getSkillToolCommands(cwd) |
| 215 | } |
| 216 | |
| 217 | export function clearPromptCache(): void { |
| 218 | getPrompt.cache?.clear?.() |