📄 File detail

skills/bundled/verifyContent.ts

🧩 .ts📏 14 lines💾 414 bytes📝 text
← Back to All Files

🎯 Use case

This file lives under “skills/”, which covers skill discovery, bundled skills, and MCP skill builders. On the API surface it exposes SKILL_MD and SKILL_FILES — mainly types, interfaces, or factory objects. It composes internal code from verify (relative imports). What the file header says: Content for the verify bundled skill. Each .md file is inlined as a string at build time via Bun's text loader.

Generated from folder role, exports, dependency roots, and inline comments — not hand-reviewed for every path.

🧠 Inline summary

Content for the verify bundled skill. Each .md file is inlined as a string at build time via Bun's text loader.

📤 Exports (heuristic)

  • SKILL_MD
  • SKILL_FILES

🖥️ Source preview

// Content for the verify bundled skill.
// Each .md file is inlined as a string at build time via Bun's text loader.

import cliMd from './verify/examples/cli.md'
import serverMd from './verify/examples/server.md'
import skillMd from './verify/SKILL.md'

export const SKILL_MD: string = skillMd

export const SKILL_FILES: Record<string, string> = {
  'examples/cli.md': cliMd,
  'examples/server.md': serverMd,
}