Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/llm-as-judge-skills/src/index.ts
1// Configuration2export { config, validateConfig } from './config/index.js';34// Tools5export * from './tools/evaluation/index.js';67// Agents8export * from './agents/index.js';910// Re-export types for convenience11export type {12DirectScoreInput,13DirectScoreOutput,14PairwiseCompareInput,15PairwiseCompareOutput,16GenerateRubricInput,17GenerateRubricOutput18} from './tools/evaluation/index.js';1920