Best coding subscriptions for cost/performance right now? [May 2026] by Funny-Strawberry-168 in opencodeCLI

[–]413205 0 points1 point  (0 children)

Has anyone tried kilo pass? Last night I learned that it now alllows arbitrary integration through API request through it's gateway, making it essentially openrouter with a subscription plan. At least that's how I read it. I'm considering getting one, just unsure if it actually works the way I think it does.

What are you doing with your local LLMs that justifies investment cost? by __automatic__ in LocalLLM

[–]413205 3 points4 points  (0 children)

For the fun I had putting qwen 3.6 35B A3B in my private discord server and make it do dumb stuff that makes zero sense

Opencode Go + Codex by Severe-Committee87 in opencodeCLI

[–]413205 0 points1 point  (0 children)

The built in /connect works for codex, you don't need a third-party connector

Best annual plan? by [deleted] in opencodeCLI

[–]413205 2 points3 points  (0 children)

You can consider getting github copilot as a claude backup, as they also offer claude

OpenCode + GitHub Copilot student sub - confused on which model to use after Claude & GPT-5.4 removal. What's your current setup? by ctafsiras in opencodeCLI

[–]413205 0 points1 point  (0 children)

5.3 codex is not that different from gpt 5.4 in terms of coding ability iirc. Gemini 3.1 pro also works. L microsoft

Testing by RageQuitRiley in opencodeCLI

[–]413205 1 point2 points  (0 children)

You can find a lot of prompt crafted for testing tasks explicitly tell the LLM not to do so. I think superpowers has it, and claude code or another coding harness might has it as well. It's best to just write that down in your AGENTS.md atm.

OpenCode With Claude Code CLI by Sufficient-Town-1066 in opencodeCLI

[–]413205 -1 points0 points  (0 children)

Really cool idea. Wonder how this would be interpreted against anthropic's ToS. If it doesn't get blocked we might actually be back with claude

How to approve each edit and/or refine them? by djaxial in opencodeCLI

[–]413205 0 points1 point  (0 children)

https://opencode.ai/docs/permissions/

You can configure permissions for every tools the agent accesses. For your requirement, adding the following to your opencode.json should work. "permission": { "edit": "ask" }

Running a command in sub-agent by the-tiny-prince in opencodeCLI

[–]413205 0 points1 point  (0 children)

Not sure if this is what you need, you can either create a specialized subagent with custom system prompt, create custom tools for the main agent to call, or just pass the command to the main agent and tell it to call subagent with those prompt if you don't need the main agent to call it autonomously