summaryrefslogtreecommitdiffhomepage
path: root/packages/tool-shell/src/extension.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/tool-shell/src/extension.ts')
-rw-r--r--packages/tool-shell/src/extension.ts32
1 files changed, 16 insertions, 16 deletions
diff --git a/packages/tool-shell/src/extension.ts b/packages/tool-shell/src/extension.ts
index 984263e..74e0ac9 100644
--- a/packages/tool-shell/src/extension.ts
+++ b/packages/tool-shell/src/extension.ts
@@ -3,20 +3,20 @@ import type { Extension } from "@dispatch/kernel";
import { createRunShellTool } from "./shell.js";
export const extension: Extension = {
- manifest: {
- id: "tool-shell",
- name: "Shell Tool",
- version: "0.0.0",
- apiVersion: "^0.1.0",
- trust: "bundled",
- activation: "eager",
- capabilities: { shell: true },
- contributes: { tools: ["run_shell"] },
- // Host activates exec-backend first → host.getService at activation is safe.
- dependsOn: ["exec-backend"],
- },
- activate(host) {
- const resolveBackend = host.getService(execBackendHandle);
- host.defineTool(createRunShellTool({ workdir: process.cwd(), resolveBackend }));
- },
+ manifest: {
+ id: "tool-shell",
+ name: "Shell Tool",
+ version: "0.0.0",
+ apiVersion: "^0.1.0",
+ trust: "bundled",
+ activation: "eager",
+ capabilities: { shell: true },
+ contributes: { tools: ["run_shell"] },
+ // Host activates exec-backend first → host.getService at activation is safe.
+ dependsOn: ["exec-backend"],
+ },
+ activate(host) {
+ const resolveBackend = host.getService(execBackendHandle);
+ host.defineTool(createRunShellTool({ workdir: process.cwd(), resolveBackend }));
+ },
};