source dump of claude code
at main 13 lines 414 B view raw
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 4import cliMd from './verify/examples/cli.md' 5import serverMd from './verify/examples/server.md' 6import skillMd from './verify/SKILL.md' 7 8export const SKILL_MD: string = skillMd 9 10export const SKILL_FILES: Record<string, string> = { 11 'examples/cli.md': cliMd, 12 'examples/server.md': serverMd, 13}