Filemedium importancesource

verifyContent.ts

skills/bundled/verifyContent.ts

14
Lines
414
Bytes
2
Exports
3
Imports
10
Keywords

What this is

This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.

Beginner explanation

This file is one piece of the larger system. Its name, directory, imports, and exports show where it fits. Start by reading the exports and related files first.

How it is used

Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.

Expert explanation

Architecturally, this file intersects with planner-verifier-agents. It contains 14 lines, 3 detected imports, and 2 detected exports.

Important relationships

Detected exports

  • SKILL_MD
  • SKILL_FILES

Keywords

verifyexamplesskillclimdservermdserverskillmdcontentbundledeach

Detected imports

  • ./verify/examples/cli.md
  • ./verify/examples/server.md
  • ./verify/SKILL.md

Source notes

This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.

Open parent directory

Full source

// 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,
}