MCPcopy Index your code
hub / github.com/atomicdotdev/atomic / ToolCall

Interface ToolCall

packages/opencode-atomic-hooks/src/index.ts:5–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { join } from "path";
4
5interface ToolCall {
6 tool: string;
7 callID: string;
8 sessionID: string;
9 status: string;
10 input?: Record<string, unknown>;
11 output?: string;
12 startTime: number;
13}
14
15// DEBUG: Safe deep-inspect that handles circular refs + truncates big strings
16function inspect(value: unknown, maxStringLen = 500, maxDepth = 6): string {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected