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

14 lines 883 B
/** * Context-finalization pass for generated provider context files. * * Templates provide the stable structure; this pass stitches in current * workspace facts from `.aiwg/aiwg.config` and the discover-first protocol so * provider context files do not remain template-only (#1365). */ export declare const FINALIZATION_START = "<!-- aiwg-context-finalization:START -->"; export declare const FINALIZATION_END = "<!-- aiwg-context-finalization:END -->"; export declare function buildContextFinalizationBlock(projectPath: string): Promise<string>; export declare function replaceOrAppendFinalizationBlock(content: string, block: string): string; export declare function buildNormalizedAiwgMd(projectPath: string, existing?: string): Promise<string>; export declare function writeNormalizedAiwgMd(projectPath: string): Promise<string>; //# sourceMappingURL=finalization.d.ts.map