UNPKG

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 472 B
/** * Constitution parser - extracts structured data from CONSTITUTION.md * * @module strategies/speckit/constitution-parser */ import type { Constitution } from "./types.js"; /** * Parse a CONSTITUTION.md document into structured data * * @param content - The markdown content of CONSTITUTION.md * @returns Structured constitution data */ export declare function parseConstitution(content: string): Constitution; //# sourceMappingURL=constitution-parser.d.ts.map