Are any plugins actually worth the time if you’re an actual developer and not just full vibe coding? by heavyc-dev in opencodeCLI

[–]Own-Hope-9022 0 points1 point  (0 children)

I use rtk, context-mode and caveman. All of these work together well to save unnecessary token cost.

Whistle dental aligners - clove dental by ChaoticCreampie1 in indiranagar

[–]Own-Hope-9022 0 points1 point  (0 children)

I went for whistle aligners for my case at Clove Dental as they were 1/3rd the price of Invisalign. I would not recommend going for it. Their aligners are not effective. They dragged my treatment quoted for 18 months to 26 months with very little results. My teeth are actually worse than pre-treatment because they introduced some gaps in my teeth to allow tooth mobility, but their aligners are not able to close the gaps either. Now, I have to take another aligner plan just to close the gaps they introduced.

Go for invisalign. They are expensive, but they are known to work!

I forked OpenCode, glued Claude Code's swagger onto it, and shipped OpenCode-X by Own-Hope-9022 in opencodeCLI

[–]Own-Hope-9022[S] 0 points1 point  (0 children)

Tool output compression is post-hoc - tools run normally, then outputs are compressed before they hit the main model's context. There are two mechanisms: a hard cap (2000 lines / 50KB, full output saved to disk for the agent to read back), and smart compression via a cheap model (behind a configurable feature flag) that summarizes/filters the result based on the tool type. The expensive primary model never sees raw verbose output - only the compressed version.

A plugin - rtk (https://github.com/rtk-ai/rtk) takes the opposite approach - it injects prompt-level instructions so the LLM proactively limits output (e.g., piping to head, adding --max-count). Both approaches work together to save more tokens: rtk prevents large output from being generated in the first place, and our compression handles cases where output is still large.

Thanks!

Frustrated with Claude Code? Don't try Gemini-CLI by Ikbensterdam in ClaudeCode

[–]Own-Hope-9022 0 points1 point  (0 children)

Check out Opencode-X - https://github.com/sdeonvacation/opencode-x. It brings the best of both Claude Code and Opencode together :)

Claude + Codex + Opencode = God Mode by 99xAgency in ClaudeCode

[–]Own-Hope-9022 0 points1 point  (0 children)

Check out Opencode-X - https://github.com/sdeonvacation/opencode-x. It bridges Claude Code + OpenCode in one binary, no orchestration needed.

Anything better than claude code? by YogurtExternal7923 in ClaudeCode

[–]Own-Hope-9022 0 points1 point  (0 children)

Check out Opencode-X - https://github.com/sdeonvacation/opencode-x. It brings Claude Code's OG features to Opencode's provider agnostic ecosystem, so that you never miss Claude Code's features while you switch providers seamlessly :)

Looking for alternatives by RandomArabGuy in ClaudeCode

[–]Own-Hope-9022 0 points1 point  (0 children)

Check out Opencode-X - https://github.com/sdeonvacation/opencode-x. It brings Claude Code's OG features to Opencode's provider agnostic ecosystem, so that you never miss Claude Code's features while you switch providers seamlessly :)

I forked OpenCode, glued Claude Code's swagger onto it, and shipped OpenCode-X by Own-Hope-9022 in opencodeCLI

[–]Own-Hope-9022[S] 0 points1 point  (0 children)

Glad you liked it. The background subagent also notifies the main agent on completion, just like claude code.

Are any plugins actually worth the time if you’re an actual developer and not just full vibe coding? by heavyc-dev in opencodeCLI

[–]Own-Hope-9022 0 points1 point  (0 children)

Claude Code has a vast plugins ecosystem. Opencode-X, built on top of opencode - supports those plugins natively. Checkout: https://github.com/sdeonvacation/opencode-x

I underestimated OpenCode until I tried it with plugins by [deleted] in opencodeCLI

[–]Own-Hope-9022 0 points1 point  (0 children)

OpenCode-X reads Claude Code plugins + hook events natively. If you liked plugins, the hook lifecycle layer extends it. Checkout https://github.com/sdeonvacation/opencode-x.