refactor: complete vocabulary renames — BenchmarkSpec→EvalSpec, TestRunner→EvalRunner (#166)#222
Merged
Merged
Conversation
…unner→EvalRunner (#166) Rename Go identifiers to align with eval/task vocabulary: - BenchmarkSpec → EvalSpec (models/spec.go) - LoadBenchmarkSpec → LoadEvalSpec (models/spec.go) - BenchmarkConfig → EvalConfig (config/config.go) - NewBenchmarkConfig → NewEvalConfig (config/config.go) - TestRunner → EvalRunner (orchestration/runner.go) - TestStimulus → TaskStimulus (models/testcase.go) - TestExpectation → TaskExpectation (models/testcase.go) All YAML and JSON struct tags are unchanged for backward compatibility. Type aliases and wrapper functions provided for all renamed exports. TestCase intentionally NOT renamed (Go convention, too deeply embedded). Updates README.md and AGENTS.md to reflect new names. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
github-actions Bot
pushed a commit
that referenced
this pull request
Apr 28, 2026
- Add .agent.md coverage to quick-start.mdx, getting-started.mdx, docs/GETTING-STARTED.md, docs/GUIDE.md, docs/TUTORIAL.md for #226 - Add custom-agent, required-skills-demo, rubrics to examples/README.md - Update mock engine description in docs/INTEGRATION-TESTING.md and eval-yaml.mdx to reflect #228 file content echo behavior - No stale BenchmarkSpec/TestRunner refs found (#222 rename was thorough) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This was referenced Apr 28, 2026
Merged
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.
Closes #166
Summary
Completes the vocabulary rename from Benchmark/Test terminology to Eval/Task terminology across the Go codebase.
Renames performed
BenchmarkSpecEvalSpecLoadBenchmarkSpecLoadEvalSpecBenchmarkConfigEvalConfigNewBenchmarkConfigNewEvalConfigTestRunnerEvalRunnerTestStimulusTaskStimulusTestExpectationTaskExpectationBackward compatibility
type BenchmarkSpec = EvalSpec, etc.) provided for all renamed exportsLoadBenchmarkSpec,NewBenchmarkConfig,NewTestRunner) delegate to new namesTestCaseintentionally NOT renamed (Go convention, deeply embedded)Verification
go build ./...✅go test ./...✅ (all 48 packages pass)go vet ./...✅35 files changed across cmd/, internal/, docs.