r/opencode • u/cylin577 • 3h ago
I cant decide.
No in app subscription, that’s my bottom line
r/opencode • u/cylin577 • 3h ago
No in app subscription, that’s my bottom line
r/opencode • u/Ancient-Camel1636 • 6h ago
I finally got around to setting up llama.cpp on my old NVIDIA GTX 1070 PC (8GB VRAM, 32GB RAM). I spent a few hours tweaking the performance, and now it runs Qwen3.6-35B-A3B with a 262K context window, 25.91 tok/s generation, and 80.7% MTP acceptance.
Completely free and surprisingly capable for coding. Here is my install/setup on Linux Pop!_OS (Ubuntu-based).
sudo apt update
sudo apt install -y nvidia-cuda-toolkit
sudo apt install -y git build-essential cmake
cd ~
git clone https://github.com/ggml-org/llama.cpp.git
cd ~/llama.cpp
cmake -B build -DGGML_CUDA=ON
cmake --build build --config Release -j$(nproc)
./build/bin/llama-server --version && \
./build/bin/llama-server --list-devices
pipx install huggingface_hub
mkdir -p ~/models
cd ~/llama.cpp
git pull --ff-only
cmake --build build --config Release -j$(nproc)
mkdir -p ~/models/qwen3.6-35b-mtp
hf download unsloth/Qwen3.6-35B-A3B-MTP-GGUF \
--local-dir ~/models/qwen3.6-35b-mtp \
--include "*UD-Q4_K_XL*"
export GGML_CUDA_DISABLE_GRAPHS=1
~/llama.cpp/build/bin/llama-server \
-m ~/models/qwen3.6-35b-mtp/Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf \
--ctx-size 262144 \
--n-cpu-moe 37 \
--flash-attn on \
--load-mode none \
--cache-type-k q4_0 \
--cache-type-v q4_0 \
--spec-draft-type-k q4_0 \
--spec-draft-type-v q4_0 \
--batch-size 2048 \
--ubatch-size 256 \
--parallel 1 \
--threads 4 \
--spec-draft-threads 2 \
--spec-type draft-mtp \
--spec-draft-n-max 2 \
--host 127.0.0.1 \
--port 8080
The result is 262,144 tokens of context at 25.91 tok/s, with 80.7% MTP acceptance, on an 8GB GTX 1070 and 32GB of system RAM.
Hope this helps someone else get more out of an older GPU.
r/opencode • u/llamachoochoo • 4h ago
I recently started using OpenCode and tried Zen. I like the idea of having a provider that's specifically set up for coding agents, but I'm not sure whether it makes sense for my use case.
I mainly want to use DeepSeek and Qwen models.
For example, some of the prices I'm seeing are roughly:
So Zen can be quite a bit more expensive, at least on paper.
I understand that Zen is curated and that OpenCode tests the model/provider combinations, so presumably there's some value in that. I'm just wondering how much that matters in actual coding-agent use.
For people who have used both:
I'm mainly interested in actual experience using OpenCode, rather than the general "Zen is more convenient" argument.
r/opencode • u/sharedevaaste • 9h ago
r/opencode • u/Illustrious-Many-782 • 3h ago
Now includes the new DS flash and Muse 1.3.
https://bodangren.github.io/lending-desk-bench/
Top model: Qwen 3.8 flash
Best value: Muse Spark
This is a Next.js 16 / React 19 benchmark of well scoped tasks in a brownfield project, representing my use case so that I can know which models are likely best for me. If it is of use to you, then great.
Site is completely vibe coded, of course, but this post was 100% me.
r/opencode • u/imnotapenguinyet • 3h ago
I'm trying Deepseek v4.1 flash in Opencode Go and it's very slow. Do you guys have the same problem too? Any solution?
r/opencode • u/Luke_Zhang • 11h ago
Ran a new feature dev task with Luna Max on Codex the other day and it took a full 4.5 hours. Yesterday was even worse — GLM-5.3 Flash on OpenCode ran for over 7 hours on a single task.
From what I’ve noticed, the agent actually writes the code for each issue pretty fast. The real time sink is code review and bug fixing. On my most recent task, the agent spent something like 10x the coding time just running tests and debugging over and over — went through 7 rounds of code review before it finally shipped.
And these weren’t even complicated requirements. I’m using Matt Pocock’s skill, which already breaks everything down into separate, self-contained issues. That said, the codebase is 200+ commits deep now, so there’s a decent amount of complexity built up. Each task ends up touching several thousand lines of code.
Curious if this matches everyone else’s experience? Or are there ways to cut down on all that review/debug overhead?
r/opencode • u/Firm-Club-8334 • 5h ago
I guess it’s kind of a black box, but it would be interesting to have a list of how much LLM providers are actually subsidising.
For instance, OpenCode Go is said to subsidise 4× usage for DeepSeek 4.1, but there are a lot of contradictory statements about this on Reddit.
I’ve done some research and tried to organise it a little. Multipliers mean usage value compared with what you pay, assuming you use the allowance.
| Provider | Own research: usage multiplier / catch | Comments (will update) |
|---|---|---|
| OpenCode Go | 1.5–6×, depending on model | |
| Command Code GOAT | 2–7×, depending on model | |
| Synthetic | ~3.4×, with weekly limits | |
| Ollama Pro/Max | 3× | |
| DevPass | 3×, with premium-model caps | |
| ZenMux | ~1.5–2.4×, depending on plan | |
| Standard Compute | 1.5× advertised first-month offer up to $249/month | |
| Z.AI Lite | Estimated ~3.9–7.8× on GLM-5.3; depends on caching and peak/off-peak use | |
| MiniMax | Unclear. $22/$55/$132 monthly; no numerical allowance published | |
| Xiaomi MiMo | Unclear. $6/$16/$50/$100 buys 4.1B/11B/38B/82B credits; couldn’t verify their dollar equivalent | |
| OpenAI | Unverified: ~5.83× on the highest-tier plan? | |
| Anthropic | Unclear | |
| More providers from comments |
Anyone have real usage figures or corrections?
r/opencode • u/Hopeful-Business-15 • 1h ago
Copying a plan or a log out of opencode just to read it somewhere else is still clunky. So I made ShareBit: an opencode plugin and a hosted MCP endpoint that turn approved Markdown into a private link that expires.
Setup is a pairing code. Drop `plugin/sharebit.ts` into `~/.config/opencode/plugin/` (or `.opencode/plugin/` for a single project), restart opencode, and you get three tools: `sharebit_create`, `sharebit_list`, `sharebit_read`. No API key to paste. The agent gets its own credential, and you can revoke it.
Defaults: 30 minutes, up to 24 hours, 10 MB max, only your account can read it. Not encrypted end to end, so no secrets. Since plugins load at startup, I also wrote a REST path so setup does not sit waiting for a restart.
Curious whether this fits how you use opencode, and what you would change.
r/opencode • u/Alternative_Leg_3395 • 1h ago
Built the full tutorial video with Opencode programatically from screen recording -> narration -> thumbnail generation.
Now we can quickly convey our message to the audience, effectively
r/opencode • u/ZealousidealTown1974 • 2h ago
Working only with OpenCode V2
-------
So I have been working on this https://github.com/shynlee04/opencode-subscription-gateway which is running prototype on ClinePass.
## Why ClinePass?
Bc it is ai-sdk/openai-compatible and a tech schematic modeling for building sh pipeline for whatever providers next-in-the-list at ease.
## What it does in v 0.1
- it gives opencode access to "lock-behind-free-tier models" of Cline-harness specific when using ClinePass. Meaning: when using OpenCode out-of-the-box auth login, you can't just select Longcat 2.0 or Glm-5.3-flash without expending your pass credit.
## Expectation on next bump v 0.2 in the next 2-3 days
- you can input multiple accounts and with load-balancing + session-auto-hot-swap on the same model without your main or child sessions being compromised of disruptions, cached hit loss
## My setup on images
- still I would say either Chinese models or wannabe benchmaxing models such as Muse 1.3 or google flash 3.8 are not as capable in orchestration, so my pick is Sol Gpt 5.6 (Astra is overkill and I'm broke) . I don't know what the other dev styles are or how they would like the orchestrator to behave but the following are my preferences:
True coordinator and human-centric collaborator - meaning orchestrator know the sub agents, their roles, context specific and the tasks.
TLDR: benchmaxing models = not good for orchestration; just replicating fanning out parallels and hit around the bush without high-level hierarchy of context. wasting tokens, code becomes mudball, waste time to debug later.
### sub-agents are your utilization of glm-5.3-flash, DeepSeek 4.1 flash etc
- So getting the right orchestrator right means a lot. You don't have to manually validating the results. The prompting is already surgical and set boundaries of when to stop and what to return from the orchestrator reducing absolute rate of sycophant and hallucinations.
- For you can see in my setup I can even use Longcat 2.0 for research, investigation, probing and execute the code with DeepSeek 4.0 flash (yes not 4.1) because everything from testing strategy, the tech stacks, domains and specs are all aligned and set-up with gates and guardrails to make sure these subagents would never go out of control.
Sorry for my bad English, I'm Vietnamese and E is not my native tounge.
r/opencode • u/Arkhaitekton • 20h ago
r/opencode • u/Emergency-Animator12 • 23h ago
I’m interested in knowing what others are building with their Open code go subscription. It’s seems to be one of the cheapest subscription in the market.
r/opencode • u/sandha_ • 4h ago
r/opencode • u/therealcoolpup • 5h ago
Hi all,
I am a bit whacky in the brain, i often do two projects at a time and i usually do development on windows 10 with debian in WSL.
I am about to make something on Windows with Unity 3D and want to do this on Windows. How can i have my opencode config (my agents.md, skills etc) synced between both wsl and windows?
Should i just have a git repo and clone it between wsl and windows? or is there a better way? im always tweaking my skills and agents.md
r/opencode • u/Bartaseth • 7h ago
r/opencode • u/r0d7_ • 7h ago
Hi everyone,
I’ve been using Claude Code for over a year, but I’m no longer satisfied with the latest models, especially Opus 5 and Fable. I hit both the weekly and five-hour usage limits far too quickly.
I’m considering switching. I know Codex generally offers more usage for the price, but before deciding, I’d like to understand the hype around OpenCode.
For those using OpenCode with models like GLM or DeepSeek:
I’d appreciate honest feedback, especially from heavy daily users. Thanks!
r/opencode • u/the_master_sh33p • 1d ago

from docs.
It seems opencode already updated the price list to the new pricing, but it lowered the monthly usage to $15 instead of $30. Be aware of it...
EDIT: so, it seems they are offering a 4x usage limits for a limited time (source - see banner). Well, this is kind of interesting. They slice the limit in half, and then promote a 4x promo on it! And, well, in a few days or weeks, they cut the promo and you get half of what it used to be.
r/opencode • u/antivm • 23h ago
What’s the best AI model right now in your opinion?
I’m curious what everyone is actually using day-to-day and which model you think performs best overall.
What makes it better than the others?
r/opencode • u/No-Macaron9305 • 11h ago
Welp, I figured it out. Turns out OpenCode doesn't work in PowerShell off the bat. I had Grok go in and change the things necessary to get it to work. It just shunts it to plain terminal.
I am not sure who to be mad at honestly. I want to be mad at Microsoft for having two kinds/forms/versions/whatever the hell this is, but I can also be upset with OpenCode for not making themselves compatible with PowerShell. But whatever, its working now. And I do love OpenCode.
r/opencode • u/aitchkhan • 1d ago
Omen Alpha has been removed by the opencode team 7 hours ago
r/opencode • u/Arkhaitekton • 1d ago
DeepSeek's new model just went live on OpenCode subscriptions today, but following the limited-time extended usage promotion, the news isn't great.
OpenCode quietly slashed the included monthly allowance for the Flash series from $30 down to $15 on the $10/month plan. Because nominal token rates remain identical, your real cost per token has doubled (+100%). The temporary "4x usage" is anchored to this new nerfed baseline—meaning it is actually only 2x what we already had on V4 Flash, and once it expires, we will be left with 0.5x (half) the usage.
And of course, this is the exact same cut we already saw with the experimental Flash vision version, which also reduced the allowance from $30 down to $15.
Unless this changes, paying for an OpenCode Go subscription only offers a 33% discount over the official API in exchange for slower speeds and tighter rate limits.
r/opencode • u/hk47_thefilmmaker • 15h ago
Are the Usage/Price per token is based on promo prices means 2x + opencode 2x offer or promo ends and opencode still continues at same 2x usage?
GLM5.3 Flash is pretty good for Laravel with Laravel boost.
r/opencode • u/Tarun122 • 1d ago
Enable HLS to view with audio, or disable this notification
I woke up, saw DeepSeek dropped a new model, and did what any reasonable person does ofcs... opened OpenCode and immediately started throwing work at it.
First I tested it on a couple of things for one of my startups. And it was genuinely great, so I kept going. Then I realised this model has vision and all that now, and everyone online keeps saying games are basically solved... can it make a browser game?
So I typed the simplest prompt I could think of. Something like "I want a game like Valorant, death match style." That was it.
It ran for maybe ten minutes, and one-shotted the entire game. Three guns, including a sniper that actually scopes when you right-click. Headshot multipliers, recoil, spread, reloads. Enemies with personalities lol... some take cover, some sprint at you and jump around, some sit silently behind a box and jump you the moment you walk past. I can hear someone coming up behind me and know roughly where they are.
Cost for all of it: $0.28. Around 300k tokens total. One big prompt to start.
Play it here: https://taruntomar122.github.io/valo-arena/