export function getToolInputString(toolName: string, parameters: Record<string, unknown> | undefined, rawArguments: string | undefined): string | undefined {
return undefined;
}
if (SHELL_TOOL_NAMES.has(toolName) || WRITE_SHELL_TOOL_NAMES.has(toolName)) {
copilotToolDisplay.ts
const args = parameters as ICopilotShellToolArgs | undefined;
// Custom tool overrides may wrap the args: { kind: 'custom-tool', args: { command: '...' } }