(filePath: string)
| 6 | |
| 7 | export const OpenSlimeditPlugin: Plugin = async ({ directory }) => { |
| 8 | function resolvePath(filePath: string): string { |
| 9 | if (path.isAbsolute(filePath)) return path.normalize(filePath) |
| 10 | return path.resolve(directory, filePath) |
| 11 | } |
| 12 | |
| 13 | return { |
| 14 | // Aggressively shorten ALL tool descriptions |
no outgoing calls
no test coverage detected