476f154ef5
Convert grep, glob, ast-grep, and session-manager tools from static exports to factory functions that receive PluginInput context. This allows them to use ctx.directory instead of process.cwd(), fixing issue #658 where tools search from wrong directory in OpenCode Desktop app. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
6 lines
355 B
TypeScript
6 lines
355 B
TypeScript
export { createAstGrepTools } from "./tools"
|
|
export { ensureAstGrepBinary, getCachedBinaryPath, getCacheDir } from "./downloader"
|
|
export { getAstGrepPath, isCliAvailable, ensureCliAvailable, startBackgroundInit } from "./cli"
|
|
export { checkEnvironment, formatEnvironmentCheck } from "./constants"
|
|
export type { EnvironmentCheckResult } from "./constants"
|