vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
19 lines • 968 B
TypeScript
import { CommandExecutionContext } from '../nl/command-handlers.js';
export interface ProjectContextResult {
projectId: string;
projectName: string;
source: 'session' | 'git' | 'directory' | 'package' | 'fallback';
confidence: number;
}
export interface EpicContextResult {
epicId: string;
epicName: string;
source: 'session' | 'project' | 'default' | 'fallback';
confidence: number;
}
export declare function extractProjectFromContext(context: CommandExecutionContext, projectPath?: string): Promise<ProjectContextResult>;
export declare function extractEpicFromContext(context: CommandExecutionContext, projectId?: string): Promise<EpicContextResult>;
export declare function extractTaskListContext(projectPath?: string): Promise<ProjectContextResult>;
export declare function sanitizeProjectId(projectId: string): string;
export declare function sanitizeEpicId(epicId: string): string;
//# sourceMappingURL=context-extractor.d.ts.map