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.
researcher/benchmarks/sdk-runner/package.json
1{2"name": "researcher-sdk-runner",3"version": "0.1.0",4"private": true,5"description": "Cursor SDK-based benchmark runner for the researcher operating system. Runs router and effectiveness benchmarks against the skill corpus.",6"type": "module",7"engines": {8"node": ">=20"9},10"scripts": {11"typecheck": "tsc -p tsconfig.json",12"router:dry-run": "node --experimental-strip-types src/runRouter.ts --dry-run",13"router:run": "node --experimental-strip-types src/runRouter.ts",14"effectiveness:dry-run": "node --experimental-strip-types src/runEffectiveness.ts --dry-run",15"effectiveness:run": "node --experimental-strip-types src/runEffectiveness.ts"16},17"dependencies": {18"@cursor/sdk": "^1.0.13"19},20"devDependencies": {21"typescript": "^5.6.0",22"@types/node": "^20.0.0"23}24}25