summaryrefslogtreecommitdiffhomepage
path: root/packages/tool-shell/src/extension.ts
blob: 984263e2cb19f69c38d24720f48e5ba940634c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { execBackendHandle } from "@dispatch/exec-backend";
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 }));
	},
};