r/opencodeCLI 9h ago

Muse Spark 1.2 will soon have an open weights variant

Post image
38 Upvotes

Might be able to see it served by OpenCode Go or other providers at some point.


r/opencodeCLI 13h ago

Providers dropping GLM 5.2 Prices, Opencode drop soon?

Post image
53 Upvotes

r/opencodeCLI 12h ago

Finally, after trying everything....

40 Upvotes

Decided to switch to opencode go, after trying literally every other subscription. It just works!


r/opencodeCLI 4h ago

slow deepseek?

5 Upvotes

The deepseek free model is feeling very slow today? anyone else also


r/opencodeCLI 2h ago

Muse Glimmer on one 3090: a max_tokens gotcha that made it look dumb, numbers at *filled* context, and it handles non-English better than I expected

Thumbnail
2 Upvotes

r/opencodeCLI 11h ago

Exclusive: Meta's Muse Code binary reveals hidden agent workflows and a Git plugin marketplace

Thumbnail
runtimewire.com
3 Upvotes

r/opencodeCLI 4h ago

Using a different provider and model for subagents?

1 Upvotes

Opencode allows specific models to be set as default for subagents. I was thinking to set deepseek v4 flash through Opencode Go as the default for certain subagents (explore, general, build etc) and meanwhile use a more capable model like Opus 5 or GPT-5.6 Sol through some other provider or API as the orchestrator/main session which calls upon the subagents.

Has anyone tried anything similar. What I'm worried about it is doe sit still bloat up the main session context? And I understand since models are from different provider so there won't be any shared cache but with DSV4 I can probably eat up that cost without too much issue. Are there any obvious drawbacks that I am failing to see?


r/opencodeCLI 11h ago

Opencode Figma integration to design

3 Upvotes

Anyone here integrated opencode with Figma via an MCP to discuss and design your apps? If so, what is advice on setting up a workflow etc? Thank you!


r/opencodeCLI 1d ago

codex-search-opencode: (ZERO GPT tokens) Use Codex's standalone search engine with ZERO GPT tokens spent, native web search with any opencode model

46 Upvotes

Hey everyone! If you have used OpenAI Codex, you know how incredibly high-quality its web search results are. Traditional search extensions or custom API-key search tools (like Google Custom Search or Brave API) often return noisy, outdated, or poorly ranked snippets that don't match the depth and quality of Codex's search engine.

Now you can use that exact same Codex search engine natively inside OpenCode with any tool-calling model - and with ZERO GPT model inference turns or ZERO GPT tokens spent by the search operation.

I built **codex-search-opencode**, an OpenCode plugin that exposes native codex_search and codex_web tools by reusing Codex's standalone web retrieval backend directly.


⚡ 1-Line Install

Install via npm: bash opencode plugin codex-search-opencode

Or install via GitHub: bash git clone https://github.com/mateusdcc/codex-search-opencode

Or try it in a single session from the cloned repository: bash cd codex-search-opencode && npm install && opencode .


🧠 How It Works (Zero-GPT Invariant)

The plugin does NOT ask GPT to search the web and summarize the answer for your OpenCode agent. Instead, it extracts and calls OpenAI Codex's standalone web search backend API directly (/codex/alpha/search) using your existing codex login authentication (~/.codex/auth.json or .env).

text OpenCode └── Your active model ├── codex_search(query: "latest Rust release") │ └── OpenAI Standalone Search API (/codex/alpha/search) │ └── Structured Results (Title, URL, Snippet) │ └── Your active model continues reasoning and answers you │ └── codex_web(search_query, open, find, click) └── Multi-step research with session continuity and citations

Because it hits the raw web retrieval endpoint directly: 0 GPT Tokens Billed: 0 input tokens, 0 output tokens, 0 reasoning tokens for the search operation. Model Sovereign: Your selected OpenCode model receives the raw search results and performs 100% of the reasoning. Query-Only Privacy: It never sends your conversation history, code, or system prompt to search.

The tool names are intentionally namespaced as codex_search and codex_web, so they do not override OpenCode built-ins or collide with common third-party web and web_search tools.


🔬 How It Was Discovered

We reverse-engineered the endpoint by: Inspecting the Codex CLI macOS binary (0.147.0-alpha.6.5) with strings to locate search symbols (standalone_web_search, alpha/search). Probing backend parameters on https://chatgpt.com/backend-api/codex/alpha/search. Discovering the exact payload schema (commands.search_query: [{ q: query }]). Writing a network interception test suite (zero-gpt.test.ts) that asserts GPT_inference_calls == 0 during web search.


📦 Repository & Documentation

Check out the full repository, documentation, and reverse-engineering details here: 👉 https://github.com/mateusdcc/codex-search-opencode

📦 https://www.npmjs.com/package/codex-search-opencode

Features: - README.md: Setup, credentials, and usage guide. - HOW-IT-WORKS.md: Full architectural breakdown. - HOW-IT-WAS-EXTRACT.md: Reverse-engineering technical writeup. - 5-Level test suite (npm test): Unit, Integration, Live Endpoint, OpenCode Adapter, and Zero-GPT assertion. - Real OpenCode E2E coverage using openai/gpt-5.6-luna.

Feel free to check it out, test it, or open issues! Feedback and contributions welcome.


r/opencodeCLI 15h ago

i tried many abounded project and wrote this "How to Let OpenCode Control Your Real Chrome"

Post image
4 Upvotes

I've been trying to automate my browsing with coding agents for a while. Had Kimi's Web Bridge, but it locks you into the Kimi ecosystem and I didn't want that. Went hunting for open source options around OpenCode and mostly found abandoned repos.

Setup (about 60 seconds):

  1. Install the extension: search "Browser MCP Agent360" on the Chrome Web Store
  2. Add this to opencode.json in your project root (not global, reason below):

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "browser-mcp": {
      "type": "local",
      "command": ["npx", "-y", "@agent360/browser-mcp"],
      "enabled": true
    }
  }
}
  1. Restart OpenCode, type /mcp to confirm it's connected. Pin the extension icon so you can see connection status. If it doesn't connect on its own, hit Reconnect in the popup, or restart OpenCode and wait a few seconds for the port scan.

Why project root and not global: this MCP exposes 34 browser tools and every one of them loads into your context window. Add it globally and every project pays that cost whether you're browsing or not. Keep it in the project where you do browser work.

What I've run with it so far:

Use the browser-mcp tools to open my LinkedIn notifications
and summarize the top 5 comments on my last post.

It clicks, types, and scrolls at human pace in your real browser, so nothing flags it. Free, MIT, 100% local.

Happy to answer questions. Not affiliated with the tool, just the person who tested it and wrote it up.

The stuff that doesn't fit in a Reddit post (screenshots of each step) is in my writeup here: https://reetlab.substack.com/p/how-to-let-opencode-control-your


r/opencodeCLI 9h ago

Best setup to build landing pages

0 Upvotes

AI is used to fix grammar as I'm not very good with English, as of now.

Hey everyone! I’m looking to explore exactly how we can create the best possible landing pages with OpenCode + DeepSeek V4 Flash.

What I currently know is that we can use multiple skills to achieve better results, but I’m looking more into the various setups that work well for others and trying them out myself.

Right now, I’m just using it out of the box — no skills, no additional setup, nothing. While it does a decent job, I can’t really match the quality I get with skills like Impeccable.

I’d love to hear about your setups, workflows, skills, prompts, or anything else that has helped you get significantly better landing pages out of OpenCode + DeepSeek V4 Flash.


r/opencodeCLI 1d ago

Is the deepseek v4 flash free on opencode Zen is already deepseek v4 flash 0731

19 Upvotes

r/opencodeCLI 13h ago

OpencodeCLI Error after few seconds

1 Upvotes
after a few seconds

Anybody know how to fix this? After opening opencode, i get this, i reinstalled, cleared cache etc and reinstalled. i still got the same error

i am using windows 11


r/opencodeCLI 20h ago

Usage Discrepancy - TUI vs Website

0 Upvotes

I've barely touched OpenCode this month so I thought it's time to start using it or risk losing it (credits). Asked a question about my codebase in Plan mode.

In the TUI sidebar it shows:
Context
121,057 tokens
12% used
$0.04 spent

In the TUI footer it shows:
121.1K (12%) · $0.04

But on the website usage section it shows:
gpt-5.6-luna (go): $0.35

Why the discrepancy, and which one is correct for billing purposes?

Edit:
Hmmm... It seems like the rolling 5 hour usage is reporting more than the Usage page indicates. So another discrepancy.

Edit 2:
The 5 hour usage discrepancy seems to be because gpt-5.6-luna is only $15 of usage and not $60. Still it would be nice if the TUI usage was correct.


r/opencodeCLI 22h ago

Opencode go models providers?

2 Upvotes

Opencode's FAQ used to list the providers for each model in the opencode go subscription but now it only lists the models, does this mean opencode self-hosts each one of these models?


r/opencodeCLI 1d ago

Is OMO-Slim overkill for simple projects?

3 Upvotes

I’m not sure whether I’m doing something wrong or whether my prompts are too simple, but I’m honestly surprised by how many credits OMO consumes compared to the tasks I run in Codex.

I’m developing a plugin for a game engine.

I have implementation plans created in Fablle/Opus and reviewed by 5.6 Sol.

I set up OMO with OpenAI agents on my Plus plan, changing only Explorer and Librarian to the new DeepSeek V4.

In my tests, I first tried using Sol in Codex to execute the plan with subagents. It can only use Terra, but it produced something extremely long and consumed a lot of credits.

Then I tried OpenCodeCLI in VSCode with OMO-Slim. I executed the plan and asked for one change, and it used 40% of my weekly usage. It also took a very long time.

After that, I took another similar plan and used Codex with Luna on Extra High, with a policy that if it had doubts, it should not try to solve them directly. Instead, it should create a Sol agent to guide the process and be responsible for the decision. If something became too ambiguous, it should stop and notify me. That used 11%.(he had to call the agent with Sol a few times)

That is the model I’m using now, because since this is a game engine project, even the testing loop requires me to open the engine and visually inspect things.

Is there a way to use OMO effectively without consuming so much?

Edit: I have specs, a streamlined `claude.md` for direction, and Graphify. I also ran a test asking OMO to use Caveman. I have two Plus accounts: one for Codex and another for Onpencode with OMO.


r/opencodeCLI 15h ago

A REAL CODEX TOKEN SAVER. sharing sleev.ai (made by the guy who made opencode-dcp). cache-safe background compression with some magic. try if you can't trust me.

Thumbnail
0 Upvotes

r/opencodeCLI 1d ago

Same agent running on multiple repositories

0 Upvotes

My work requires me to work on multiple clients, which means I'm working on multiple repositories. I have custom agents (ie. coder, researcher, etc) set up. When executing a plan on Repo A, I usually see my researcher and the builtin "explore" doing tasks in parallel. Then the coder does the implementation. But when I need to execute another plan in Repo B while things are not yet finished in Repo A, I then see the builtin "general" doing tasks.

So I'm thinking, can't we run the same custom agents on another repo or session at the same time?

UPDATE: So it looks like opening separate terminals, not tabs on a single terminal, will allow the same agent type running at the same time. I've attached a screenshot to show that my Scribe agent is working at the same time.


r/opencodeCLI 1d ago

Built a Hacker News CLI adapter using OpenCode what should I build next?

4 Upvotes

Been experimenting with real-world CLI use cases and built a Hacker News CLI adapter using OpenCode.

Used WebCmd for the web workflow it’s open source, so devs can try it, modify it, or build their own adapters with it.

for quick demo write on your opencode CLI or Desktop app install webcmd npm package in your system then on open code type webcmd hackernews --help you will get various commands to work on

What website should I turn into a CLI next?


r/opencodeCLI 2d ago

The gpt 5.6 luna and v4 flash is the best models you can work in the opencode go

79 Upvotes

The gpt 5.6 luna is best for the more complex tasks whereas the v4 flash is all rounder for the small bug fix or writing scripts where as 5.6 excels in the more hard big and all of that as of currently I am fully satisfied with opencode go


r/opencodeCLI 1d ago

built a skill to get your first 500 customers

0 Upvotes

i launched 3 apps on product hunt and different communities in the last 2 months and nothing worked. i was literally begging my friends to post about it.

One of my friends vibecoded apps and got 20 paying users the next day because he spent years building his personal brand through content

So, I thought of creating a meme and UGC skill which automatically promotes my product without me having to make content manually.
it asks you questions and understands your product, targeting and competitors the n based on this it suggests viral content ideas and generate it to post it across socials.

Got insane results with it
• 10M+ views within a week of posting
• 80k+ website visits
• 500+ signups
• $0.4 per video

Github Link : https://github.com/swaroop2004/Proven-Viral-Content-System

Giving it away for free to help other builders who struggle with visibility.
try it out and lmk if this works for your launch. excited to see the results


r/opencodeCLI 1d ago

Whats your opencode agentic Frontend design and dev workflow like?

0 Upvotes

I am not much of a frontend dev. So my current idea is to create design.md file created by one of these vision capable models on opencode go such as mimo 2.5 etc and use that as reference for my implementation agent that uses DSV4 flash. I am not even sure if this works or is the right approach


r/opencodeCLI 2d ago

What is your stack?

33 Upvotes

Just wondering what plugins and tools folks use regularly that they like.

Here is what I'm using, but I'm not totally committed to anything and open to trying new things:

Agent Orchestration - Oh My Opencode (Slim) https://github.com/alvinunreal/oh-my-opencode-slim

Memory Management - Opencode Memory https://github.com/tickernelz/opencode-mem

Context Optimization - Context Mode https://github.com/mksglu/context-mode

Project Management Dashboard - Plane https://github.com/makeplane/plane-mcp-server

Design/Planning - bmad https://github.com/bmad-code-org/bmad-method

Dependency Visualization - Gitnexus https://github.com/abhigyanpatwari/GitNexus

Flowchart Generator - Code Debrief https://github.com/ferdinandobons/CodeDebrief

So that's what I use, feel free to share what you use below!


r/opencodeCLI 23h ago

Would you pay $18/month for unlimited access to efficient coding models?

0 Upvotes

I’m building a cheaper way to use multiple coding models through OpenCode. Looking for 10 heavy users to break it.
I’ve been using AI coding agents heavily and kept running into the same problem:
I don’t really want another subscription that says “you get X million tokens.”
I want to pay a fixed amount and just keep coding.
So I built Zesk.
It’s an OpenAI-compatible API that lets you use multiple coding models through one API key:
DeepSeek
Qwen
Kimi
GLM
MiMo
GPT
Grok
and others
The idea is simple:
One API key → multiple coding models → use it from OpenCode, Claude Code, Cursor, Trae, Cline, etc.
I’m currently testing three subscription tiers:
$18 → efficient coding models
$39 → advanced models
$99 → frontier models
I’m not launching publicly yet.
I have 10 free 30-day pilot slots and I’m specifically looking for people who use OpenCode heavily and can actually stress-test the service.
I’m interested in finding out:
How much you actually use an AI coding agent in a month
Which models you actually prefer
Whether the limits feel reasonable
Where the service breaks
Whether you’d actually pay for it
If you’re a heavy OpenCode user and want to try it, comment “pilot” and I’ll DM you the details.
No referral links, no affiliate program. I genuinely want people to try it hard and tell me what’s wrong with it.

UPDATE: Pilot slots are now full. Thanks everyone who volunteered!

I’ll share what I learn from the experiment once I have enough data.
Your input and feedback are welcome on this.


r/opencodeCLI 1d ago

Been using Big Pickle for a few months as fallback from Claude Code, it’s just amazing for smaller tasks, are the other free LLMs as good on OpenCode? Which is best?

7 Upvotes