UNPKG

@webdevtoday/grok-cli

Version:

A sophisticated CLI tool for interacting with xAI Grok 4, featuring conversation history, file reference, custom commands, memory system, and genetic development workflows

22 lines 607 B
/** * Bash command execution tool */ import { BaseTool } from './base'; import type { ToolResult } from '../types'; export interface BashParams { command: string; timeout?: number; cwd?: string; env?: Record<string, string>; } /** * Tool for executing bash commands */ export declare class BashTool extends BaseTool { constructor(); validateParams(params: Record<string, unknown>): boolean; execute(params: Record<string, unknown>): Promise<ToolResult>; getParameterSchema(): Record<string, unknown>; getUsageExamples(): string[]; } //# sourceMappingURL=bash.d.ts.map