mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices
14 lines • 480 B
TypeScript
import { BaseDiagramHandler } from "./base.handler.js";
/**
* Handler for git graph diagrams.
* Generates git commit history visualizations.
*/
export declare class GitGraphHandler extends BaseDiagramHandler {
readonly diagramType = "git-graph";
generate(description: string, theme?: string): string;
/**
* Parse natural language description to extract git information.
*/
private parseGitDescription;
}
//# sourceMappingURL=git-graph.handler.d.ts.map