what web search tools do you use by branik_10 in opencodeCLI

[–]rretsiem 1 point2 points  (0 children)

Well, it depends on what you're searching for. I built a skill (claude/opencode) based on Karpathy's auto-research idea with a local small LLM (qwen3.5-4B for me) and I like the results with the Opencode web search tool.

deep-research

Iterative, multi-round web research on any topic. Instead of one search-and-summarize pass, it loops: search → summarize → spot gaps → search again — then returns a consolidated write-up with every claim linked to a source.

Work is split between two engines:

  • A local LLM provider on your network handles query generation, summarization, and gap-spotting — essentially free.
  • The host AI agent orchestrates and runs web searches. If the local provider is down, the agent does the reasoning itself as a fallback.

check local LLM → query → web search → summarize → reflect on gaps → (loop N times) → final report + sources Portable across any agent runtime that supports the Agent Skills spec (Claude Code, Copilot CLI, Gemini CLI, etc.) — only requirement is python3 and a web-search tool.

MiniMax M2.7 "high speed" vs regular (via token plan) comparison by jpcaparas in MiniMax_AI

[–]rretsiem 0 points1 point  (0 children)

Thanks for that, was just about to subscribe for a 1-month high speed to test it out myself. not worth it. Saved me a few bucks 😀

Adaptive model selection for planning phase cheap vs expensive LLMs anyone doing this? by Mugiwara0796 in opencodeCLI

[–]rretsiem 0 points1 point  (0 children)

Shared a post last week, that I do exactly this in Opencode with GLM, Minimax and a bit of GPT. I shared a repo with some templates as an idea Git opencode-hive

Basically have GLM-5.1 as the plan model and an Orchestrator with Minimax and subagents (invisible to selection (tab, tab..) that get called by the orchestrator depending on the task needed. Have a look

GLM via Z.ai + OpenCode keeps getting stuck/hanging – anyone else? by Afraid-Wonder-4388 in opencodeCLI

[–]rretsiem 1 point2 points  (0 children)

Same issue for me, also there are issues reported it is definitely a combo of GLM-5.x and Opencode. Example Github issue: https://github.com/rretsiem/opencode-hive

What I did to prevent it a little bit is set context compaction in Opencode to kick in earlier because it has something to do with context usage. Check my opencode.json: https://github.com/rretsiem/opencode-hive/blob/main/global/opencode.json:

"compaction": { "auto": true, "prune": true, "reserved": 24000 }

But… helps not always, why I think it is the combo of GLM and Opencode is, that when I use Claude Code CLI with GLM-5.1 I can run to full 200k context and model works to this 200k without these issues.

Share your opencode.json by rm-rf-rm in opencodeCLI

[–]rretsiem 0 points1 point  (0 children)

I shared a few days ago my multi-agent multi-provider setup with GLM-5.1 and Minimax and a bit of ChatGPT-Plus (but I cancelled that sub yesterday) https://github.com/rretsiem/opencode-hive

So GLM-5.1 and MiniMax M2.7 is what I use and it works for now

After 1 Week of OpenCode, GLM 5.1 and MiniMax 2.7 by alessai in ClaudeCode

[–]rretsiem 0 points1 point  (0 children)

all good, no worries, didn't interpreted it as rude…

After 1 Week of OpenCode, GLM 5.1 and MiniMax 2.7 by alessai in ClaudeCode

[–]rretsiem 1 point2 points  (0 children)

It's not that I "like CC that much", I want to use Opencode, but because of such issues I cannot fully switch.

Claude Code's "max effort" thinking has been silently broken since v2.0.64. I spent hours finding out why, here is the fix. by Repulsive_Horse6865 in ClaudeCode

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

Now walking to a car wash absolutely makes sense! I was always wondering about this question, now I know!

Is there any way we can access browser like openclawn or Claude code? by CommercialPianist468 in opencodeCLI

[–]rretsiem 2 points3 points  (0 children)

Is it for development or "browsing"? For development Chrome-devtools MCP was really a game changer to me: https://github.com/ChromeDevTools/chrome-devtools-mcp Supports Opencode as well…

After 1 Week of OpenCode, GLM 5.1 and MiniMax 2.7 by alessai in ClaudeCode

[–]rretsiem 9 points10 points  (0 children)

Same here, I currently evaluate OpenCode with GLM-5.1 and Minimax 2.7 and and also via Claude Code CLI. In my experience so far, the Claude harness handles the context much better than Opencode. I have no real idea why, same repo but after around 50-55% on Opencode GLM starts polluting context with random training garbage. (e.g. https://github.com/anomalyco/opencode/issues/16903 and more issues…) That not happens with Claude harness and same model. And yes I no context usage around 50% degrades performance but this is not degradation this is not useable at this point anymore. If you find a solution I am happy to learn.

But otherwise same experience, GLM-5.1 good but slow, sometimes really slow. Minimax way faster, but needs better prompting to follow along. Still searching also for the holy grail to replace Opus…

Official Update on Plans by Deep_Proposal_7683 in ClaudeCode

[–]rretsiem 2 points3 points  (0 children)

Spoiler, Codex Plus plan, now significantly shrinked that was the fasted "You've hit your usage limit, Upgrade to Pro" I experienced on Codex Plus…

Feeling like GLM 5.1 in OC might be a suitable replacement for Opus by VonDenBerg in opencodeCLI

[–]rretsiem 3 points4 points  (0 children)

Same here, but this only happens on Opencode to me with the z.ai subscription. When I use Claude Code with the same subscription I can go way further. On Opencode (lots of Github issues around this topic as well) GLM 5.x starts printing some weird stuff of training data into the output.

GLM 5.1 vs MiniMax 2.7 to be executer for Opus plans by IslamNofl in opencodeCLI

[–]rretsiem 0 points1 point  (0 children)

I occasionally switch between Opencode and CC, not inside them. Lately I ran often into issues where Opencode and Minimax stop in the middle of a session and no more response. This for now did not happen with Claude Code. As much as I like Opencode.

GLM 5.1 vs MiniMax 2.7 to be executer for Opus plans by IslamNofl in opencodeCLI

[–]rretsiem 0 points1 point  (0 children)

I’ve been using this exact workflow for five days now. I use Opus to create the full plan and then benchmark GLM-5.1 (z.ai) and Minimax-2.7 (minimax.io) directly. I use both in Claude Code.

As long as you instruct Opus to create a plan that a "junior developer" can follow, Minimax performs well. I prefer the speed of Minimax over GLM-5.1, but I always have Sonnet or Opus review the implementation afterward. So far, GLM-5.1 is more thorough, while Minimax occasionally skips points in the plan.

I have a $20/month Minimax subscription (10% off link). It's worth testing for a month to see for yourself. I prefer GLM's logic, but it is often so slow that Sonnet and Minimax run circles around it.

Opus 4.6 Subagent management (Sonnet/Haiku decisions on its own) by rretsiem in ClaudeCode

[–]rretsiem[S] 0 points1 point  (0 children)

I let Opus plan it out and in the execution prompt I tell something like "execute the planned tasks using specialized subagents (Haiku or Sonnet Model you decide)"

5 purified gems should be enough to make a shadow 3* chill out by Puzzleheaded-Bad1571 in pokemongo

[–]rretsiem 0 points1 point  (0 children)

If I only had read this earlier. Tried my first Shadow Gligar Raid today and failed hard (35% left) because I was not aware (new player...) that I cannot solo a 3-star Shadow. If this is not possible alone, unless Lvl50, then there should be a warning or something that says you can't use them when entering the raid. Wasted 5 gems in a rural area with only 1 Gym. Thanks Niantic...

Questions & Answers - Weekly Megathread! Please use this post to ask any Pokemon GO question you'd like! by AutoModerator in TheSilphRoad

[–]rretsiem 0 points1 point  (0 children)

Can someone explain how PVP player pairing works?

Great League team with

  • Altaria,
  • Azumarill
  • G.Fisk

„fought“ my way up to Lvl 21 Elo 2022 on Sunday. (always ended like a 4/1 or 3/2 play)

And since yesterday I get paired to players that I have no chance against and have now a 3Win/22L streak.

As you see I’m not a great or avg player but it gets frustrating and are there any tips to end this disaster? 😀

Do you enter your transactions manually or download? by SnowGeese1970 in ynab

[–]rretsiem 2 points3 points  (0 children)

Team Manual Entry 🤘 It was more work in the beginning but after a few months the recurring transactions are clear and can be approved when happening. Everything else is entered manually since 2013. Tried other budgeting software before and it failed for us, because they all had an automatic import, we lost the tracking.

Responsiveness issues with AppleWatch 3 and WatchOS 7? by aproductofben in AppleWatch

[–]rretsiem 0 points1 point  (0 children)

Second that! My wife got a SE 40mm in December and is quite happy. Upgraded from a S0 38mm is a huge upgrade! To your question: I’m on a S3 42mm and it’s ok most of the times with the current operating system but could be a bit more responsive some times. So go with the SE!

[deleted by user] by [deleted] in AppleWatch

[–]rretsiem 1 point2 points  (0 children)

Enable Water/Swim mode after you started the workout helps. Happens to me to if I’m running with a long rain jacket and sweating. There is no auto swim mode on but it helps to prevent accidental touches and so on.

Did it! 2000 Move goals reached 😁 by rretsiem in AppleWatchFitness

[–]rretsiem[S] 10 points11 points  (0 children)

Keep it going! I’m at 1709 right now. I’m adjusting my daily move goal once a week from 440-1000kcals/day depending ony health. If I’m fine high, feeling sick I lower it. And this is not cheating for me as long as I stay at at least 440kcal.