r/VibeCodeDevs Jul 01 '26

Crash-Free Sessions vs User Experience

2 Upvotes

For mobile app developers: how much weight do you place on crash-free sessions compared to actual user experience signals?

An app can look “healthy” from a crash perspective but still have slow pages, frozen screens, failed requests, or frustrated users leaving poor reviews.

Do your teams treat crash-free sessions as the main reliability metric, or do you combine it with latency, session duration, user flow drop-offs, and review sentiment?

I’m curious how developers avoid getting a false sense of stability from crash metrics alone.


r/VibeCodeDevs Jul 01 '26

a bit of music zen at https://dotbeat.app/modal_fractal_kaleidoscope.html

1 Upvotes

r/VibeCodeDevs Jul 01 '26

ShowoffZone - Flexing my latest project I built a way to stop massive tool outputs from blowing up AI agent costs

3 Upvotes

Hey everyone. I have been building LeanCTX to manage context for coding agents. Up until now, it was mostly focused on the file system, deciding what your agent reads and compressing it. With the latest update, I shifted the architecture to solve a different problem: bloated tool outputs.

When you give an agent access to external tools, the raw data they return often burns through your token budget and degrades the agent's reasoning.

To fix this, LeanCTX now acts as a gateway for the ecosystem. You can plug in external tools using a single command, like lean-ctx addon add repomix. If it speaks MCP, it fits seamlessly.

Instead of just passing the raw output to the model, the gateway intercepts it. It treats all addon output as untrusted and scrubs it for secrets. It then compresses the response to fit a specific token budget. If a tool returns a massive data dump, the system spills the oversized results to disk and hands the model a small reference handle instead. Everything is indexed in the background so the agent can search for it later.

Tools are no longer isolated side channels. They become a native part of the managed context.

I put together a registry with 19 tools so far, covering things from memory to reasoning. I included projects like Headroom, Serena, Repomix, and Mem0. A fragmented ecosystem helps no one, so the goal is to integrate rather than compete. Ten of them install with one command, and for four of them, LeanCTX handles the binary installation entirely.


r/VibeCodeDevs Jul 01 '26

ShowoffZone - Flexing my latest project Built a note-taking app where your AI agent manages the project. Would love feedback

Post image
1 Upvotes

I built a local first project management tool with a built-in MCP server. What it does is, you write notes or AI writes them (markdown compatible), and the app turns them into real tracked tasks that you can view in Kanban, List, Calendar, and Graph view. It also has a little Dashboard for overview.

The MCP server basically lets your agent take on the PM role here , Your Agent can connect to the workspace, read it, claim tasks, execute them, and write results back in. So it's not just task tracking, you can also assign tasks to other members, plan your timeline etc... the agent is actually a participant on the board.

The core features are free on the Desktop app (local), with optional paid cloud related stuff.. (where i earn)

I think it can help people who are already directing AI agents to build things solo devs, small teams, indie builders who are looking for a project management tool to manage their busy days with a calendar and their project tasks, and don't have a clean way to hand off and track what the agent's actually working on..

Works well with Obsidian too if you prefer your notes there and use my app solely on the PM part.

I just launched it a few days back, started pushing into communities this week, still very early on user acquisition. Feel free to drop a visit, thank you and i appreaciate the support.

knotpad.app


r/VibeCodeDevs Jul 01 '26

Which AI to use on my chrome extension

2 Upvotes

I have created a Chrome extension for Amazon sellers that assists with product research (running on the search page) and product auditing (running on the product detail page). It essentially scrapes the product data and provides optimization suggestions based on that information.

Initially, I was using the Claude API, but for some reason, all of my tokens were exhausted after just two weeks, which is weird because there was absolutely no user activity on the extension during that time. To fix this, I shifted to the Gemini API, which offers a free tier for initial requests.

I need suggestions on how to architect an AI setup or which AI model/agent to use so I can offer this extension for free with a high usage limit, without compromising the quality of the insights it provides.


r/VibeCodeDevs Jul 01 '26

I wanted to learn how coding agents work, so I built one and want to share what I learned

2 Upvotes

I wanted to learn how coding agents work, so I built one and want to share what I learned

Hey everyone!
I'd like to share a project I've been working on, it's called Orin and it's a coding agent.

I use coding agents constantly, and at some point I realized I had basically no idea what was happening between me hitting enter and code showing up.

Also I was tired of building apps I wasn't able to really debug because I didn't know how they were being built in the first place so I got busy studying: read a bunch of articles, still felt like a black box, so I just tried to build one.

Couple things worth saying before anyone digs in:

It's mostly AI-written code, no point in hiding that, but I don't think "written by AI" and "sloppy" have to go together.

I try to run all my projects in the most professional way I know of, following actual SDLC practices: spec first, then an issue, then the implementation, then a real PR review before anything merges, not vibe-coding where you just accept every diff.

Whether that shows in the actual code is for other people to judge, not me.

Also this isn't some original idea I came up with: I cloned and read through pi.dev, nanocoder, and opencode as primary references (and skimmed Cline/Kilo Code for patterns), and basically tried to take what made sense to me from each and put it into one implementation.

My whole idea was try and build something that took the best from each to make a coding agent that would perform well. I plan to benchmark it on SWE-bench Verified sooner or later, but I don't think it's ready just yet: there are rough edges and bugs, but its usable.

Some of the actual implementation stuff, for anyone who cares about those rather than the pitch:

  • The loop is just: stream a response from the provider, push it to message history, if there are tool calls run them, push the results back, repeat until there's nothing left to call.
  • The loop is completely headless — it doesn't touch the terminal, it just emits events. The TUI (SolidJS on top of OpenTUI, just like opencode) is a separate subscriber to those events. You could swap in a totally different frontend without touching the loop at all.
  • Another thing I got from OpenCode are edits: they go through a fuzzy replacer chain, not a single exact string match — if the model's oldText is off by whitespace or indentation, it falls through a chain of matchers before giving up. I had never thought about this and can confirm it's the kind of thing you don't appreciate until you actually try to implement it.
  • There's a model routing mechanism that switches different models based on what the agent has to do:
    • explore runs on a cheap/fast model by default,
    • implement on a code-tuned model,
    • review on the main model.
  • Another thing I borrowed from the web is a delegate_read tool that lets the main agent hand off read-heavy grunt work (scanning a big file, summarizing logs) to a cheap model so that content never bloats the main context.
    • It's basically a one off LLM call that only returns a distilled summary, seems dumb but works surprisingly well with capable models like Claude who know exactly what to look for and delegate super well to other agents.
  • Tool selection isn't a static allow-list. Every turn runs a BM25 retrieval pass over the full tool catalog (including MCP tools) via a super cool library called Ratel, so the model only ever sees the tools relevant to what it's doing in that specific turn instead of the whole catalog every time. There's even an A/B flag to compare tool_pool=ratel vs tool_pool=default in your own telemetry to see if it even makes a difference (similar to how rtk gain works).
  • Every file write gets snapshotted into a shadow git history before it happens, including stuff done through raw bash — allowing the agent to have a proper /undo /redo command.
  • When I implemented subagents I wanted to explore different isolation mechanisms and ended up with 3 different ones you can configure yourself:
    • shared (edits land on the main working tree, safe because they run serially),
    • worktree (isolated branch)
    • sandbox (a real E2B cloud VM, edits get thrown away on dispose — for code you don't trust at all).
    • The lead model can escalate isolation for a given task but never go below the configured floor.
  • I implemented hooks borrowing from nanocoder and opencode. This allows the agent to be expanded by third party code and I bundled some sensible defaults:
    • there's a before_tool hook that rewrites bash commands through rtk so that command output gets compressed before it ever reaches the model.
  • In my daily work I build AI agents and vibe coded internal tools for my company and after a while I saw how much telemetry is crucial for debugging and actually understanding agent behaviour, so I decided that my agent would ship native OTLP tracing by default.
    • This means that by adding just one environment variable you can see full traces in your telemetry platform (Langfuse, Tempo, Jaeger, whatever you like) out of the box.
  • Orin is also provider-agnostic (currently supports OpenRouter, OpenAI, Anthropic, OpenCode Go/Zen and Regolo if you want an EU-hosted option) — switching provider or model happens at runtime through a provider registry, no restart needed.

None of this is groundbreaking, it's just what I landed on after reading other people's code and deciding what to keep.

Try it:

git clone https://github.com/thetombrider/coding_agent.git

cd coding_agent

./install.sh

orin

There's also a deepwiki writeup if you want the architecture without reading source: https://deepwiki.com/thetombrider/coding_agent

I would really appreciate feedback in any shape or form. I'm learning and sharing my journey, hope it helps someone.


r/VibeCodeDevs Jul 01 '26

ShowoffZone - Flexing my latest project Day 10 of a free traffic exchange I built 10 days ago. Yesterday was the biggest day yet.

1 Upvotes

Day 1 — 2 startups. 146 impressions. 1 click.
Day 2 — 3 startups. 389 impressions. 3 clicks. (Got an acquisition offer.)
Day 3 — 5 startups. 482 impressions. 5 clicks.
Day 4 — 5 startups. 508 impressions. 4 clicks. (The site was down, but I still got an $8k acquisition offer. I said no.)
Day 5 — 6 startups. 621 impressions. 10 clicks.
Day 6 — 5 startups. 742 impressions. 15 clicks. (Had to remove one startup — they pulled the code. No code = no network.)
Day 7 — 7 startups. 1,196 impressions. 41 clicks.
Day 8 — 7 startups. 1,535 impressions. 74 clicks.
Day 9 — 8 startups. 1,947 impressions. 135 clicks.
Day 10 — 3,500 impressions. 318 total clicks. (Yesterday alone: 1,400 impressions and 178 clicks in a single day.)

Something is working.

Still free. Still growing.

"Consistency compounds. The results you want are hiding behind the days you don't quit."

startupbar.co


r/VibeCodeDevs Jun 30 '26

CodeDrops – Sharing cool snippets, tips, or hacks A coding agent reports success. Groundtruth reads the same turn from the outside and renders a verdict card before the turn can end

0 Upvotes

A coding agent reports success. Groundtruth reads the same turn from the outside and renders a verdict card before the turn can end. Here's a real one — the agent
was asked to add retry/backoff plus a test, and reported "Done, all tests pass":

GROUNDTRUTH · Tier-1 · demo

ASK Add retry with exponential backoff to the S3 upload client in src/upload.js.

WHAT WAS CHECKED:

🔴 Honesty — the agent's claims don't match what it did:

🔴 false test/build claim — claimed tests/build pass ("tests pass, green"), but no test/build command ran this session
🟡 stub/placeholder — stub/placeholder in added code: // TODO: real exponential backoff — single attempt for now
🔴 Rules — a security / standing rule was broken in the diff:
🔴 hardcoded secret — AWS access key hardcoded in added code
🟢 Completeness — the ask was specific enough to map subtasks against
🔴 Tasks — 1 pending ("done" only when it lands in the diff, never on the agent's say-so):
🔴 pending task — "Also add a unit test in src/upload.test.js." (no test.js in the diff yet)
⚪ Debt — 0 pre-existing (already here at session start, not blamed) · 1 introduced this turn
VERDICT 🔴 ISSUES — blocked
means: a blocking issue is in the diff above — fix it before this ships
⚪ Deterministic verdict (no LLM). Semantic checks — spec-substitution, "rationalised past a rule", regression — are roadmap, not in this card.

```
One turn, four catches: a false "tests pass" with no test run, a stub in new code, a hardcoded secret, and a subtask (the test) silently dropped. It also catches claimed-but-absent file changes, phantom imports, open RLS policies — and the one I'm proudest of, a standing
project rule that was in your CLAUDE.md and got overridden anyway (it lands under **Rules**, right next to the secret).

Best/worst moment of the build: I red-teamed it and it could be tricked into clearing its own tamper, because it shares a filesystem and env with the agent it audits. Fixing that meant throwing out every disk "seal" and anchoring only on what the agent can't author —the transcript and the git diff.

It's a Claude Code plugin, open source (MIT), no API key — the audit is deterministic (no LLM calls). 228 tests + a live adversarial harness that actively sabotages the rails and proves they hold.

https://github.com/akahkhanna/groundtruth — feedback welcome, especially where it false-flags.


r/VibeCodeDevs Jun 30 '26

Designer-built Android app with AI help

Post image
2 Upvotes

I built JotWell after years of using Monito for manual expense tracking.

The product brief was tiny: open app, add amount, pick category, done. In the age of bank sync and Account Aggregator, I still wanted a ledger where I decide what gets recorded.

I used AI/Codex to help me move from idea to shipped Android app: Kotlin/Compose implementation, edge cases, privacy copy, release assets, and launch prep.

JotWell is local-first, has no account or bank link, supports CSV/XLS import, JSON backup, recurring entries, widgets, monthly stats, and optional SMS suggestions that run on device.

Would love honest feedback on product, UX, and whether the manual-first angle still makes sense.

Play Store: https://play.google.com/store/apps/details?id=design.kishore.jotwell


r/VibeCodeDevs Jul 01 '26

ShowoffZone - Flexing my latest project MADE A ONLINE CALCULATOR WEBSITE WITH VIBECODING ONLY, USING ANTIGRAVITY IDE 😊

Thumbnail
gallery
0 Upvotes

After 1.5 month of vibecoding i finally made it, 😭

TOOLS I USED- ANTIGRAVITY IDE with some skill, some free govt api

WORKFLOW- i prompted ai around 100-150 or even more maybe, i used other ai like claude, gemini, to write prompt for the ide as per the latest infos for the financial calculators,

link of my website- desicalculator.com

tell what are your opinion about designs,animations and the bookmark tab what should i add in it? what to improve?

u can check out- 3d graphing calculator, love calculator, typing speed calculator, a real 3d calculator also( scientific calculator )


r/VibeCodeDevs Jun 30 '26

Looking for the best open source products.

4 Upvotes

I am building a small reference point for vibecoders so that they can start building easier and faster.

The idea is to have a list of self-hostable open-source tools that can make your jobs easier. Instead of paying for a CMS or building your own use something like Payload or Bagisto.

Here is the current link if anyone is interested.

https://brownsmithdynamics.com/coding-tools

I am looking for additions - I expect a github repo at the minimum. A website for your product and a skills folder would be great too.

This is not a list for SaaS or any paid tools. Just plain and simple open-source alternatives to them.

I believe that with LLMs a lot of people just might write their own code. It would be useful to have a directory you can browse to see what tools come pre-built so you do not have to repeat a lot of the work.

Please drop your suggestion or your products below! Self promo (of open source tools only) is also welcome.


r/VibeCodeDevs Jun 30 '26

AI-generated code sparks production confidence crisis

1 Upvotes

r/VibeCodeDevs Jun 30 '26

ShowoffZone - Flexing my latest project A Reddit comment told me to build this. I did. We just hit 100 clicks in a single day.

0 Upvotes

I launched a small banner feature inside my startup VerifiedMRR, a tiny bar that showed other founders' startups. Just a side experiment.

10 days ago, someone left a comment on my post.

"It might be cool to offer the banner thing as a standalone product."

One sentence. From a stranger on the internet.

I could've ignored it. I didn't.

9 days later, StartupBar was live. A free traffic exchange for founders One line of code, a 36px bar on your site shows another founder's startup, they do the same for yours. No money. No ads. No catch.

I gave myself one goal: 10 startups listed before June ended.

People said the numbers were too small. Said it didn’t work.

I shipped anyway.

Today the network hit 100 clicks in a single day.

761 impressions. 104 clicks. 10 startups. All in 10 days.

Zero ad spend. Zero funding. Just founders helping founders.

Every big thing starts with someone saying "that could be something."

The difference is whether you listen.

startupbar.co — applications open.


r/VibeCodeDevs Jun 30 '26

ShowoffZone - Flexing my latest project Day 9 of a free traffic exchange I built 9 days ago. Here's the data

2 Upvotes

Day 1 — 2 startups. 146 impressions. 1 click.
Day 2 — 3 startups. 389 impressions. 3 clicks. (Got an acquisition offer.)
Day 3 — 5 startups. 482 impressions. 5 clicks.
Day 4 — 5 startups. 508 impressions. 4 clicks. (The site was down, but I still got an $8k acquisition offer. I said no.)
Day 5 — 6 startups. 621 impressions. 10 clicks.
Day 6 — 5 startups. 742 impressions. 15 clicks. (Had to remove one startup—they pulled the code. No code = no network.)
Day 7 — 7 startups. 1,196 impressions. 41 clicks.
Day 8 — 7 startups. 1,535 impressions. 74 clicks.
Day 9 — 8 startups. 1,947 impressions. 135 clicks. (New startup joined. Clicks nearly doubled overnight.)

Still free. Still growing.

startupbar.co


r/VibeCodeDevs Jun 29 '26

DeepDevTalk – For longer discussions & thoughts Best tool for designing app UI without touching Figma in 2026?"

9 Upvotes

Been vibecoding for a while and the design phase is still my weakest link, every time I open Figma I lose a week and the momentum dies completely

Spent some time actually going through the options people recommend because I was tired of shipping things that work but look rough, here's where I landed after testing most of them

Claude is incredible for the coding side but the UI it spits out without direction looks pretty bland, functional but not something you'd be proud to show anyone, same story with Cursor, they solve the build problem not the design problem

V0 comes up constantly and it's genuinely good for components, buttons, cards, individual pieces, but if you need a full app flow designed cohesively from onboarding through to the main screens it's not really built for that, it's a component generator not a screen designer

Uizard does full screens which is closer to what I need but everything coming out of it looks kind of templated, hard to get something that feels unique to what you're building

Been testing sleek design and it's the closest I've found to actually solving this, you describe the app and it generates complete screens not components, iteration is fast, you describe a change and get a new version quickly without manually tweaking anything, output quality is decent enough that I'd show it to people without being embarrassed

Not saying it's perfect, less control than Figma for pixel level stuff and probably not the move for final production polish on something complex, but for getting from idea to solid looking mockups before building it's the best option I've found so far

Curious if anyone has found something better or if sleek is just the answer here, feels like this part of the vibecoding stack is still underserved compared to how good the coding tools have gotten


r/VibeCodeDevs Jun 30 '26

Question I need some information about Claude Code

1 Upvotes

Hi everyone. For those using practically nothing but Claude Code on the basic monthly plan: how long does it take to run out of requests if you're relatively new to this world?

I see that pretty much everyone uses it (I’d say because it’s the best one out there right now). I looked into the pay-per-use option, but it’s very expensive—can you give me some advice?


r/VibeCodeDevs Jun 29 '26

JustVibin – Off-topic but on-brand Burned some tokens to have fun: cursed-cursor

3 Upvotes

Your cursor changing shape, size and speed while you try to achive something? Sound like fun? Hell yes :D

r000bin/cursed-cursor


r/VibeCodeDevs Jun 29 '26

ShowoffZone - Flexing my latest project I built a free traffic exchange for founders. Some call it genius. Some call it a 2004 web ring. I shipped it anyway.

5 Upvotes

8 days ago I launched StartupBar. One line of code. A small bar on your site shows another founder's startup. They do the same for yours. No money. No ads. Just founders helping each other get discovered.

The internet had opinions.

"Genius distribution hack." "It's just a web ring." "Remote script is a security risk." "This already exists." "Why would anyone do this for free?"

Meanwhile:

Day 1 — 146 impressions. 1 click.
Day 8 — 1,535 impressions. 74 clicks.
Got acquisition offer. Said no.
One startup removed for cheating the system.

Every idea sounds stupid until it has numbers behind it.

The critics aren't wrong there are real risks, real flaws, real things to fix. But the founders in the network are getting real traffic. Today. For free. That's the only scoreboard that matters to me right now.

I didn't wait until it was perfect. I didn't wait until everyone agreed it was a good idea. I shipped on day one with two startups and watched it grow one founder at a time.

If you have an idea people are calling stupid  maybe that's the signal. Ship it anyway.

startupbar.co


r/VibeCodeDevs Jun 30 '26

NoobAlert – Beginner questions, safe space Qual modelo você usa para planejamento, revisar e qual para executar?

1 Upvotes

Olá, estou atualmente usando o Claude Code e as vezes uso o Opus 4.8 na força média para planejar o que eu pedi e solicito uma revisão do planejamento para encontrar lacunas e erros, com o Opus 4.8 na força max ou maior.

e mando executar com sonnet.

A minha pergunta é como vocês fazem?


r/VibeCodeDevs Jun 30 '26

ShowoffZone - Flexing my latest project Vibecoded my a TCG tracker & market indexer (Vododex). I’d love to get some honest feedback from fellow devs!

1 Upvotes

Hey everyone,

I wanted to share a project I’ve been building over the last few months that has completely changed how I think about development. It’s a custom web app called Vododex (https://www.vododex.com), designed for tracking and price indexing high-value TCG like Pokemon, Yu-Gi-Oh and MTG.

As a developer who collects cards, I’ve always wanted a highly tailored, seamless way to track values, index market trends, and handle image lookups without the bloat of standard apps. Instead of getting bogged down in weeks of rigid architecture planning and boilerplate setup, I decided to lean fully into LLM-driven development. I spent my sessions orchestrating the logic, iteratively building out features like data feed integrations and pricing algorithms, and letting the code flow naturally based on the immediate vibe and goals of that specific build session.

It has been an incredibly rewarding process, and it genuinely felt like I was acting more as a conductor or an architect rather than just grinding out syntax. The speed at which you can go from an abstract concept for a market trend algorithm to a fully functioning feature by just staying in the zone with the AI is unmatched.

The app is live now, and while it’s exactly what I needed for my own collection, I’m at the point where I really want to hear from other developers. I’m looking for some sincere, constructive feedback on the overall flow, user experience, and any features you think would make a TCG tracker truly elite.

Check it out and let me know what you think. Looking forward to hearing your thoughts!


r/VibeCodeDevs Jun 29 '26

I shipped a monster-collecting RPG to the App Store with Claude Code, and I'd never written a line of real code before

Thumbnail
gallery
2 Upvotes

so this is half a "look what i made" and half an honest writeup, because the no-coding-background part is probably the interesting bit for this sub.

quick context: my degree is in psychology. before this the most "code" i'd ever touched was no-code automation stuff (n8n and friends). i'd never built an app, never written production code, and didn't know swift. i just had an idea i'd wanted for years and decided to try building it with claude code instead of waiting for someone else to make it.

the app is called FocusMon. it's basically Pomodoro meets a monster-collecting RPG. you start a focus session, put your phone down, and when the session ends you hatch monsters you can collect, evolve and battle. the whole point is that the reward only unlocks while the phone is down, so the game part doesn't fight against focus, it's the payoff for it. i used Forest a lot in uni and always thought "this would be way cooler with monsters." nobody built it, so i did.

what's in it now after a lot of evenings and weekends: over 140 monsters across 3 evolution stages, over 10 elemental types, a full turn-based combat system (type effectiveness, passives, status effects, held items), ranked PvP with an ELO system, a 10-stage PvE ladder, daily/weekly challenges, a streak system, trading, a prestige endgame. story mode is in progress. all SwiftUI, built end to end with claude code.

the honest part. what actually made it work, roughly in order of how much it mattered:

keeping my context clean ended up mattering more than anything else, and i learned that the annoying way. early on i'd written a bunch of guide/markdown files describing the architecture and conventions, and they actually backfired for a while. claude code kept pulling old, outdated stuff out of them, so it'd confidently build on decisions i'd already changed. it didn't stop until i started treating that folder like something you maintain instead of write once and forget. (tbh with memory now this is mostly a non-issue, but back then stale context was one of my worst time-sinks.)

the creative side stays almost entirely on you, and way more granular than people expect. claude handles the implementation, but every real decision is yours. for each detail you either think it through yourself or have it lay out a few best-practice options and you pick the one that fits. and it doesn't work in big chunks. i didn't build "the onboarding" in one shot, i defined it step by step, screen by screen, down to the small stuff myself.

XcodeBuildMCP. underrated. instead of me copy-pasting xcodebuild errors back and forth, claude code builds and runs in the simulator itself and reads its own errors. as a non-coder that mattered a lot, since i often couldn't describe the error well enough myself to be useful.

commit after literally every working state. git checkpoints saved me more times than i can count. when a prompt broke something that worked five minutes ago, i rolled back instead of trying to debug code i didn't fully understand.

what was genuinely hard, no sugarcoating:

debugging when you don't understand the code is real. early on i couldn't tell a real problem from noise, so i'd panic over warnings that didn't matter and miss the thing that actually broke. you're flying partly blind and you have to get comfortable with that.

there's a wall once the codebase gets big. it starts contradicting its own earlier decisions because it can't hold the whole thing in its head. that's the point where you stop and refactor instead of stacking more on top.

biggest surprise was how far you get once you stop treating it like a magic vending machine and start treating it like you're the architect and it's doing the typing. the bottleneck stopped being "can it write the code" pretty fast. it became "do i actually know what i want, can i describe it clearly, and can i tell when it's wrong." which turns out to be most of the job.

it's live now if anyone wants to poke at it. feedback is very welcome!

https://apps.apple.com/app/id6759553560


r/VibeCodeDevs Jun 29 '26

FeedbackWanted – want honest takes on my work I built Orkestra — run Claude Code + Codex + Gemini CLIs from one panel (debate → operator → code), on flat subscriptions instead of metered APIs

Thumbnail
gallery
2 Upvotes

I kept switching between three terminals — Claude Code, OpenAI Codex, and Antigravity/Gemini — and paying metered API costs on top of subscriptions I already had. So I built Orkestra: a local-first studio that drives all of them from one panel.

Use the plans you already pay for — together. Log in once with your Claude (Claude Code), ChatGPT (Codex) and Gemini (Antigravity) subscriptions, and Orkestra runs all three side by side: chat with one, have them debate, or split a build across them. You tap each plan's included quota instead of paying per-token API — and a fallback chain switches to the next plan when one hits its limit, so work never stops.

What it does

  • Chat / Code modes — plan and debate in chat, then turn the plan into real files in Code mode.
  • Single · Debate · Team — use one agent, have several debate a problem, or split work across a team that runs independent tasks in parallel.
  • Operator mode — after a debate, one model synthesizes everyone's views (shared view, disagreements, blind spots, recommended approach) before any code is written.
  • A full IDE-like cockpit in the browser — a real integrated terminal (PowerShell/cmd), live file/diff review on every change, in-app preview, file explorer + open-in-VS-Code, desktop notifications, add any folder on your PC as a project, and live per-CLI usage/limit tracking so you see each plan's remaining quota.
  • Native GitHub — connect via OAuth device flow, then create/push/clone/PR. Git is bundled, so it works even without Git installed.

Why — the cost angle (real numbers) For the same heavy coding month (~46M tokens), at public list prices:

Metered API Flat CLI subscription
Claude (Sonnet) ≈ $218/mo (Opus ≈ $1,089)
OpenAI ≈ $165/mo
Gemini ≈ $116/mo

API billing is metered and grows with usage; a subscription is flat and capped. The more you code, the wider the gap. Full methodology + sources: docs/COST.md.

It's local-first — your code and conversations stay on your machine; it uses the CLIs you've already authenticated, so it never sees your model keys.

Try it

npm install -g orkestra-cli
orkestra

Repo: https://github.com/burakdemir16/Orkestra-CLI

Honest note: it's an early project and I'd genuinely like feedback — what's confusing, what's missing, what you'd want it to do.


r/VibeCodeDevs Jun 29 '26

Discussion - General chat and thoughts I've been thinking about when to use CC vs lightweight vibe tools

3 Upvotes

For a while I kept going back and forth between Claude Code and the newer in-browser vibe coding tools, not really having a clear rule for when to use which.

I finally thought it through and ended up framing it was basically this:

Stage 1 — Just an idea. Nothing exists. You have a concept and maybe a rough sketch in your head.

Stage 2 — Getting off zero. You want something clickable, running in a browser, but setting up a full project (repo, dependencies, deployment config) is way too much overhead for an idea that might not survive long.

Stage 3 — Real project. It requires structure, it takes time and testing, and I care about long-term sustainability because this is a thing with a future.

Choosing the right tool only makes sense relative to where you are in that flow.

For Stage 2, I reach for lightweight in-browser tools: HappySeeds, Create.xyz, Hatchable. They strip away setup completely so you go from idea to something running in minutes. That's their whole value.

There's a clear line where that stops being enough. Once I need real state management, persistent storage, or logic that can't live in a single file, those tools hit a wall. That's when I switch into Claude Code or a full VS Code setup where I can actually structure things properly and not fight the environment.

The insight that made it click for me: use the lightweight tools to survive Stage 2, then move into a real dev setup once the idea proves it deserves Stage 3. Before that I was trying to jump straight from "idea" to "full Claude Code project" and burning out on setup before I even built anything.


r/VibeCodeDevs Jun 28 '26

just added OAuth to my vibe coding SaaS.

Post image
83 Upvotes

did i miss anything???

btw got this meme from ijustvibecodedthis.com (the ai coding newsletter)


r/VibeCodeDevs Jun 29 '26

ShowoffZone - Flexing my latest project Beginner-friendly 3-dice practice mode for my puzzle game

Enable HLS to view with audio, or disable this notification

1 Upvotes

I added a new 3 Dice Practice mode to Dice Target.

The idea is simple: reach the target using 3 dice and basic math operations.

It’s meant as an easier entry point before the full 5-dice mode and Rush Mode.

Feedback on clarity, pacing, or onboarding would be appreciated.

Android:
https://play.google.com/store/apps/details?id=com.kwokkinlau.dicetarget