v0.11.2: security agent (model + temp + sandbox)#15
Merged
Conversation
…box)
Joelhooks community config dedicates a 'security' agent to 'is this code
safe' reviews with the same write/edit/patch denial as plan-mode.
v0.11.2 ships the full surface mirroring planner's v0.10.2 + v0.10.5 +
v0.11.1 combo.
npx opencode-sdlc-wizard pick \
--tier proprietary --provider anthropic \
--security-tier proprietary --security-provider openai \
--security-temp 0.1 \
--sandbox-security
Yields agent.security = {model: 'openai/gpt-5.3-codex', temperature: 0.1,
tools: {write: false, edit: false, patch: false}}.
New flags (5):
--security-tier T --security-provider P [--security-model M] # triplet
--security-temp T # temperature
--sandbox-security # tools denial
All flags opt-in, all-or-nothing on the triplet, default-model fallback
via shared default_model_for() (same lookup as coder/reviewer/planner/
small). validate_agent_triplet() helper extended with 'security' role.
Tests: T61-T65 in test-backend-picker (model + sandbox + triple-compose +
partial-spec rejection + regression guard), T39-T40 in test-pick
(passthrough + regression). 395 tests across 12 suites (was 388 / 12 in
v0.11.1).
Full v0.11.2 hybrid covers FIVE agents: coder + small_model + planner +
reviewer + security.
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.
Full surface for a dedicated security agent: model triplet (mirrors v0.10.2 planner), temperature (v0.11.1), and tool-denial sandbox (v0.10.5 plan).
5 new flags. 395 tests / 12 suites. Composes with every prior flag — five agents now have first-class surface (coder/build, small_model, planner, reviewer, security).