feat(eval): corpus #19 — 3 v0.2 tracked-refs tasks (DRAFT spec)#57
Merged
feat(eval): corpus #19 — 3 v0.2 tracked-refs tasks (DRAFT spec)#57
Conversation
c3e2f7c to
e0ef382
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
First slice of workstream #19 (corpus expansion) per the v0.2-to-v1.0 gap-closure roadmap. Adds 3 v0.2 tracked-refs corpus tasks under
eval/tasks/, each exercising a natural-form case that requires v0.2 capability (canonical face refs surviving transforms or unambiguous booleans):fillet-translated-box—box(...).translate(...).fillet(r, { face: 'top' })subtract-then-fillet-rim—box(...).subtract(cyl).fillet(r, { face: 'top' })(the canonical "subtract.fillet" case from the gap-closure roadmap)chamfer-rotated-wedge—box(...).rotate([1,0,0], θ).chamfer(d, { face: 'top' })Each task ships with
prompt.md,solution-expert.kcad.ts, andharness.ts. Neweval/corpus-v0.2.test.tsmirrors the seed-task sanity pattern (eval/runner.test.ts) and asserts each expert solution scores 100% viarunTask+MockAgentClient.Why this slice
The dispatch order doc (PR #56) calls for Wave 1 = #19 + #21 + #22 in parallel. This is the first concrete #19 deliverable: the v0.2 module's 3-task slice (range "3–5" per the gap-closure roadmap §Corpus design). Three tasks rather than five keeps the slice reviewable; the missing 0–2 are punted to a follow-up pending controller feedback on the rubric shape.
Test Plan
npm run typecheck— cleannpm run build:cli— cleannpm test— 903 pass, 25 skipped, 0 failed (was 870 before; +3 corpus tests + a few transitive expansions)kernelcad evaluate --jsongate_pass=true, score=1viarunTask+MockAgentClientScope notes
Included: 3 task folders + 1 vitest sanity check + CHANGELOG
[Unreleased]entry.package-lock.jsonupdated to reflect the v0.2.0 version bump (the lockfile was stale at 0.1.0 in the worktree untilnpm installran).Out of scope:
Companion PR
Depends on PR #56 landing (the gap-closure scaffolding) for the corpus-design spec it references. If #56 is held for review, this PR can stand alone — it doesn't import any of #56's files at runtime.