[feat][evaluation] add RunModeConfig.SkillsMode for sandbox agent skills - #645
Merged
Conversation
Add skills_mode field to RunModeConfig (domain/openapi IDL + entity + convertor), declaring how sandbox-agent experiment combines test-case-level and experiment-level Agent Skills (merge / disable_test_case). The field rides on the experiment-level RunModeConfig, emitted to case-file experiment_info.skills_mode by the commercial fork; the test-case-level skills list is carried separately. Forward-compatible (optional field). Co-Authored-By: Claude <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #645 +/- ##
========================================
Coverage 78.47% 78.48%
========================================
Files 696 696
Lines 85755 85978 +223
========================================
+ Hits 67299 67478 +179
- Misses 14520 14567 +47
+ Partials 3936 3933 -3
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 10 files with indirect coverage changes Continue to review full report in Codecov by Harness.
🚀 New features to boost your workflow:
|
…overage Co-Authored-By: Claude <noreply@anthropic.com>
Tiny1028
approved these changes
Sep 2, 2026
xueyizheng
approved these changes
Sep 2, 2026
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.
Background
Add
skills_modetoRunModeConfig, declaring how a sandbox-agent experiment combines test-case-level and experiment-level Agent Skills (merge/disable_test_case). Forward-compatible (optional field).This is the OSS half of a two-repo change. The commercial fork (
cozeloop-commercial) emits this field to the case-fileexperiment_info.skills_mode, and carries the test-case-levelskillslist todataset_item.skills(aligned with runtimetestcase.TestCase.Skills). See companion commercial MR.Changes
idl/thrift/.../domain/expt.thrift+domain_openapi/experiment.thrift: addskills_modefield toRunModeConfigbackend/.../domain/entity/expt.go:RunModeConfig.SkillsModebackend/.../application/convertor/experiment/{expt,openapi}.go: wire the field through convertorsbackend/kitex_gen/...: regenerated viacode_gen.shVerification
cd backend && go build ./...🤖 Generated with Claude Code