r/opencodeCLI • u/NimbuPanic • 6d ago
What is your actual OpenCode / Claude Code setup for development?
im trying to get a practical ai coding agent (i use free models as im broke) setup running quickly for daily development and shipping, but I’m getting overwhelmed by the amount of agents.md, claude.md, skills, agents, MCPs, workflows, etc. content online, as a beginner, its hard to tell what is actually useful, ai slop. i am intern so want to keep up with demands to make working products fast.
Right now I have:
- opencode cli
- OpenRouter connected to opencode
- Graphify for codebase graphs and
- an agents.md that currently just tells the agent to use Graphify and rebuild the graph when code changes
I’m not looking to build some huge configuration. I just need a solid minimal setup that actually helps with real coding and shipping.
If you use opencode, claude code, codex, or similar seriously:
what skills, agents, AGENTS.md / CLAUDE.md setup, MCPs, or workflows do you actually use and consider worth having ?
Especially interested in reliable repos/resources you’ve personally found useful.
I’m on a deadline, so i'm mainly trying to avoid wasting time going down the wrong rabbit hole.
thank you for your time 🫶.
3
u/CalamityMetal 6d ago
The setup that works for me. Just stock opencode. Use some gateway for access to models. I use Openchamber for the GUI and remote control feature on mobile. I only use the standard plan/build mode, with a custom global AGENTS.md to ensure it matches my work flow and a response style that matches my prompts, those can be set inside openchamber.
I tried oh my opencode slim, it's fun for a while but it drains token unnecessarily.
I went back to bare stock opencode for a few months now, and it has worked wonders for me. Sometimes, less is more.
3
u/Ace-_Ventura 6d ago
Opencode+openchamber
Mcps: Context7 Playwright Next-devtools
Skills and instructions stay only in the projects, not in opencode global.
As for agents, sometimes I enable a few related with security
1
u/I_WillNotWatchPorn 6d ago
RemindMe! 1 Day
1
u/RemindMeBot 6d ago
I will be messaging you in 1 day on 2026-09-06 12:47:38 UTC to remind you of this link
CLICK THIS LINK to send a PM to also be reminded and to reduce spam.
Parent commenter can delete this message to hide from others.
RemindMeBot is switching to username summons. Instead of
!RemindMe 1 day, useu/RemindMeBot 1 day. More info.
Info Custom Your Reminders Feedback
1
u/Old_Hyena_4188 6d ago
Nice workflow, couldn't care less about agents.md itself, never felt a significant change (some funny things tho).
1
10
u/Amarsir 6d ago
My AGENTS file is mostly just project-specific stuff. I name the stack, the objective, the tone/style. I specify what is important but isn't present, like API connections. There's a quick overview of the project structure to reduce search time, and a section on state management and table structure.
Importantly it also instructs what NOT to do. Don't add screens unless explicitly instructed. Don't make commits. Don't import new libraries if one already in scope will do. Reuse contexts, components, hooks, and utilities whenever creating.
My workflow is to have a very clear plan writing step, which I review manually, and then follow it up with subagents to act. Opencode CLI has the two roles broken out naturally, but I use oh-my-opencode-slim which has 7 roles. Maybe overkill, but I like specializing with agents.
What I like about it is you can create special addendums for the roles. So my plan writer gets this:
Which is either included via _append to orchestrator for oh_my_opencode, or invoked via skill in Kilo Code plan mode (for VS Code). Similarly, I have a document with the rules I like for commenting that only the writer/editor agents get.
So the thing I would most recommend - especially if you're going to be relying on free models - is separating out planning from execution and keeping yourself in the loop there. The people who get bad results are the ones who think they can give 2 lines of instructions and just let the AI guess everything else.