@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
14 lines • 526 B
TypeScript
/**
* Tools module exports
*/
export { BaseTool, ToolRegistry, ToolExecutor } from './base';
export { BashTool } from './bash';
export { ReadTool } from './read';
export { WriteTool } from './write';
export { TmuxTool } from './tmux';
export { CustomTool } from './custom';
export { McpTool, McpToolManager } from './mcp';
import { BaseTool, ToolRegistry } from './base';
export declare function createDefaultTools(): BaseTool[];
export declare function setupToolRegistry(): ToolRegistry;
//# sourceMappingURL=index.d.ts.map