v0.12.0: managed tier with OpenCode Zen#16
Merged
Conversation
First new tier since v0.2.0. OpenCode Zen is the official recommended new-user entry point per May-2026 research: vendor-routed PAYG over 40+ models including free tier (Big Pickle / DeepSeek V4 Flash Free / MiniMax M2.5 Free / Nemotron 3 Super Free). export OPENCODE_ZEN_API_KEY='...' npx opencode-sdlc-wizard pick # auto-detected npx opencode-sdlc-wizard pick --tier managed --provider opencode npx opencode-sdlc-wizard pick --tier managed --provider zen # alias Verified live (Zen docs, fetched 2026-05-18): - Provider id: opencode (per Zen's docs — pin format opencode/<model>) - baseURL: https://opencode.ai/zen/v1 (OpenAI-compatible) - Env: OPENCODE_ZEN_API_KEY (namespaced) - Default model: gpt-5.5 (Zen's own example string) New 5th tier 'managed' sits between hosted_oss and proprietary in the privacy cascade — prompts go through OpenCode's infra (less private than DIY hosted, more managed than your own vendor key). Implementation: - detect-backends.sh: M_OPENCODE_ZEN_SET probe, managed.opencode JSON entry, both cascades updated - configure-backend.sh: PROVIDER_ALIASES (opencode/opencode_zen/ opencode-zen/zen -> opencode), managed/opencode fragmentFor case - pick-backend.sh: default_model_for managed/opencode -> gpt-5.5 - AGENTS.md: tier table gains managed row Tests: T66-T69 in test-backend-picker (provider block, alias, detector, full hybrid composition), T12 sub-test in test-pick. 400 tests across 12 suites (was 395 / 12 in v0.11.2). Minor bump (v0.11.x -> v0.12.0): new top-level tier in detector JSON shape. Purely additive — every v0.11.x flag + provider continues to work unchanged. 16 of 16 default-model entries unchanged.
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.
First new tier since v0.2.0. OpenCode Zen as the official recommended new-user entry point — verified live against Zen docs (fetched 2026-05-18): provider id
opencode, baseURLhttps://opencode.ai/zen/v1, envOPENCODE_ZEN_API_KEY, defaultgpt-5.5.New
managedtier sits betweenhosted_ossandproprietaryin privacy cascade. 400 tests / 12 suites. Purely additive — every v0.11.x flag works on the new tier (T69 verifies full hybrid composition).