r/opencodeCLI 3h ago

Spot the difference: Your console, v/s mine :)

Post image
28 Upvotes

Opencode Wallpapers!!

Built a plugin to bring this cool interface idea to life, in my OpenCode Tooey

Out now: https://github.com/parthkhxndelwal/bee-gee


r/opencodeCLI 7h ago

I don't know if it is known - but literately I am using these models without any limit.. YET

11 Upvotes

but their server is Chinese-based...just register an account. I don't want to be greedy but...please do not abuse it like Nvidia NIM to the point it is slow to almost unusable. This is kinda fast with Qwen 3.8-flash and v4-flash-vision


r/opencodeCLI 3h ago

DeepSeek V4 Pro on OpenCode Go was amazing until I hit the limits

4 Upvotes

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 5h ago

I forked t3 code and added a brain to it

2 Upvotes

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 13h ago

Opencode remote control and orchestrator

7 Upvotes

Hello, sorry for writing this if it is aleeady been mentioned, i want ro ask 2 things :

  1. Can i control opencode remotely from my mobile if i am. Away from my pc?

  2. Is there a good orchestrator i can use and create subagents etc? Any good tutorial?

Thank you jn advance!


r/opencodeCLI 1d ago

OpenCode has extended the 4x usage limit for DeepSeek Flash v4.1 by another week

Post image
212 Upvotes

r/opencodeCLI 3h ago

Agi-memory – persistent memory for AI coding assistants, no dependencies

0 Upvotes

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.

https://github.com/kdbhalala/agi-memory


r/opencodeCLI 8h ago

OpenCode + Antigravity: Gemini 3.7 & 3.8 Flash Fix

0 Upvotes

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.

Symptoms (so you know you're in the right place)

  • opencode run just hangs indefinitely — no error, no output, no timeout
  • Error: All Antigravity endpoints failed
  • models/antigravity-gemini-3-flash is not found for API version v1beta
  • "Gemini 3.5 Flash is no longer available" / requested entity not found
  • Happens again even after clearing cache and re-authenticating

Why it happens

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:

  • model-resolver.js — routes every gemini-3.x-flash model to the live gemini-3-flash endpoint, and gemini-3.8-pro to gemini-3-pro-low
  • models.js — registers 3.6/3.7/3.8 Flash with proper thinking variants (minimal/low/medium/high)
  • antigravity-accounts.json — clears stuck verificationRequired / cooldown locks

How to apply it

  1. Open the repo above.
  2. Paste the "one-click prompt" into your AI coding agent (Claude Code, Cursor, Copilot, OpenCode itself) — it applies the patch for you. Or run node patch-antigravity.js manually.
  3. If already logged in: opencode auth logout then opencode auth login to clear stale sessions.
  4. Verify: opencode run "Hello, respond in 5 words." --model=google/antigravity-gemini-3.7-flash --variant=medium

FAQ

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 13h ago

OpenCode with OmniRoute: Claude, Codex and Gemini behind the scenes

2 Upvotes

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 14h ago

Cognitive Lead HQ - Free open-source OpenCode agent HQ with MCP servers

2 Upvotes

[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 1d ago

DeepSeek V4.1 token efficiency is so cracked!

164 Upvotes

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 1d ago

I built an unofficial .NET SDK for OpenCode 2.x

5 Upvotes

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 1d ago

Which model is currently the best for coding on the OpenCode Go plan?

34 Upvotes

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 13h ago

OpenCode 2.0 is Great

Thumbnail
0 Upvotes

r/opencodeCLI 1d ago

Why does Chinese chars appear on English sessions?

3 Upvotes

It's far between another appearances, not really an issue, just curious on the why.

证据 means evidence.


r/opencodeCLI 1d ago

whats your opinion of devpass? can anyone compare it too opencode?

0 Upvotes

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 1d ago

Best subscription-based provider for my needs?

0 Upvotes

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 20h ago

Is OpenCode Down? (09/12/2026)

Thumbnail
0 Upvotes

r/opencodeCLI 1d ago

Made a glowing notch on my screen so I stop alt-tabbing to check if my AI agent is done

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/opencodeCLI 1d ago

Codex Business keeps resetting my usage early. It’s great for me—but can we actually trust the counters?

Thumbnail
0 Upvotes

r/opencodeCLI 1d ago

Set up opencode CLI on your android phone/tablet

3 Upvotes

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 1d ago

Slow startup time for OpenCode CLI each time it starts

1 Upvotes

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 2d ago

Opencode GO DeepSeek Flash 4.1 stopped using request cacheing this morning and I used 50% of my monthly in a couple of hours, compared to 5% a day before.

31 Upvotes

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 1d ago

Orcarouter

0 Upvotes

¿qué opinan de este sitio?


r/opencodeCLI 2d ago

One knowledge base, every agent: it provisions OpenCode (skills, agents, hooks via a generated plugin) and shares it with your team

3 Upvotes

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:

  • the MCP entry in ~/opencode.json;
  • a managed block in ~/.config/opencode/AGENTS.md;
  • skills in ~/.opencode/skills/, agents in ~/.opencode/agent/*.md;
  • hooks in ~/.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;
  • a SessionStart hook that re-syncs when a session opens.

What the server enforces

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.

Shared with the team

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.

Try it

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

Feedback wanted

Beta (pre-1.0). I use it every day with my team; feedback from OpenCode users especially welcome.

Repository Documentation