UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

18 lines 670 B
/** * MCPsmith Server Generator * * Generates complete MCP servers from analyzer results. * * @architecture @.aiwg/architecture/mcpsmith-architecture.md - Section 5.5 * @implements @.aiwg/architecture/decisions/ADR-014-mcpsmith-mcp-server-generator.md */ import type { GeneratorOptions, GeneratedServer } from './types.js'; /** * Generate MCP server from analyzer result */ export declare function generateServer(options: GeneratorOptions): Promise<GeneratedServer>; /** * Update registry with new server */ export declare function updateRegistry(registryPath: string, serverId: string, serverInfo: any): Promise<void>; //# sourceMappingURL=generator.d.ts.map