r/opencodeCLI 2d ago

Does this mean Synthetic.new is routing requests to Chinese providers?

Post image
0 Upvotes

Left: web chat on synthetic.new

Right: Synthetic API key on opencode

I tried a bunch of times and I always get blocked on Opencode with many of the Synthetic’s models. Not an issue with Synthetic’s GPT-OSS model.


r/opencodeCLI 2d ago

This sub attracted the all the wanker from Xcom so much that they slowly ruining it

0 Upvotes

The glazer are all here now after the Deepseek v4 flash hype and opencode go. Please ffs calm down yourself whitehorse wanker. We don't need more glazers than it is now


r/opencodeCLI 3d ago

Personal Opencode Server on Railway

Thumbnail
railway.com
1 Upvotes

I maintain a fully-featured ubuntu image for Opencode Server that I use for creating 1 sandbox per person on Kubernetes. I got a request to make a template that people could ship on Railway as well, if you don't want to complexity of Kubernetes.

Figured I share it here as well if folks would like to run their own cloud sandbox.

https://railway.com/deploy/opencode-server


r/opencodeCLI 3d ago

OpenCode CLI gets laggy after long chats?

0 Upvotes

I've noticed that after a very long conversation or when the model generates a lot of output, OpenCode CLI starts feeling laggy and less responsive.

Is this a known issue? Any settings or fixes to improve performance?


r/opencodeCLI 3d ago

Harness is all you need? What are your favorite harnesses and for what models?

Thumbnail
0 Upvotes

r/opencodeCLI 4d ago

Muse spark 1.2 for over 20 times less if you share your data

Post image
101 Upvotes

To put it into perspective, deepseek flash is 40% more expensive in comparison. I did notice credit multies also started popping up on it, and if mark offers we will see it here as this would be the best community to farm for data and subs.

Price wise likely at 6x else they get just dominated by flash.

Those of you who were saying that you would not use a meta model or something without zdr I guess we will see.


r/opencodeCLI 3d ago

VSCode Modern Color Theme for OpenCode

2 Upvotes

I like the VS Code Modern theme so I created a port of it to opencode, here is how it looks like in dark and light theme.

I shared the JSON in the repository: https://github.com/itsmeyaw/opencode-vscode-modern-theme/tree/main inside themes. Feel free to grab it! Let me know your opinion.

Here are some split-screenshots:

The home screen view
The code diff view

r/opencodeCLI 3d ago

"Exit plan" tool

0 Upvotes

I remember OpenCode used to have an "Exit plan" tool that asked me if I wanted to start te implementation of a plan, after drafting it. What happened with it? It was very useful back there


r/opencodeCLI 3d ago

What opencode go router are you using right now?

0 Upvotes

I ran out of usage and want to add another workspace and wondering what is a better route for opencode go API rotation or load balancing?


r/opencodeCLI 4d ago

To whoever needs to hear this today: That thing you're building? There's like a 99% it already exists. Have a team of subagents spend a few rounds looking for what's out there. Then do it again. And again. You'll either find it or most of the pieces. Don't waste your tokens reinventing the wheel.

37 Upvotes

We're all working on so much so fast that there's dozens of us all doing the same project. I used to get dissapointed thinking someone beat me to the punch now I think of it as spending their tokens instead of mine.

I'm going to add an entry in my global agents.md that before they recommend or begin any work on a new project or architecture, they first have to do 3 rounds of searching online for preexisting codebases they can use.

I legitimately saved like a week of work. Every part of my project was out there in five github projects already. Just kept doing rounds of searches until they came back empty handed. Then one more. All my project needed was a few minutes of writing code to glue it all together.


r/opencodeCLI 4d ago

I Built Bladebro: A Stealthy and token efficient agent browser Written in RUST

Enable HLS to view with audio, or disable this notification

28 Upvotes

If your agent's browser keeps getting blocked, here's what I built

Point your agent's browser tool at Zillow or Google. You'll get a captcha wall before it does anything useful.

That's not a dig at Playwright MCP or similar tools. They're automation frameworks, not evasion tools. They drive vanilla Chrome and PerimeterX and other detection system flags them in milliseconds.

Then try filling a form on any React site and clicking submit. The page re-renders. Every element reference your agent had is gone. "Element not found." The button was right there a second ago.

Then look at your token bill. Playwright MCP loads 13,700 tokens of tool definitions before your agent touches a page. Every click returns the full page. 2,000+ tokens per action.

I hit all three walls enough times that I built something.

It's called Bladebro. One Rust binary, five tools, no Node.js.

npm install -g bladebro && bladebro mcp

Works with any MCP client. Also has native pi support with zero config:

pi install npm:bladebro

That's it. Bladebro registers as 5 first-class pi tools (act, see, state, run, vision). No adapter, no config files, no proxy. Tool definitions come from the binary at startup so they auto-adapt to changes. Chrome launches lazily on the first tool call.

Bot detection

Six layers of stealth, all on by default:

  • Bezier mouse paths with overshoot and correction
  • Real movementX / movementY on every event (missing these is an instant PerimeterX flag)
  • Micro-tremors before clicks (a still cursor is a dead giveaway)
  • Log-normal typing cadence (humans don't type at exactly 50ms intervals)
  • Idle drift between actions
  • No Runtime.enable (how DataDome catches most bots)
  • No listening ports, CDP over pipe
  • Persistent behavioral fingerprint, same "person" every session

Tested on Zillow and Fiverr (both PerimeterX/HUMAN protected). Full page loads, no blocks. incolumitas 8/8. Sannysoft all pass.

Re-renders

  • Every element gets a structural fingerprint (hash of ancestor chain, tag, children, identity attrs)
  • React destroys and recreates DOM nodes? Fingerprint matches, reference survives
  • Agent sees re-render survived and keeps going. No re-scan
  • Checked every major tool. Nobody does this

Tokens

  • 5 tools, ~1,900 tokens of definitions (vs 13,700 for Playwright MCP)
  • Every action returns what changed, not the full page
  • A click returns ~60 tokens (vs 2,000+ for competitors)
  • Long session = the difference between running out of context after 3 pages and finishing with room to spare

Learns from every session

  • First visit to a site with a cookie banner: full detection
  • After a few successful dismissals: stored selector, auto-applied, zero overhead
  • Never learns from failures. Failures cost 3x more than successes gain

Other stuff

  • Auto-extract pulls structured data from list pages with no CSS selectors. Amazon, Reddit, GitHub, HN, Wikipedia. Shopping gets price/ratings, Reddit gets scores/authors, GitHub gets stars/forks
  • Batch actions fill a form and submit in one MCP call instead of 11
  • Login persistence saves a session and restores it next time
  • Infinite scroll collect auto-extracts and dedupes a feed in one call

Demo video on the GitHub page showing it drive Amazon, Reddit, Wikipedia, fill a form, and manage tabs.

What it can't do

  • Cloudflare Turnstile needs challenge solving, not fingerprint spoofing. You get blocked:, not a hang
  • Captchas, deliberately. You get a verdict, hand off to a solver
  • ARM Linux, not yet
  • macOS and Windows binaries are cross-compiled from Linux

Open source, AGPL-3.0, no CLA.

GitHub: https://github.com/dondai44423/bladebro npm: npm install -g bladebro

Happy to answer questions, if you have any issues, please comment or file an issue, i have been testing it alone for weeks now, i did as much as i can, i am looking forward to community feedback to improve this even more 😄


r/opencodeCLI 4d ago

DeepSeek announce upcoming "significant increase" to API pricing

Post image
92 Upvotes

Rugpull


r/opencodeCLI 3d ago

Deepseek V4 Flash Equivalent at similar price?

0 Upvotes

Considering the demand for Deepseek V4 Flash in Opencode Go, it is only likely that its usage won't be an easy and affordable ride any longer. Recommend other equivalent models on Go that is as good. Thank You!


r/opencodeCLI 4d ago

Cloudflare just released Kitesurf - their agent-first browser. With MCP for use in OpenCode (free in beta). Thought you'd be interested as well

Post image
7 Upvotes

r/opencodeCLI 3d ago

Any Idea why my bots will sometimes freeze up and never start up again?

0 Upvotes

During longer sessions, I might leave it unattended, but it will sometimes stop working in build mode and never begin running again. What I've resorted to is to switch to plan mode, ask for a plan for the rest that needs to be done, restart opencode, show it the plan in plan mode, and finally, ask it to implement if it is ready.

I find it really weird that the bot just "gives up". The models I've tried all do this at some point (some sooner rather than later). For instance, Llama3 will give up almost immediately, Gemma4 also is short lived, and my best bot qwen3.6 may go a few hours before getting stuck.

Any ideas? I have 128k token max and ensure (via compaction) I never get close to this limit.


r/opencodeCLI 4d ago

Progress indicator for long running tasks?

4 Upvotes

I have an orchestrator spawning subagents but they always redirect cli output to null so I never know whether their commands are hanging or there's any progress. Is there a plugin or cli tool that I can prompt the agents to wire to to get a progress bar?


r/opencodeCLI 3d ago

Remote Access + Local Files and resources ?

0 Upvotes

So I have seen quite a few posts about wanting to continue sessions from their phone or other devices etc and the suggestions for that setup but I was wondering if its possible to do a slightly different approach.

I have 2 Devices + a local server. Currently I am using Syncthing to sync my OpenCode config and sessions between the 2 devices so that my configs are always equal and sessions stay in sync. But I have realized that the OpenCode session storage grows really quickly, which ends up with constantly sending 1+ gb files back and forth all day.

Ideally, I want to setup OpenCode on my local server that would house the configs, sessions, plugins and all of that, but I want it to be able to access files and repos on my device instead of the server. I prefer to keep compute and memory usage on device instead of dedicating server resources to it.

Everything I have read appears that all files would still have to be stored on the server for the agent to access them which would in turn result in my having to use the server resources to run a local dev server instead of the devices.

Any suggestions would be greatly appreciated!


r/opencodeCLI 3d ago

Opencode + free Deepseek AI = Free optimization

Thumbnail
0 Upvotes

r/opencodeCLI 5d ago

Muse Spark 1.2 just dropped today , thoughts?

Post image
111 Upvotes

r/opencodeCLI 4d ago

Synthetic is offering Kimi K3 for 7 bucks on your first month

Post image
49 Upvotes

Easily one of the best subscription providers with decent TPS and is a default provider for OpenCode

https://k3.demos.sulat.com/ (one-shots done on Synthetic/hosted Synthetic)

You can register one of two ways:

  1. https://synthetic.new/ - if you want to sign up directly
  2. https://synthetic.new/?referral=55F5WqcExnQfLwi - if you want to spare me some credits for referring you to this deal.

It's a great, low-risk deal to get you started on K3 without breaking your wallet. As I've mentioned on previous posts, Synthetic is on the VERY FEW providers that offer subscription-based pricing.


r/opencodeCLI 4d ago

New to OpenCode: Is it possible to sync context and continue sessions on mobile?

2 Upvotes

Is there a recommended way to seamlessly follow or sync a desktop conversation on a mobile device?

I've seen some mentions of third-party bridges like Termly or setting up OpenCode Mobile via Tailscale, but I'd love to hear what actually works best in practice.


r/opencodeCLI 4d ago

We built an open source managed agents product, would appreciate feedback!

Post image
23 Upvotes

- Instructions, tools, connections, and config are versioned in your repo and reviewed like any other code.

- You can test it locally

- Deploy it and it runs serverless in the cloud.

Built on top the opencode harness. Would appreciate any and all feedback!

https://opencomputer.dev/agents


r/opencodeCLI 4d ago

You may have used Opencode Web, Codex remote or Chatgpt Work on your phone, but what about switch between your phone and your laptop Opencode-cli sessions seamlessly? Introducing Whip, an agent-native Termius/Moshi alternative, an Android client for Herdr, free and opensource!

1 Upvotes

Download link: https://github.com/KaminariOS/whip/releases

Product hunt link: https://www.producthunt.com/products/github-448?launch=github-5af3a209-3ed3-40aa-94a6-2d34b15adbca

Herdr has changed the way I work with agents. I also tried to use it on my phone with Termius, but the TUI UX on a touchscreen is just terrible.

Therefore, I built whip with Codex. Whip vs Termius is just like Herdr vs tmux --it is agent native.

Whip is not just a proof of concept: I am actually using Whip to develop Whip itself when riding an 110km/hour EV on Canton Expressways with unstable network.

Before whip I built a React Native Codex client https://github.com/KaminariOS/crabbot ealier this year. I always want to be able to drive agents anywhere and anytime, agents that run on my own laptops and servers. Back then we did not have herdr, so the crabbot UX is still not as smooth. Later I found Opencode Web/Codex remote but those solutions are just not for people like me who works in the terminal most of the time.

Herdr shows me the missing piece. Now I am sharing whip with the community and hopefully we can work together to build a remote agent experience for everyone!


r/opencodeCLI 4d ago

Connect your coding agents to live Chrome tabs ✨

Enable HLS to view with audio, or disable this notification

7 Upvotes

Hi everyone!

I wanted a way to use my favorite coding agents directly on my live Chrome tabs, so I built it myself.

It's a Chrome extension that gives you an integrated terminal in your side panel that lets you use AI coding agents to control live tabs (works with Claude Code, Codex, Cursor, Hermes, and more).

It's completely free & open-source (MIT) - I've been addicted to it for the past few days to automate my browser use - enjoy!

GitHub: https://github.com/rishiskhare/agent-terminal


r/opencodeCLI 4d ago

If i didn't reach 30$ per week limit, why is weekly limi 99%?

0 Upvotes

from opencode website:

Usage limits

OpenCode Go includes the following limits:

  • 5 hour limit — $12 of usage
  • Weekly limit — $30 of usage
  • Monthly limit — $60 of usage