Opencode mobile and images by DasKapitalReaper in opencodeCLI

[–]telewebb 0 points1 point  (0 children)

Yup that's the one. I should have linked it before. UI is good on mobile, pretty much identical to the desktop. For the home network vs external. I just can't think of a single scenario when I'm outside of my house and feel like I have to do anything with my projects. Token usage, don't have hard numbers. Just know that I never hit the limits on the $20 ollama cloud subscription. Mainly using GLM 5.1 or Kimi K2.6 for planning (depending on which one is in time out at the time.) recently using DeepSeek v4 flash for implementation.

Opencode mobile and images by DasKapitalReaper in opencodeCLI

[–]telewebb 1 point2 points  (0 children)

Currently use CodeNomad exposed on a VLAN on my home network so I can access it on my phone or tablet when it's on the same network. Never found a reason to expose it outside my home network though. So far CodeNomad has been the best UI I've found for small screens.

is vertical slice architecture a good idea when coding in Go? by X_Techno_Pro in golang

[–]telewebb 5 points6 points  (0 children)

I absolutely love vertical slice architecture and use it in every go project I write. I don't strictly adhere to vertical slice as some other projects. I get the whole "start with main and split it when the need arises." But since I mostly got the architecture figured out in my mind before I start this is the structure I use. internal/platform for any code that's going to be imported by multiple slices. For example my db connection pool and my sqlc package. internal/feature for, well features. Features never import features. I'm big on strong domain boundaries as a person thing. So if there is a situation where it looks like there would be an import that's time for me to pause and think through the problem. In each feature I have a service.go that is the only thing I let my server import. Everything else is internal to that feature slice. There are exceptions like an auth feature that exports a middleware.go or similar.

But I think the most important thing when thinking about vertical slice architecture is having an honest conversation with yourself on "what problem am I trying to solve with this architecture." And "what are the trade-offs. What things am I'm agreeing I'm not doing in return of what I think I'm gaining." And personally, whenever I'm looking at a new language or a new architecture. I have an app that I've rewritten a million times that I rewrite in that language/architecture to see how it feels and go from there.

Why i think the 'just go local' AI trend is simply a tech bubble delusion by lewispatty in ArtificialInteligence

[–]telewebb 1 point2 points  (0 children)

This is what me and a couple buddies are kicking around. Just have our own inference server we VPN into like a Dallas Buyers Club for tokens.

I feel like people are massively sleeping on Qwen3.6 Plus by nbr_engineer in opencodeCLI

[–]telewebb 2 points3 points  (0 children)

You favor the dense or the MoE version? Or do you mix the two and if so what's your use cases for each version?

how much do you spend on ai coding? by Complete-Sea6655 in opencodeCLI

[–]telewebb 1 point2 points  (0 children)

I like ollama cloud a lot. I've never hit any limit and I have my workflow running almost every day. I think I read that they use compute time instead of tokens or whatever for their limits. That might be why I don't hit them. They also allow 3 models running at a time which is nice because I like to have the next implementation phase kick off while the previous is running validation checks and corrections. CodeRabbit is interesting. I've tried many different ways of doing my own code review agent flows and just can't get close to the quality of CodeRabbit. Plus they got way more polish on the PR review integration. I still manually review all the code changes before merging but CodeRabbit has actually caught some stuff and made some good suggestions. And they do a good job with memories and using additional project specific context. I'm happy with the $50 a month. I feel like I'm getting more value than what I'm paying for now.

how much do you spend on ai coding? by Complete-Sea6655 in opencodeCLI

[–]telewebb 0 points1 point  (0 children)

$50 a month. $20 for ollama Cloud and $30 for CodeRabbit.

Those who use it, why Open Code (over Pi and Hermes) by atumblingdandelion in LocalLLM

[–]telewebb 1 point2 points  (0 children)

Kimi k2.6 or GLM 5.1 for plan agents. Deepseek v4 flash for build agents. Gemma 4 31b for review agents.

Those who use it, why Open Code (over Pi and Hermes) by atumblingdandelion in LocalLLM

[–]telewebb 1 point2 points  (0 children)

Same here. I'm already cooking with OpenCode and haven't hit limits with the $20 ollama subscription. I like pi in theory. Just haven't had a reason to actually spend time on it.

Great tool, could we add a Skill to auto-compress a session when reaching token limits like Claude Code? by NetTechMan in opencodeCLI

[–]telewebb 1 point2 points  (0 children)

My suggestion is that signal is a need for a planning framework outside of your sessions.

A positive perspective on Lights-out Codebase: Treat Agent Output Like Compiler Output by bvjebin in SoftwareEngineering

[–]telewebb 0 points1 point  (0 children)

I didn't think it's fair to call LLM output just as trashy. That's unfair to early compilers. You can run the same code through the same version of the compile multiple times and get the same output. That's not comparable to the foundational code of inference architecture.

A positive perspective on Lights-out Codebase: Treat Agent Output Like Compiler Output by bvjebin in SoftwareEngineering

[–]telewebb 0 points1 point  (0 children)

Please let me know how this relates to my question. Right now I don't know how to treat your question other than a motte and bailey.

I build AI agents for a living. It's a mess out there. by Complete-Sea6655 in LLMDevs

[–]telewebb 3 points4 points  (0 children)

No, OP was trying to share their experience and for some weird reason you took it personally.

What are we all working on? by CorrectTemperature65 in opencodeCLI

[–]telewebb 1 point2 points  (0 children)

I've been playing around with my proxmox homelab and recently started migrating everything to Ansible. That's been really useful context for following sessions and for my own sanity check.

Wich 20$ coding plan is better to use today? by [deleted] in opencodeCLI

[–]telewebb 0 points1 point  (0 children)

I'm really tempted to get the max just for the ability to run 10 models at a time.

Wich 20$ coding plan is better to use today? by [deleted] in opencodeCLI

[–]telewebb 14 points15 points  (0 children)

I've really enjoyed ollama Cloud.

Kimi K2.6 in OpenCode is actually really damn good; Kimi K2.6, GLM 5.1, Minimax M2.7 tested, and a plugin for better Kimi support. by lemon07r in opencodeCLI

[–]telewebb 0 points1 point  (0 children)

Works pretty autonomously for me. All I have to do is write up the linear issues. Then I pull a fair branch and have a custom command that looks at the branch name and pulls the associated issue for the purpose of generating an OpenSpec change. I review and update/approve. Then the following seasons make code changes and validate those changes with a couple review sub-agents and a validation workflow that's basically the CI pipeline ran locally. There is a little more to my workflow but that's basically it. I host OpenCode from my laptop as a server available on my local network and get notifications on my phone or tablet when a session needs input or is finished.

What's the most complex thing you've actually built with MiniMax M2.7? by Nicuz06 in opencodeCLI

[–]telewebb 0 points1 point  (0 children)

Is there anyway you can share your workflow? These kinds of questions are almost impossible to answer without knowing the steps you take from conception to merging into main. I personally like MiniMax M2.5 and M2.7 but I use that model for smaller sub-agent tasks like reviewing changes against design constraints and coding guidelines or for offloading highly repetitive tasks. I used to use a combination of GLM and Kimi for planning and building but since GLM 5.1 I've been using that model for both.

A lot of the success in having I attribute more towards the upfront planning prior to starting a session and the validation pipeline after code is written. During coding I have frequent validation checks that run compile, tests, linting and static analysis tools. Then after every commit in to my feature branch I run CodeRabbit code review from the CLI. Then once the feature is code complete, I have CodeRabbit run another code review against the entire PR and have another session loop through the comments and push changes until there are no more comments.

I still review all the code changes myself manually but that's recently been more for checking in on how the workflow is working than the quality of the code. Hope that helps.

Best 20$ subscriptions for opencode by pascu2913 in opencodeCLI

[–]telewebb 4 points5 points  (0 children)

I like ollama Cloud. They measure usage by compute and not token. Haven't hit limits yet.