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/package.json
1{2"name": "llm-as-judge-skills",3"version": "1.0.0",4"description": "LLM-as-a-Judge evaluation skills built with AI SDK - Direct scoring, pairwise comparison, and rubric generation tools",5"type": "module",6"main": "dist/index.js",7"types": "dist/index.d.ts",8"exports": {9".": {10"import": "./dist/index.js",11"types": "./dist/index.d.ts"12}13},14"files": [15"dist",16"README.md",17"LICENSE"18],19"scripts": {20"build": "tsc",21"dev": "tsx watch src/index.ts",22"start": "node dist/index.js",23"test": "vitest run",24"test:watch": "vitest",25"test:coverage": "vitest run --coverage",26"lint": "eslint src tests examples",27"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\"",28"typecheck": "tsc --noEmit",29"prepublishOnly": "npm run build",30"example:basic": "tsx examples/basic-evaluation.ts",31"example:compare": "tsx examples/pairwise-comparison.ts",32"example:rubric": "tsx examples/generate-rubric.ts",33"example:full": "tsx examples/full-evaluation-workflow.ts"34},35"keywords": [36"ai",37"agents",38"llm",39"evaluation",40"llm-as-judge",41"ai-sdk",42"openai",43"gpt",44"machine-learning",45"natural-language-processing"46],47"author": "Muratcan Koylan",48"license": "MIT",49"repository": {50"type": "git",51"url": "git+https://github.com/muratcankoylan/llm-as-judge-skills.git"52},53"bugs": {54"url": "https://github.com/muratcankoylan/llm-as-judge-skills/issues"55},56"homepage": "https://github.com/muratcankoylan/llm-as-judge-skills#readme",57"dependencies": {58"ai": "^4.0.0",59"@ai-sdk/openai": "^1.0.0",60"@ai-sdk/anthropic": "^1.0.0",61"zod": "^3.23.0",62"dotenv": "^16.4.0"63},64"devDependencies": {65"@types/node": "^22.0.0",66"typescript": "^5.6.0",67"typescript-eslint": "^8.0.0",68"tsx": "^4.19.0",69"vitest": "^2.1.0",70"@vitest/coverage-v8": "^2.1.0",71"@eslint/js": "^9.0.0",72"eslint": "^9.0.0",73"prettier": "^3.4.0"74},75"engines": {76"node": ">=18.0.0"77}78}7980