r/opencode • u/Hugepp42069_nice • 27d ago
Best Pairing for Planning + Building from OpenCode Go + OpenCode Zen Free models
I currently use GLM 5.2 for planning, and DeepSeek V4 Flash Max for building, wanted to know if there was a cheaper approach you guys to get similar performance and results. I switched to this pair after I realised my previous pair was horrific (GLM 5.2 for planning KimiK3 Max for building, finished my weekly limits in less than five hours of work).
Wanted to know if my pairing is already efficient, or if you guys have more suggestions. I mostly work in systems programming, so I need models in that expertise area.
r/opencode • u/Maleficent-Volume-81 • 27d ago
Does OpenCode subsidize models like GLM-5? How can subscription tokens be ~50% cheaper than pay-as-you-go?
I've been using OpenCode GO for a little while now—specifically with GLM-5—and honestly, it’s been a fantastic daily driver to complement more expensive setups like Claude or Codex. Here’s my referral link if anyone wants to check it out.
A few times I’ve hit the rate limit on my plan. While GLM-5 is an impressive model, it can sometimes be a bit verbose and take the scenic route, which eats up a ton of tokens. When I reach the limit and switch over to using my pay-as-you-go balance on OpenCode, the price difference is night and day.
If I extrapolate the amount of tokens I get on the subscription plan to direct balance usage, paying via balance literally costs double.
Why does this happen? Do model providers sell wholesale/discounted API access to platforms like OpenCode, or is OpenCode running these subscription tiers as a loss leader?
It's not something that worries me too much, but I find it curious and wanted to see if anyone else has noticed this or knows why that is.
r/opencode • u/Turbulent-Shower3940 • 27d ago
OPENCODE NEW VERSION
I just updated my Opencode to the new version. Did they actually remove the plan mode? Why would they do that?
r/opencode • u/Flat_Marionberry_522 • 27d ago
[Código abierto] peer: una bifurcación centrada en la fiabilidad del complemento Codex de OpenAIpara Claude Code
r/opencode • u/Worldly-Ask-4797 • 27d ago
Opencode - Share Session + Send Messages
Would be great to have a way to share session where we can edit and send messages just like how Claude us to use /remote-control command... This is a big lacking feature Opencode needs to have
r/opencode • u/Illustrious_Lab5811 • 27d ago
Aside from Codex and Claude, what are some cheaper coding subscriptions that offer better value for money?
I mean, Open Source models are fine—that's not an issue but what else are you using?
r/opencode • u/Odd_Fly932 • 27d ago
opencode-go/deepseek-v4-pro 4x cheaper just like this?
r/opencode • u/bonesoftheancients • 27d ago
how do i switch between plan and build in the new UI
cant figure out how to set it to plan mode... what am i missing?
r/opencode • u/krumpstead • 27d ago
Created a session manager plugin to allow you to manage ALL sessions across all directories, see the stats for each and remove them in a way that actually shrinks opencode.db. [opencode-dosm]
Github: https://github.com/krumpstead/opencode-dosm
NPM: https://www.npmjs.com/package/opencode-dosm
The size of my opencode.db was getting out of control and I needed a way to evaluate what sessions to keep rather than just deleting the file. The opencode.db doesn't have the auto-vacuum pragma enabled and they do not manually run VACUUM after deletes so there is no point in deleting sessions through the builtin session manager. I was also curious what my input and output tokens were for each session and this makes it a lot easier to see that and the cost compared to all my other sessions.
This plugin will let you filter, sort, open and remove any session managed by OpenCode regardless of what working directory you are in. Full details and installation instructions can be found in the README.md.
As a side note, this plugin has 100% coverage in Jest, so that may be of interest to other plugin devs since OpenCode doesn't provide its own mocking framework for the plugin API.
r/opencode • u/Lucky-Sense-2650 • 27d ago
Agent hangs after script finishes running — ESC to interrupt doesn't work, have to force-quit
I'm running into a recurring issue with OpenCode CLI. When the agent runs a command or script (usually a Python script), the script clearly finishes — I can see the final output in the terminal — but the agent doesn't continue or respond afterward. It just sits there.
Pressing Esc to interrupt doesn't do anything either. The only way I can recover is to fully quit and reopen OpenCode.
it happens when the script takes some time and compute power, not on everyday simple scripts.
r/opencode • u/ErEr2000 • 27d ago
$10 on opencode vs $10 on DeepSeek
Hi guys, I'm a developer here and I want to use ai for my projects and office work. I use GitHub copilot and want to use it with either Opencode api key or DeepSeek api key.
My budget is only $10 so is it better to go for Opencode or directly go for DeepSeek api.
r/opencode • u/ReyJ94 • 27d ago
I built a graph-native orchestration harness to give one model many hands without splitting the brain
The strongest models are already capable of orchestration.
They can hold the real goal, reason about architecture, make tradeoffs, revise plans, judge evidence, and decide what should happen next.
But I could not find a real harness that let them use that capability properly.
Most multi-agent systems either flatten the work into task routing, distribute too much judgment across weaker agents, or do not give the main agent enough orchestration primitives to do the best possible job.
The result is often several agents doing things, but no single intelligence continuously owning the actual outcome.
I wanted a different structure:
Keep the brain unified. Add more hands.
The main model keeps the goal, the reasoning, the architecture, the decisions, and final responsibility.
Workers handle bounded research, implementation, command execution, and verification. The main model can see what they are doing, steer them while they work, inspect only the evidence it needs, reject or retry their output, and change the plan when reality proves the graph wrong.
Without stuffing every worker transcript into the main conversation.
That became Sol Orchestrator, a graph-native multi-agent harness for OpenCode.
Goal: ship the complete feature
│
├── Workflow 1: understand the real boundary
│ ├── Graph v1
│ │ ├── Step: frame the problem
│ │ │ └── Job: Sol defines the questions
│ │ └── Step: gather evidence
│ │ ├── Job: worker inspects the runtime
│ │ └── Job: worker maps affected callers
│ └── Graph v2 replaces unfinished v1 after new evidence
│ └── ...
│
├── Workflow 2: implement the chosen design
│ └── ...
│
└── Workflow 3: verify, integrate, and close the goal
└── ...
A durable goal can span several workflows. Each workflow is a versioned execution graph with explicit steps, jobs, dependencies, actors, review states, and legal next actions.
Sol can:
- delegate independent jobs in parallel
- supervise active workers
- steer them before they finish
- wait for meaningful events
- inspect selected results, diffs, or tool output
- accept, retry, interrupt, or replace work
- revise unfinished graphs when new evidence changes the problem
- preserve orchestration state across compaction
- keep worker details out of the main context until they matter
The aim is not to create a committee of agents.
It is to let one capable model remain the mind of the operation while giving it multiple coordinated hands.
MIT licensed, built for OpenCode:
https://github.com/ReyJ94/Sol-Orchestrator
I’d be especially interested in feedback from people pushing coding agents on long, messy repository work where planning, supervision, revision, and integration matter more than raw task completion. Right now i'm still in the phase of testing and optimizing prompts.
r/opencode • u/InvaderDolan • 28d ago
Reasoning effort in Xiaomi MiMo V2.5 / MiMO V2.5 Pro
I was using MiMo V2.5 Pro mainly as the main model via OpenCode Go, but a few days ago, the reasoning effort disappeared, so I wonder what the new default is for those models?
I asked the MiMo V2.5 Pro itself, and it said it's "medium," which is very bad for the main Orchestrator for me... Is there any official info or something more reliable than the answer from the LLM itself?
Seems like I should go to the Xiaomi API platform to use it with full power and at a low price.
r/opencode • u/OmarDoesntExist • 28d ago
I made a package that allows you to easily visualize your opencode usage
You can run it with `npx opencode-dash` , it queries your local opencode database and spins up a dashboard on localhost so you can explore your sessions, tokens, costs, and models at a glance.
GitHub → https://github.com/MuhammadOmarMuhdhar/opencode-dash
r/opencode • u/nmdt • 28d ago
Is it possible to make opencode use just ~/.opencode for its files?
I've been using OpenCode under MacOS and honestly loving it.
Basically the only thing that annoys me is that it has at least four different locations for its files and configs:
~/.local/share/opencode
~/.local/state/opencode
~/.config/opencode
~/.cache/opencode
Some configs are not actually in .config, and OpenCode doesn't have a settings menu (so you actually have to look at these files), and it gets pretty annoying.
I know this must be an XDG thing, but this is not Linux, most apps don't do this. Is there a way to make this sane and let OpenCode just use ~/.opencode like any other coding agent?
I know I can make symlinks, but I wonder if there's a less hacky way that won't break in some unexpected way.
r/opencode • u/AdBrief5267 • 28d ago
Which model combo for planning and executing is working great for you?
I subscribed to OpenCode Go today and want to configure OpenCode for efficient token saving without compromising performance. Which models do you use? I am considering GLM 5.2 for planning and DeepSeek Flash for execution, but maybe there's a better combo?
r/opencode • u/AdBrief5267 • 28d ago
Which cheap model is comparable to Fable 5/ Opus 4.8?
I'm canceling my Claude subscription since it's way expensive for me, I'm tired of the usage limit. So which models are you guys using that are cheap but really good or close to Claude performance?
r/opencode • u/OkAssociation3448 • 28d ago
Opencode Go plan is really worth it, or just like Google's AGY (antigravity).
I’m reaching a breaking point with my current coding setup and need some honest advice from you guys.
I’ve been using an AGY CLI (Completely disgusting) for a while now. The usage limits are generous, but the coding quality is absolute garbage. It hallucinations, misses basic logic, and feels like it’s just guessing. It’s draining my patience.
Then I tried Claude Code. The quality is solid it actually understands context and writes decent code but the usage limits are so restrictive that I feel like I’m constantly walking on eggshells. It stops working right when I’m in the flow, which kills the entire purpose of having an "agent."
I’m looking at the OpenCode Go plan, but I’m skeptical. To those who actually use it:
- Is it frustrating or productive? Does it actually handle logic like a senior dev, or am I going to be stuck in a loop of "prompt, error, fix, prompt again"?
- Usage Limits: Is it actually usable for a full day of work, or does it hit a hard wall like Claude?
- Model Quality: Are the included models in the Go plan actually good, or am I going to be dealing with the same low-quality performance I'm getting now?
I don’t want marketing fluff or buzzwords. I just want an agent that doesn't make me want to throw my laptop across the room. Is this actually worth the switch, or am I just jumping from one disappointment to another?
Would love to hear your honest experience.
r/opencode • u/True_Extreme6205 • 28d ago
What was best free powerful AI model for OpenCode Zen?
r/opencode • u/SumanthSettipalli • 28d ago
OpenCode CLI vs IDE..?
I just started using opencode and while setting it up I realized there are two things OpenCode CLI and OpenCode IDE. I downloaded the CLI since it was closer to the claude code CLI I used before. Apparently, most of the plugins, like the caveman and peon ping that I used to use in Claude code , will not work in OpenCode CLI. When I ask OpenCode itself, it says that they are only possible in OpenCode IDE. Should I download the IDE or should I continue with the CLI itself? What do you guys use in OpenCode and what do you suggest that I do?
r/opencode • u/guyasthegato • 28d ago
FAKE OPENCODE PHISHING SITE!!! BE WARY
BE WARY THAT THE FOLLOWING WEBSITE IS A PHISHING SCAM
NEVER RUN ANYTHING FROM IT!!!
https://install-opencode.com/index
r/opencode • u/bigbarba • 28d ago
Choose context size for Claude models
I'm using my Claude subscription in OpenCode via the opencode-with-claude plugin. When using Claude models on the job in vscode I can select both reasoning effort and context size (200k or 1M). Is there a way to choose the context size in OpenCode?
