UNPKG

repomix

Version:

A tool to pack repository contents to single file for AI consumption

13 lines (12 loc) 374 B
export interface SkillRenderContext { skillName: string; skillDescription: string; projectName: string; totalFiles: number; totalLines: number; totalTokens: number; hasTechStack: boolean; sourceUrl?: string; } export declare const getSkillTemplate: () => string; export declare const generateSkillMd: (context: SkillRenderContext) => string;