diff options
| author | Dax Raad <[email protected]> | 2026-02-12 09:54:47 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-02-12 09:54:47 -0500 |
| commit | 56ad2db02055955f926fda0e4a89055b22ead6f9 (patch) | |
| tree | 0dabf971ce275bc1323e851fe22a39feb75acb40 /packages/plugin | |
| parent | ae811ad8d249c5d37622c26f2078eb0bef40087b (diff) | |
| download | opencode-56ad2db02055955f926fda0e4a89055b22ead6f9.tar.gz opencode-56ad2db02055955f926fda0e4a89055b22ead6f9.zip | |
core: expose tool arguments in shell hook for plugin visibility
Diffstat (limited to 'packages/plugin')
| -rw-r--r-- | packages/plugin/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/plugin/src/index.ts b/packages/plugin/src/index.ts index 4cc84a5f3..664f2c967 100644 --- a/packages/plugin/src/index.ts +++ b/packages/plugin/src/index.ts @@ -187,7 +187,7 @@ export interface Hooks { ) => Promise<void> "shell.env"?: (input: { cwd: string }, output: { env: Record<string, string> }) => Promise<void> "tool.execute.after"?: ( - input: { tool: string; sessionID: string; callID: string }, + input: { tool: string; sessionID: string; callID: string; args: any }, output: { title: string output: string |
