docs: Enforce GPT 5.1 full-opencode.json as only supported configuration #40
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.
Summary
This PR standardizes the OpenCode Codex plugin on GPT 5.1 model identifiers, removes deprecated GPT 5.0 models, and enforces
config/full-opencode.jsonas the only officially supported configuration. We now strongly discourage minimal configurations and custom setups due to GPT 5 models' temperamental behavior. All documentation has been updated to reflect the new model naming (gpt-5.1-codex-*), updated context limits for Codex Mini, and comprehensive warnings about configuration requirements. The changes ensure users have a reliable, tested setup that works consistently with OpenCode features.Key Changes
🏷️ Model Naming & Configuration Updates
gpt-5-codex-*→gpt-5.1-codex-*inconfig/full-opencode.jsongpt-5-minimal,gpt-5-mini,gpt-5-nano(being phased out by OpenAI)README.md: Changed "Recommended" → "⚠️ REQUIRED: Full Configuration (Only Supported Setup)"
docs/getting-started.md: Restructured installation guide
docs/configuration.md: Enhanced configuration guidance
full-opencode.jsondocs/index.md: Updated features and warnings
config/README.md: Complete restructure
minimal-opencode.jsonas NOT SUPPORTEDfull-opencode-gpt5.jsonas DEPRECATED🔧 Technical & Code Updates
gpt-5.1-codex-*naming--model=openai/gpt-5.1-codex-lowthroughoutImplementation Details
GPT 5 Model Temperamental Behavior
Added consistent warnings that GPT 5 models can be temperamental - some variants work, some don't, some may error. This is why the full, tested configuration is required rather than allowing users to create custom setups.
Configuration Enforcement
All documentation now explicitly states that
config/full-opencode.jsonis the ONLY supported configuration. Minimal configs lack the per-modellimitmetadata required for OpenCode's auto-compaction and usage sidebar features, and custom configs may not work reliably with temperamental GPT 5 models.Model Migration Path
Clear guidance for users to migrate from deprecated GPT 5.0 models to GPT 5.1:
gpt-5-codex-low→ New:gpt-5.1-codex-lowgpt-5-mini,gpt-5-nano→ Removed (deprecated)Context Limit Corrections
Updated Codex Mini from incorrect 200k/100k to correct 272k/128k context/output limits, matching the actual API specifications and ensuring OpenCode displays accurate token usage.
Testing
config/full-opencode.jsonNote: This PR focuses on documentation and configuration alignment. No code logic changes - just standardizing on GPT 5.1 models and enforcing the tested, reliable configuration path for users.
🤖 Generated with Claude Code
Co-Authored-By: Claude [email protected]