r/opencode 8h ago

Deepseek v4 flash scaring me, sending this cryptic text in opencode via Zen

23 Upvotes

r/opencode 4h ago

Opencode Zen is worth it now that subscriptions usage are nerfed?

9 Upvotes

Subscriptions like Claude and Codex are currently heavily nerfed, and the companies behind them have never been very transparent about usage limits.

Whenever I look up whether OpenCode Zen is worth it, people usually say that subscriptions offer better value. But with the recent changes and tighter limits on those subscriptions, has Zen become a better option?

I’m currently subscribed to Codex and OpenCode Go. This is my first time using OpenCode Go, and I burned through 96% of my weekly allowance very quickly because of K3 and GLM-4.6 (beginner’s mistake I guess). I also occasionally add credits to my DeepSeek API account.

Codex used to be my main tool, but lately it has been letting me down.

Also... tips for the best cost/value models for Go and Zen?


r/opencode 22h ago

I got opencode to display inline images, extremely useful when testing

Thumbnail
gallery
9 Upvotes

Do you know why it's not implemented yet?


r/opencode 22h ago

how do you all decide when to refactor vs just ship the messy version?

6 Upvotes

been working on a side project and keep hitting this wall where i know a piece of code is kind of messy/not ideal but it works, and i have to decide whether to stop and clean it up now or just keep moving and deal with it later.

curious how people who've been doing this longer actually make that call in practice. is there some rule of thumb (like "if i'll touch this file again soon, clean it now") or is it more just a gut feeling that builds with experience? also curious if this changes a lot depending on solo projects vs working with a team

not looking for a "it depends" answer lol, more curious about the actual heuristics people use day to day


r/opencode 9h ago

OpenCode Go vs MiMo Standard

6 Upvotes

Which gives you more usage on MiMo models?


r/opencode 3h ago

Where is MCP servers?

Post image
5 Upvotes

For some reason i simply can't find where to configure MCP servers from in this new ui

Earlier it were a simple text at top upon clicking it showed which MCP servers are chive and shi.

Now it's just nowhere to be found.

Also why is the usage limit all over the place? It shows user limit hit and I can simply send another prompt and it starts working again for some time. Either hit limit and stop working or just work bruv 😭


r/opencode 8h ago

goal mode

Post image
2 Upvotes

and it has /plan-mode too


r/opencode 14h ago

Can't we get the session and project tabs on the left on the new Opencode Desktop?

6 Upvotes

I like the new version except the session tabs being at the top. Previous version had them on the left is much easier to reach and glance.

I know we can toggle to enable the old layout, but we lose the new features like "open in" which is very useful.

Also is there any markdown viewer plugin for Opencode Desktop?


r/opencode 9h ago

what is happening??? (bug)

Enable HLS to view with audio, or disable this notification

3 Upvotes

r/opencode 17h ago

Opencode + ChaGPT Plus Subscription Issue

0 Upvotes

"You have insufficient permissions for this operation. Missing scopes: api.responses.write. Check that you have the correct role in your organization (Reader, Writer, Owner) and project (Member, Owner), and if you're using a restricted API key, that it has the necessary scopes."

The problem is that I'm using my monthly ChatGPT Plus subscription, not an API key.

I've already tried logging back in and clearing the cache but still nothing. Does anyone have any ideas?


r/opencode 23h ago

Hy3 has been added to OpenCode Go (newest model from Tencent)

Thumbnail
2 Upvotes

r/opencode 44m ago

I got tired of manually configuring coding agents and skills, so I built OpenHub (a TUI to discover and set them up)

Upvotes

I've been spending way too much time hunting down custom skills, prompts, and MCP servers for AI coding tools, then manually setting up SKILL.md files or configuring local binaries.

To make this easier, I built OpenHub, a terminal app for discovering and installing AI agent skills and tools from one place.

What it does:

  • Search indexed skills and repositories.
  • Export prompt/rule-based skills as a SKILL.md file into your current workspace with one command.
  • Install skills that require local binaries or MCP servers.
  • Keyboard-driven terminal interface for searching, exporting, installing, and copying.

Install:

pipx install git+https://github.com/24KaratAu/openhub.git

Run:

openhub

GitHub: https://github.com/24KaratAu/openhub

I built this to scratch my own itch, but figured others might find it useful too. It's open source, and I'd love any feedback, bug reports, feature requests, or contributions.


r/opencode 50m ago

Problems with Copilot Pro Student?

Upvotes

I connect Github but without any effect? Any ideas?


r/opencode 1h ago

Is this normal? Zen credits drained really fast

Upvotes

I normally use the Go subscription, but I hit my weekly limit. During that time I only used DeepSeek V4 Pro and DeepSeek V4 Flash.

So I added $10 to my Zen balance, again using only V4 Pro and V4 Flash, but the credits were gone surprisingly fast.

Is this expected behavior? Has anyone else experienced this? I wasn't using GPT, Claude, or any of the more expensive models, just DeepSeek V4 Pro and Flash the entire time.


r/opencode 5h ago

OpenSpec Plus v1.4.0: Enhanced inline reviews, refactoring and TDD test coverage

Thumbnail
1 Upvotes

r/opencode 22h ago

models routing in provider

1 Upvotes

I just watched a video where some dude added a model to a provider, tested it, and then later added another model to the same provider.

I can't seem to find that option anywhere.

I know that when you first set up a provider, you can enter multiple models. But after the provider has already been created, I don't see any way to reopen that model list and add more. In the video, he simply opened the window with the provider again, the previously added models were still there, and then added another one.

What am I missing? Is this an older feature that was removed or is there another way to edit the models for an existing provider, in the gui...


r/opencode 22h ago

How I Embedded Ethical AI Guidelines into All My OpenCode Interactions

0 Upvotes

I wanted my AI coding assistant to always follow a specific ethical framework, so I figured out how to embed my custom guidelines into every interaction with opencode. Here's how I did it—and how you can too.

### The Problem
I have a set of principles (based on 1 Corinthians 13) that I want all my AI interactions to follow—patience, kindness, humility, etc. But manually pasting these into every prompt is tedious and error-prone.

### The Solution
OpenCode has a built-in `instructions` feature that lets you automatically include custom guidance in **every** LLM interaction. Here's the step-by-step:

  1. **Create your guidance file** (e.g., `agape-guidance.md`):
    ```markdown
    # System Directive – Agape-Aligned Assistance
    In all interactions, embody the spirit of 1 Corinthians 13:
    - Be patient: Give clear, step-by-step explanations...
    - Be kind: Use gentle, respectful language...
    - [Your full principles here]
    ```

  2. **Add it to your OpenCode config** (`~/.config/opencode/opencode.json`):
    ```json
    {
    "$schema": "https://opencode.ai/config.json",
    "instructions": ["~/.config/opencode/agape-guidance.md"]
    }
    ```

  3. **Done!** OpenCode now automatically includes your guidance in every prompt.

### Why This Works
- **Global application**: Affects all projects and interactions
- **Non-intrusive**: Doesn't modify OpenCode's core—just adds your layer
- **Flexible**: Use any text file (`.md`, `.txt`, etc.)
- **Official feature**: Uses OpenCode's [documented `instructions` config](https://opencode.ai/docs/config#instructions)

### Customization Ideas
- **Team-wide ethics**: Place the file in a shared location for your org
- **Project-specific**: Override with a local `opencode.json`
- **Multiple files**: Reference an array of guidance files

### My Experience
Since implementing this, my AI interactions feel more aligned with my values. The assistant naturally adopts the tone and approach I want, without me having to remind it every time.

**Question for the community:**
What ethical frameworks or guidelines do you wish your AI tools followed by default? Would you use something like this?

*(Cross-posting this because I think it's a useful pattern for anyone wanting more control over AI behavior. Not affiliated with OpenCode—just a happy user.)*


r/opencode 21h ago

Hur använder jag Qwen 3.8 max och är den bra?

0 Upvotes

Hej!

Jag fattar inget, hur använder jag Qwen 3.8 max i opencode?

Skulle någon kunna hjälpa mig och är den så bra som alla säger?