-
Notifications
You must be signed in to change notification settings - Fork 19
fix: stop copying root tool installs into sandbox home #181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
7dc18fc
release: benchflow 0.3.0 — Scene lifecycle, multi-agent, CLI redesign
xdotli 30dbe21
fix: skip model/API-key validation for oracle agent
EYH0602 360c460
fix: don't assign default model to oracle agent
EYH0602 a099ff9
Merge pull request #173 from EYH0602/fix/oracle-skip-api-key-check
xdotli 9b57b2a
fix: oracle agent — chokepoint guard, drop orphan eval CLI, helper
EYH0602 796f589
test: regression suite pinning oracle chokepoint + orphan removal
EYH0602 88bd026
fix: restore cli/eval.py and test_eval_cli.py, apply oracle guard
EYH0602 bc04c59
docs: clarify cli/eval.py and test_eval_cli.py are not wired into liv…
EYH0602 144b6dc
Merge pull request #174 from EYH0602/fix/oracle-chokepoint-and-cleanup
xdotli 9459a23
docs(plan): add plan to fix sandbox io problem
EYH0602 f18bab6
test: lock sandbox setup contract
EYH0602 0f9b320
fix: stop copying root tool installs into sandbox home
EYH0602 13f06b7
refactor: derive sandbox home dirs from registry config
EYH0602 df07322
refactor: symlink skills into sandbox, enforce shared install prefixes
EYH0602 cbca495
chore: remove completed sandbox plan doc
EYH0602 0bf476a
Merge remote-tracking branch 'origin/dev-0.3' into pr-181-rebase
xdotli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 deploy_skills uses wrong source path when skills are already injected via Dockerfile
When
skills_diris provided AND the Dockerfile already containsCOPY _deps/skills /skills/(thealready_injectedpath atsrc/benchflow/_agent_setup.py:126),effective_skillsstays set totask_skills_dir(line 117) instead of being updated to"/skills". In the old code,effective_skills = "/skills" if skills_dir else task_skills_dirunconditionally set it to"/skills"wheneverskills_dirwas truthy, which correctly covered this case.If
task_skills_dirisNone(common when the task doesn't declareenvironment.skills_dir), the condition at line 139 (if effective_skills and ...) isFalse, so no skill linking happens at all — skills are silently not distributed to agent discovery paths despite being present at/skillsin the container.Was this helpful? React with 👍 or 👎 to provide feedback.