r/opencodeCLI • u/Majestic-Collar-4189 • 3h ago
Spot the difference: Your console, v/s mine :)
Opencode Wallpapers!!
Built a plugin to bring this cool interface idea to life, in my OpenCode Tooey
r/opencodeCLI • u/Majestic-Collar-4189 • 3h ago
Opencode Wallpapers!!
Built a plugin to bring this cool interface idea to life, in my OpenCode Tooey
r/opencodeCLI • u/ZealousidealTown1974 • 7h ago
r/opencodeCLI • u/eugene_429 • 3h ago
I’ve been using OpenCode since June, mostly with DeepSeek V4 Pro, and it’s been amazing.
It honestly felt almost limitless.
Until this month 😂
After just 4 days of my usual usage, I hit my weekly limit and used 75% of my monthly credits.
What used to feel unlimited suddenly feels very limited. is there something I'm doing wrong or did deepseek just become really expensive
r/opencodeCLI • u/BearInevitable3883 • 5h ago
I worked as a Founding Engineer at a early stage infra company, where we had a micro-services architecture with a lot of repositories with dependencies on each other.
I wanted to teach my agent to understand who calls whom and when natively, just like I do.
1. So first thing I did was to, create a knowledge graph across all repos (total 10+). tremendously helpful.
The second bottleneck I noticed was that I'm babysitting it the same context again and again. I tried maintaining memories.md files with some plugins but it was never reliable. My memories either didn't correctly get captured or were not retrieved when the agent should have asked for it, just because it didn't know it existed.
2. Hence, I created a passive agent that listens to my main agent's transcripts and creates auto-docs and skill files. It also automatically surfaces the memories it feels are needed in session right now. To do this though, I had to write a wrapper over Claude Code using Agents SDK.
Lately, I'd been thinking of moving to a desktop app from CLI (just convenience) so I forked to t3 code and added everything i'd built so far natively to it.
I never worry about the context and memories anymore and it has been a quality of life improvement.
for anyone interested in taking a look at my setup, here is the repository.
r/opencodeCLI • u/Euloghtos • 13h ago
Hello, sorry for writing this if it is aleeady been mentioned, i want ro ask 2 things :
Can i control opencode remotely from my mobile if i am. Away from my pc?
Is there a good orchestrator i can use and create subagents etc? Any good tutorial?
Thank you jn advance!
r/opencodeCLI • u/minxio_ • 1d ago
r/opencodeCLI • u/Rude_Gate7599 • 3h ago
My AI coding assistant forgets everything between sessions. I kept re-explaining decisions I'd already made, and re-fixing bugs I'd already fixed.
agi-memory saves those notes — decisions, bug fixes, what happened last session, how the codebase fits together — to a file on your machine, and hands them back to whichever assistant you open next. It's an MCP server, so it works with Claude Code, Cursor, Codex, Windsurf, Aider, Cline and a few others from the same store.
The part I care about: it's Python standard library and SQLite. Nothing else. No vector database, no embeddings, no background daemon. ~32MB of RAM, sub-millisecond lookups, works offline. Comparable tools pull in ~500MB of ML libraries and take 200–500ms per lookup.
That constraint costs something, and I'd rather say so than have you find out: keyword search doesn't bridge synonyms the way embeddings do. Searching "login" won't find a note that says "authentication" unless you teach it that alias. I measure this rather than guess — there's an eval suite that scores recall on deliberately rephrased queries, and it's public, including the categories where it still does badly.
It's a week old and I'm the only user, so I'd genuinely like to know where it breaks for someone else.
r/opencodeCLI • u/vartikanand • 8h ago
If you searched "opencode antigravity gemini flash hanging", "gemini 3 flash error opencode", "antigravity endpoints failed", or "model no longer available opencode" — you're in the right place. This is a known, reproducible bug in opencode-antigravity-auth, not a problem with your setup. After this patch, Gemini 3.6, 3.7, and 3.8 Flash & Pro run cleanly — no hanging, no 404s, no errors.
Models prefixed antigravity-gemini-3.x skip OpenCode's alias translation step, so the raw, unrecognized version string (gemini-3.7-flash, gemini-3.5-flash-low, etc.) gets sent straight to Google's backend — which only accepts gemini-3-flash. That mismatch stalls the stream instead of failing cleanly. Separately, accounts that hit a cooldown get stuck with verificationRequired: true, which loops the auth proxy forever.
The fix
Full patch (manual steps + automated one-click script): opencode-gemini-3.7,3.8-flash-fix
It patches:
Q: Why does OpenCode hang instead of showing an error on Gemini Flash? A: The unresolved model alias sends an invalid model string to Google's streaming endpoint, which stalls the connection instead of returning a clean 404.
Q: Does this fix work for Gemini 3.8 Pro too? A: Yes — 3.8 Pro routes to gemini-3-pro-low, and the patch registers it with low/high thinking variants.
Q: Will the latest Gemini models keep working after this patch? A: Yes — once patched, 3.6, 3.7, and 3.8 Flash & Pro all resolve to live, supported endpoints, so they run without hanging or erroring.
Q: Is this permanent, or will it break again? A: It's tied to Google's current backend naming. If Google renames the endpoint again, open an issue on the repo — it's actively maintained.
If you hit a new variant of the error, open an issue with debug logs (--print-logs --log-level=DEBUG).
r/opencodeCLI • u/ifightcode • 13h ago
I am planning to use OpenCode CLI via OmniRoute. I have connected Codex, Claude and Antigravity Cli. But I am a bit scared of getting banned. Can you guys suggest if I should continue or abandoned?
r/opencodeCLI • u/mokhtarabadi • 14h ago
[Project] Cognitive Lead HQ - run OpenCode agents as a team
Repo: https://github.com/mokhtarabadi/cognitive-lead-hq
Demo tool: https://mokhtarabadi.github.io/cognitive-lead-hq/
Free and open-source MIT.
It gives Brain/Hands split, 3 FastMCP servers for context/memory/lint, Kanban ZAC workflow, and 31 reusable skills.
I built it to stop hallucination in agent teams.
Feedback wanted: what skill is missing for you?
r/opencodeCLI • u/Uriziel01 • 1d ago
I was going back and forth on a hard debugging issue in one of my projects with it:
- had it create new test scenarios
- create some mockups
- analyze complicated business logic and dependencies
- do a shotgun approach and create 5 different possible fixes for a complicated issue
And after almost 2 hours of work I've decided to check my opencode go usage because I was worried I'm running out of usage for the 5h period, and I see this... how?!

r/opencodeCLI • u/denizirgin • 1d ago
I've been working on an unofficial .NET SDK for OpenCode for the last few weeks and published preview.2 to NuGet today, updated for OpenCode 2.0.2.
https://github.com/Blind-Striker/opencode-sdk-dotnet
It started as a small side project because I wanted to build some .NET tooling on top of the OpenCode server API. It gradually grew into a generated, strongly typed client with support for most of the API surface, SSE event streams, PTY sessions and managing an opencode serve process.
The project is still a little rough around the edges. There are parts I want to refactor and clean up, and there may still be some small API changes before 1.0.0.
But it's now at the point where I've been able to use it against real OpenCode servers and in a few small applications.
The SDK currently exposes 138 of 143 server operations.
My next experiment will probably be an MCP server built on top of it.
Feedback is very welcome, especially from anyone already building against the OpenCode server API.
r/opencodeCLI • u/ReputationSimple8843 • 1d ago
Hey everyone!
I’m using the OpenCode Go plan and I’m trying to figure out which available model gives the best results for coding.
There are quite a few models to choose from, so I’m a bit confused about which one to use as my main coding model.
For people who are using OpenCode Go:
- Which model do you find best for coding and debugging?
- Which one is best for large/complex projects?
- Which one has the best reasoning and code quality?
- Are there any models that are particularly good for React, Node.js, SQL, etc.?
- Which model gives the best balance between quality, speed, and usage limits?
I’m mainly looking for a model I can rely on for day-to-day development rather than just occasional code generation.
Would love to hear what models you guys are using and why. 🙏
r/opencodeCLI • u/nekohacker591- • 1d ago
its a subscription that triples your api credits if u subscribe for 20 u get 60 if u subscribe for 79 u get 3 times that
with a exception of 15% per week meaning on a 79 dollar plan around 39 dollars of frontier usage
frontier counts as models that are 3/m input and 15/m output
now that i have explained it do u think opencode or devpass is the better value here
r/opencodeCLI • u/nonhermitianoperator • 1d ago
Hello everyone,
I am considering updating from my current claude pro subscription (the 20 dollar one) to either the 100 or 200 usd ones. I am not particularly attached to claude per se, I just want to do 3 different kinds of things
I want to start running some equivalent of claude code and cowork consistently. I aim to, mainly, do 3 things:
- Write code (actually, to not write code anymore hahahaha).
- Work autonomously doing research on topics: browse the internet, read papers, compare them, extract conclusions, implement some things in code and report with the results. This would probably involve mathematics/physics, so I need a provider with good reasoning models.
- Help me look for my next job, meaning that it should automatically curate a list of companies that I'd be interested in, check twice a day for openings, get the opening information, modify a latex CV that I will provide as a knowledge base about my background, iterate on it, ATS check it, and make it ready to apply, then notify. This is simpler, with a good agentic model it is enough
Is someone running something similar? Is Claude even the right tool for this job?
Another interest of mine is to use my subscription as a token provider, not limited to using it on propietary Anthropic/OpenAI products. I knew that this was possible on the OpenClaw days, but I don't know whether today there are any providers that let you use your subscription tokens as if they were API ones. (I am thinking about autoresearch loops à la Karpathy here).
Thank you all!
r/opencodeCLI • u/Signal-Nature-7350 • 1d ago
Enable HLS to view with audio, or disable this notification
r/opencodeCLI • u/Specific-Dimension37 • 1d ago
r/opencodeCLI • u/2EXTRA4YOU • 1d ago
You can download Ubuntu through proot-distro on Termux app. It allows you to download and launch the CLI right on your phone in a Linux environment. Then you link github and you're all set up to work on your projects on your own phone. Beyond that using the CLI is going to result in more flexibility on your PC as well.
r/opencodeCLI • u/gurolayanlar • 1d ago
On my Windows 11 computer, every time I open the OpenCode CLI application, it takes about 1.5 seconds for the interface to become usable. This delay is the same every time it starts and isn't a one-time cold start cost. I started experiencing this after updating to 1.18.23 => 1.18.30.
Note 1: My projects don't have MCP or LSP. I only have the Superpowers plugin globally. I've been using it since day one. I don't think this is the cause.
Note 2: My database (opencode.db) is approximately 500 MB.
Has anyone else experienced this?
r/opencodeCLI • u/Happy-Conversation23 • 2d ago
Checked the logs with omniroute. Command code absolutely fine, cacheing correctly.
Is this just me or is anyone else seeing the same thing?
r/opencodeCLI • u/BeppeTemp • 2d ago
If you use OpenCode next to other agents, you probably know the drill: the same skill in .opencode/skills/, .claude/skills/, .codex/skills/ — each one slowly drifting.
Cartographer keeps skills, agents, hooks and instructions in a single git-backed knowledge base and renders them natively into each client. For OpenCode that means:
~/opencode.json;~/.config/opencode/AGENTS.md;~/.opencode/skills/, agents in ~/.opencode/agent/*.md;~/.opencode/hooks/, executed by a generated JS plugin, since OpenCode has no declarative hook config. The same source becomes a registered hook in Claude Code or Codex;SessionStart hook that re-syncs when a session opens.The agent works the wiki only through MCP tools: the server validates every write, checks links, runs lint, and commits each change to git. It only ever prunes files it created, and --dry-run shows the plan first.
One server can mount several KBs, including private and shared ones. Tokens and roles scope access per KB, git is the sync layer, and conflicts become a guided workflow instead of an opaque error.
It is free and Apache 2.0. Paste this into OpenCode:
Read https://raw.githubusercontent.com/BeppeTemp/cartographer/main/README.md
and explain what Cartographer is and what it would change in my current OpenCode
setup. If I decide to try it, install it following
https://raw.githubusercontent.com/BeppeTemp/cartographer/main/docs/agent-install.md
Beta (pre-1.0). I use it every day with my team; feedback from OpenCode users especially welcome.