UNPKG

codecrucible-synth

Version:

Production-Ready AI Development Platform with Multi-Voice Synthesis, Smithery MCP Integration, Enterprise Security, and Zero-Timeout Reliability

20 lines 840 B
/** * Git Manager Agent - Handles git operations and version control * Integrates with the existing UnifiedAgent system */ import { UnifiedAgent } from '../agent.js'; import { ExecutionResponse } from '../types.js'; import { UnifiedModelClient } from '../../refactor/unified-model-client.js'; import { PerformanceMonitor } from '../../utils/performance.js'; export declare class GitManagerAgent extends UnifiedAgent { constructor(modelClient: UnifiedModelClient, performanceMonitor: PerformanceMonitor); processRequest(input: string): Promise<ExecutionResponse>; private isGitOperation; private handleGitOperation; private formatGitOutput; private formatStatusOutput; private formatLogOutput; private formatBranchOutput; private enhanceWithGitContext; } //# sourceMappingURL=git-manager-agent.d.ts.map