/ skills / bundled / verifyContent.ts
verifyContent.ts
 1  // Content for the verify bundled skill.
 2  // Each .md file is inlined as a string at build time via Bun's text loader.
 3  
 4  import cliMd from './verify/examples/cli.md'
 5  import serverMd from './verify/examples/server.md'
 6  import skillMd from './verify/SKILL.md'
 7  
 8  export const SKILL_MD: string = skillMd
 9  
10  export const SKILL_FILES: Record<string, string> = {
11    'examples/cli.md': cliMd,
12    'examples/server.md': serverMd,
13  }