Files
xiaoju 99619d85db
CI / check (pull_request) Successful in 1m42s
feat: eval package scaffold with CLI, schemas, types, task loader
New package @united-workforce/eval (uwf-eval CLI):

- CLI skeleton: run/report/diff/list subcommands (stubs)
- 5 OCAS schemas: eval-run, judge-frontmatter, judge-upstream,
  judge-hallucination, judge-token-stats
- TaskManifest type + parser/validator for task.yaml
- JudgeOutput/JudgeInput types for judge contract
- EvalRunPayload/EvalRunConfig/EvalJudgeRecord storage types
- 19 unit tests: task loader validation + schema definitions

Refs #69
2026-06-04 23:42:16 +00:00

32 lines
823 B
JSON

{
"files": [],
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"exactOptionalPropertyTypes": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"outDir": "dist",
"types": ["node"]
},
"references": [
{ "path": "packages/util" },
{ "path": "packages/protocol" },
{ "path": "packages/util-agent" },
{ "path": "packages/agent-hermes" },
{ "path": "packages/agent-builtin" },
{ "path": "packages/agent-mock" },
{ "path": "packages/agent-claude-code" },
{ "path": "packages/cli" },
{ "path": "packages/eval" }
]
}