r/ChatGPTCoding 2d ago

Discussion Best genuinely FREE LLM API that's actually close to Claude-level?

0 Upvotes

Guys I’m building a project for a hackathon and I need an LLM API.

I’m specifically looking for:

  • genuinely free API (not $5 credits / trial)
  • good reasoning + coding
  • preferably Claude Sonnet/Opus-level or as close as possible
  • decent rate limits
  • API key available for students/hackathon use
  • OpenAI-compatible would be a huge plus

I’ve already looked at Gemini, Groq, OpenRouter free models, Ox Alpha/GLM, etc., but most either have pretty low limits, aren't actually free, or aren't close enough in quality.

What are you guys using right now in August 2026?

I’m completely fine with a less popular provider/model if it’s genuinely good.

Bonus points if it’s good at coding/agentic tasks. 🙏


r/ChatGPTCoding 3d ago

Discussion How's everyone handling regression testing in CI for code an agent wrote, without losing your mind?

4 Upvotes

Ever since agents started writing most of my PRs, small changes keep breaking things two or three files away that nobody thought to test.

Unit tests catch the obvious stuff. What they miss is the flow that used to work, gets touched by an unrelated change, and nobody notices until someone reports it in prod.

I tried writing more unit tests to cover the gaps. Turns out I was just guessing which flows mattered, and guessing wrong about half the time.

I've been running coldtea's QA agent on PR previews for a few weeks. It walks the actual app instead of grading whether the code matches the diff, and it's flagged stuff that broke even when it had nothing to do with the PR itself. Doesn't replace real test coverage, it just catches what nobody wrote a test for.

How are you handling this. Writing more unit tests, running something in CI, or still mostly manual QA before merging?


r/ChatGPTCoding 3d ago

Discussion Need help with building AI Agents for Marketing

6 Upvotes

Looking for someone who can teach me how to build Agents for Marketing related problems. For example

Competitive/battlecard agent. Monitors competitor sites/news, updates a living battlecard doc our sales team can reference. This can be a good intro to scheduled agents + web scraping + structured output (Connections: Web scraping, Gmail connection to go through my emails to see any competitors related information and streamlit to create a battle card)

Dashboard Creation. Agent that takes output (a scheduled export or an API connection) from google analytics and builds a dashboard on streamlit to visualize the data. The dashboard gets refreshed with updated data every day in the morning with a new scheduled updated from google analytics export (Connections: Google analytics for data export and streamlit to produce dashboard)

Inbound lead qualification/routing agent. Reads a new lead, checks it against qualification criteria (ICP which could be company size more than 500 employee count, located only in North America, annual revenue more than 50million dollars ), enriches it with clay, drafts a personalized first-touch email and routes to the right rep on salesforce. Nice because it combines retrieval, reasoning and action (Connections: Google sheets or forms for lead collection, clay for enrichment, gmail for email drafting and salesforce for routing the lead)

Someone who can teach from scratch how to build these includung connecting to tools, building loops, context, memory and evals.

Happy to pay for your service. Only interested in folks from developing countries like India, Pakistan, Bangladesh, Vietnam, Philippines etc as I am also from one of these countries and I can’t afford to pay US/Europe rates


r/ChatGPTCoding 4d ago

Discussion How do you manage quality when AI agents write code faster than humans can review it?

11 Upvotes

We moved to an agentic workflow this quarter. My position is that we should ship at whatever speed the agents can produce, since that is the entire point of paying for them.

Our CTO's counter is that a team can only safely absorb code as fast as it can read it. If agents 10x the volume, review becomes the bottleneck that decides everything, and he thinks the tech debt won't show up as bad code, it will show up as code nobody on the team can explain.

The middle ground we're testing right now: bugbot / coderabbit gates every PR for a first pass, and humans only deep-read what it escalates plus anything touching money or auth. It definitely helps with the volume. What I can't tell yet is whether we're managing quality or just measuring less of it


r/ChatGPTCoding 3d ago

Discussion If your team runs 3+ coding agents at once: what actually broke, and what did you do about it?

0 Upvotes

I’m building a tool in this space, so I have an obvious bias; trying to find out if I’m solving a problem that exists.

Concretely, for anyone whose team has more than one person running agents on the same repo:

Last time two agents produced conflicting work, how did you find out? Merge conflict, failing test, code review, or production?

What’s your current workaround? Worktrees, one agent per branch, everyone just picks different areas and hopes, or serializing so only one runs at a time?

When an agent says a task is done, do you believe it? What do you check?

Genuinely interested if the answer is “this has never come up,” that’s useful too.


r/ChatGPTCoding 4d ago

Discussion Agent PRs are unreviewable — what first-pass actually helps vs just adding noise?

8 Upvotes

Been shipping with Cursor / Claude / Codex. The diffs are 20–40 files, tests are green, and a human line-by-line review is a joke.

I have tried a couple of AI review passes (CodeRabbit, Claude as a second model, Copilot review). Some of it catches real bugs. A lot of it is rename-this / consider-extracting nits that people start ignoring.

What is actually working as a first pass for you before a human looks at it? What did you turn off because it was noise?

Not selling anything — I want the setup that doesn't make seniors mute the bot.


r/ChatGPTCoding 5d ago

Discussion AI coding has made me dramatically faster. But I’m starting to think we’re creating a completely new category of problems

58 Upvotes

Hi everyone,

I’ve been building more and more of my products with Claude Code, Codex and other AI coding tools.
The speed is ridiculous.

Something that might have taken me a week before can sometimes be built in a day. But the longer a project survives, the more I notice the problems changing. The hard part isn’t always writing the code anymore.

Things that bug me a lot are like:
- Starting a fresh AI session and having to explain the product again.
- The agent understanding the codebase but not why something was built a certain way.
- Requirements slowly changing without you realizing it.
- One agent undoing or contradicting decisions made in another session.
- Forgetting whether something is actually finished, half-built, abandoned, or just discussed.
- Coming back to something you built weeks ago and thinking: why the hell did I do it this way?

AI confidently changing something that technically makes sense but is completely wrong for the product. Context windows filling up right when the agent finally understands what you’re building. Having decisions scattered between chats, prompts, commits, notes, and your own memory.

And I’m curious whether this is just how I build, or whether other people building heavily with AI are running into the same thing.

So I want to ask the vibe coders / AI builders here:
What are the problems you repeatedly face when building real products with AI?

I’m especially interested in the annoying problems that start appearing after you’ve been working on the same product for weeks or months.
The stuff that makes you think:
“There has to be a better way to do this.”

Could be context loss, debugging, security, testing, requirements, managing multiple agents, remembering decisions, deployment, maintaining old AI-generated code — anything.

I’m currently collecting these problems because I’m building something, but I don’t want to build based on assumptions about what vibe coders need.
I’d rather hear it directly from people actually doing this every day.

What’s your #1 frustration with building software using AI coding agents right now?


r/ChatGPTCoding 4d ago

Question I’ve been building a platform around vibe coding, interactive experiences, and the more I work on it, the less I think of it as simply a vibe coding platform.

0 Upvotes

The basic idea is pretty simple:

People can scroll through a feed of interactive experiences and play the ones that catch their attention.

But creators or we can say vibe coders can also upload their own mini-games and experiences.

Gaming is still a big part of it, but I’m experimenting with the idea that the platform could eventually be broader than games.

For example, I’ve been testing a feature where users can upload their own pictures and experience them in a 3D, more interactive way.

So the bigger question I’m trying to explore is:

Would vibe-coders actually want a place to publish small experiments and experiences?

What should a platform for discovering and creating interactive digital experiences actually look like?

Would gamers be interested in something that goes beyond traditional games?

I’m more interested in hearing what the gaming/vibe coding community thinks than telling you what I think.


r/ChatGPTCoding 4d ago

Discussion How do you tell when coding agents are amplifying your engineering skill vs hiding gaps in it?

0 Upvotes

TL;DR at the bottom.

I’m 15, mostly self taught, and I’ve been programming for around 2 years. I learned manually first and for a long time intentionally avoided using AI to write code because I wanted to know how programming actually worked before I had something else doing a huge part of it for me. I wrote thousands of lines myself, lived in documentation, debugged stupid mistakes, stared at errors for way too long, broke things, fixed them, somehow broke them again, and generally suffered in the traditional way lol. I’m glad I did that first, and I still keep a lot of my learning manual now, especially C++, systems and hardware.

For serious projects though, I use coding agents heavily. They’ve made me dramatically faster, which is great, but they also created a problem I don’t really know how to measure: how do I know whether AI is amplifying the engineer underneath the output instead of just making the output grow faster than I do? I’m not talking about blindly accepting generated code. I try not to hand an agent work I can’t meaningfully reason about. If there’s an important part of what I’m building that I don’t understand, I’d rather go learn it than treat whatever comes back as magic.

My workflow usually starts with me figuring out what should actually be built and how it should behave. I think through the structure, important boundaries, failure cases and what would count as real evidence that it works. Agents then do a lot of the implementation, which means a huge part of my time shifts into review. I inspect the changes, compare them to what was actually requested, run the software and its tests, look for things the agent touched for no reason, and reject approaches that technically work but are solving the problem badly. A normal conversation with an agent can go from “this works but its the wrong abstraction” to “that test is green but it proves nothing” to “you just broke the security boundary” and eventually “WHAT ARE YOU DOING”.

Review also isn’t something I suddenly decided I was good at because AI started writing code. Before agents became this important to my workflow, I had already spent months reviewing technical work with people much more experienced than me. We’ve had an honestly stupid amount of discussion about software decisions, debugging, Linux, security and things that went wrong in projects. Plenty of those conversations turned into hours of arguing where I actually had to explain why I thought something was wrong, and sometimes I was the one reviewing the implementation or pushing the direction of the project. I obviously don’t think their years of experience magically became mine, but that gave me a ridiculous amount of repetition asking the questions I now ask when reviewing agent work: does this really solve the requirement? What happens when it fails? Did we make this more complicated for no reason? Does the test actually prove anything? Are we fixing the real problem or hiding it? Is someone going to hate us for this six months from now?

Programming also stopped being purely something I studied pretty early. I started doing paid automation work, then the problems became big enough that I ended up building custom software around them. I’ve made low five figures total from software related work so far, and I’m starting to get the less glamorous side of it too: maintaining something after people actually depend on it. One system has employees using it, giving feedback, changing what they need and somehow discovering the ONE case I never thought about. Apparently “it works on my machine” was not the final stage of software engineering. Who knew.

I build a lot outside paid work too. I’ve made a small x86-64 kernel where I went into low level hardware and networking, but that’s only one example. I’ve also built Linux tools, backend and infrastructure systems, security related tooling, automation systems and software meant to make real workflows safer or easier. A lot of what I enjoy building has an actual use behind it rather than existing purely so I can put another repository on GitHub. I’m obviously not claiming I have deep expertise in every area I’ve touched after only 2 years, but I’ve put a stupid amount of time into this and I don’t really want to pretend otherwise just to sound humble.

If coding agents disappeared tomorrow, I wouldn’t suddenly become unable to program. I can still take a problem apart, design something, read the docs, write the implementation myself and sit in a debugger until I figure out what went wrong. I still deliberately do that now. I would just become WAY slower. That’s where this gets interesting to me, because being able to recognize why an implementation is bad isn’t exactly the same experience as fighting through it yourself. Spotting a bad abstraction isn’t the same as designing a bad one, living with it for months and finally understanding why you hate it. Reviewing a debugging fix isn’t quite the same as having no clue where the bug is and spending three hours hunting it down yourself.

Agents can erase a lot of that painful repetition simply by being ridiculously fast. But deliberately refusing to use them just so I can type more code also feels backwards. If I have a tool that multiplies how much I can do and I’m capable of supervising its work, of course I want to use it. I don’t think the answer is “stop using AI until you’ve suffered for another five years”. The question is whether the parts of engineering I’m practicing heavily can race ahead while some of the intuition that normally comes from implementing and failing yourself develops much more slowly without me noticing.

Right now I basically keep two tracks. When I actually need to ship something, I use agents aggressively. When the point is learning, I intentionally make myself do much more of the work. C++, systems and hardware especially stay much more manual. I still read docs, implement things myself and debug problems before immediately handing them to an agent. I also liked a suggestion I got recently: always keep at least one project where I personally own the important implementation decisions and need to be able to defend why I made them. That sounds like a pretty good control group.

So I’m curious how people here who seriously use coding agents think about this. What would you test completely without an agent to make sure the ability underneath your AI workflow is still growing? What experiences do you think you simply have to go through yourself? And for people who have been doing agent driven development for a while, have you noticed anything getting weaker, or anything becoming noticeably stronger?

The question I care about most is this: what separates someone whose engineering ability is genuinely being amplified by coding agents from someone whose output just makes them appear more capable than they really are?

I’m not interested in another “AI good” vs “AI bad” argument. I want to use these tools aggressively. I just don’t want the speed to hide weaknesses I would have been forced to notice without them.

TL;DR: I’m 15 and have been programming for around 2 years. I learned manually first, wrote thousands of lines myself and still deliberately keep part of my learning manual. Before coding agents became a huge part of my workflow I had already spent months reviewing technical work with more experienced people. I’ve also done paid client work, made low five figures from software related work, built useful software across several areas, worked on low level projects like an x86-64 kernel, and started maintaining systems that real people use.

Now I use coding agents heavily when I’m trying to ship. They do a lot of implementation while I spend much more of my time deciding how the system should work, reviewing what gets produced and proving that it actually behaves correctly. I can still build and debug without agents. I’d just be dramatically slower.

What I’m trying to figure out is whether that workflow can make some parts of my engineering ability develop very quickly while the intuition gained from personally implementing, failing and debugging grows more slowly underneath it. I want concrete ways to expose that gap before it becomes a problem, and to tell the difference between AI genuinely amplifying someone and AI simply making them look better than they are.

AI disclosure: the experiences and opinions are mine. I used AI to help organize and trim the writing.


r/ChatGPTCoding 4d ago

Resources And Tips I’ve written software for about 30 years. I've been a heavy coding agent user for the past 1+ year. What practical coding-agent questions can I help answer?

0 Upvotes

I've been mostly hands on coding professionally for 20+ years. I have taken time in between to lead teams, run product management or run enterprise pre-sales.

I started with AI coding agents before they were agentic (Aider; it's still great) and, then Claude Code, Droid and finally Codex all running in tmux. I switch a few months ago to an inhouse orchestration tool I build for myself that runs Codex (app server) and most recently, Pi.

Feel free to ask me questions about coding with agents or not, running them in parallel, review, testing, error handling, etc etc.

Or if you have a problem that I might suggest a solution for, go for it too.


r/ChatGPTCoding 5d ago

Question Trying to run Claude Code / coding agents for free: tried proxy failovers and self-hosting, but hit walls. How are you accessing frontier Claude models for free?

1 Upvotes

Hey everyone,

I’ve been trying to set up a reliable workflow to run terminal coding agents (like Claude Code and Aider) for my development projects without running into hard blocks.

Here is what I’ve tested so far:

  • OmniRoute / Multi-Provider Routing: Set up local proxy routing with fallback combos using top frontier models (Claude Sonnet/Opus, Kiro, Antigravity). The issue is that the top-tier models in the combo get completely exhausted almost immediately during multi-turn codebase audits and large repo tasks.
  • Self-Hosting on Kaggle (Dual T4): Spun up qwen2.5-coder:32b on Kaggle's free GPUs via an Ngrok tunnel to act as a backend. While it runs without strict token limits, it's way too slow (~8–10 tokens/sec) for large diff rewrites, and Claude Code ran into tool-formatting incompatibilities.

What I’m looking for:

For those actively using Claude Code or similar agentic CLI tools:

  • What are the most effective ways, platforms, or student/developer programs to get free or extended access to powerful frontier models (especially Claude 3.5/4.6 Sonnet and Opus) for agentic coding?
  • Are there any working proxy configurations, credit programs, or alternative integrations that let you use genuine Claude models in CLI agents without hitting instant exhaustion?

r/ChatGPTCoding 5d ago

Memes Lmao, chatgpt has gotten witty 🤣

Post image
0 Upvotes

Im asking it to help me make an optimized clone of a game and when it came up with this development map this caught my eye


r/ChatGPTCoding 6d ago

Question AIs get 'dumb' (coding) after about 200k tokens? How is everyone handling this

16 Upvotes

Started watching a youtube the other day on AI coding by Matt Pocock (on the aidotengineer channel) . He said after 200k tokens the ais start to get dumb, better to try start fresh soon after that, or at least realize you are working in the 'dumb zone'.

So I have been trying to start a new session soon after I hit the 200-250k. Problem is it feels way too short. By the time I'm around 200k there's just not much actual coding done yet.

Anyone else following this protocol? Keeping sessions smaller and restarting early? Curious how you get enough real work done before you hit it, if you noticed benefit after following it, or if you think it's BS etc.. Please add if you had a real engineering role pre the ais, or you are a post ai coder, for context.

Not a token thing for me, I'm on max plans for both. (Running Opus 4.8 and Codex 5.6-sol)


r/ChatGPTCoding 5d ago

Resources And Tips Wednesday night you should be at 51%. A pacing chart for the weekly limit.

3 Upvotes

I kept opening the usage page, seeing something like 54%, and having no idea whether that was fine or whether I was about to run dry on Friday.

So I worked out the pacing. 85% across weekdays and 15% for the weekend gives you 17% per day Mon-Fri. The anchor that stuck with me is Wednesday night at 51%: half the week, half the limit.

If you don't work weekends it's a flat 20% per weekday. Both lines are in the chart.

Obvious caveat: the limit is not linear in practice. One day of agents chewing through a big repo eats what three days of normal questions do, so this is a budget, not a prediction.

How do you pace it? Or do you just burn it and wait for the reset?


r/ChatGPTCoding 6d ago

Question Which coding tasks are worth the highest-capability model in your workflow?

5 Upvotes

I am trying to separate coding work that needs deep reasoning from work that mainly needs reliable execution. Designing a change across an unfamiliar codebase, diagnosing a subtle regression, and reviewing a risky patch seem worth a stronger model. Formatting, small translations, and clearly specified edits seem better suited to a faster path.

The decision is less obvious for medium-sized tasks: adding more context may be enough, but sometimes the task remains ambiguous even with all the relevant files included. Do you use a fixed escalation rule based on risk and testability, or decide case by case?

Which coding tasks do you consistently send to the most capable model?

I recently came across Flatkey while testing this kind of coding-task split. It is an OpenAI/Anthropic-compatible gateway that can be evaluated by changing the base URL while keeping the existing SDK and request format. That makes it possible to compare routine edits with a stronger path without rewriting the coding workflow. Actual savings depend on the model mix and current supply, so I would measure patch quality, tests, latency, retries, and total cost.


r/ChatGPTCoding 6d ago

Resources And Tips AI made me care about commit boundaries again

5 Upvotes

When I wrote most of the code myself, I got lazy about commit size. I already knew why every line was there.

With AI-generated code, one huge 'feature complete' diff is miserable to review. The code may be fine. I just can’t see which change introduced the new abstraction, which part fixed the bug, and which cleanup was optional.

Now I ask the agent to stop at boring boundaries. Failing test. Minimal fix. Cleanup. Three commits, same feature.

AI didn’t make Git less important. Clean history is one of the few ways I can reconstruct the reasoning after the session is gone.


r/ChatGPTCoding 6d ago

Resources And Tips Long Codex/Claude runs were turning into unreviewable marathon chats, so I moved the shift state to disk

Post image
9 Upvotes

I use coding agents for multi-hour runs, and after a while, I kept hitting the same problem:

The agent may still be working, but I have no clean way to answer basic questions without digging through a huge conversation:

  • What is actually finished?
  • What is it working on right now?
  • What got blocked?
  • What decisions did it make?
  • What did it try and reject?
  • If the session dies, where exactly should the next one continue?

Context compaction makes that worse because the conversation itself becomes a pretty fragile place to keep the run’s state.

So I started treating a long agent run less like a chat and more like an engineering shift.

That became Nightshift.

The main idea is simple: the work contract and run state live on disk, not only in the conversation.

A shift can be:

  • A detailed checklist that stays open until every contracted item is complete.
  • An open-ended goal with an hour budget that keeps discovering and working until quitting time.

During the run, I can open the files and see what is done, what is active, what is parked or blocked, and what decisions were made — without scrolling through hours of chat.

After the run, those same files become the reviewable record: commits, decisions, snags, logs, receipts, remaining work, and how the shift ended.

If I accept the branch — or even decide not to merge it — I can archive the shift. Over time that gives me a durable history of previous runs: what changed, what was rejected, what decisions were made, and what happened to each piece of work.

There is also an enforcement layer around the agent

  • A Stop hook prevents the session from quietly ending while contracted checklist items remain.
  • AskUserQuestion is blocked by default during unattended shifts; the model makes its best decision, records it, and keeps working instead of waiting for me.
  • Owner-defined safety rules can mechanically deny commands, protected paths, wrong commit identities, or forbidden diff patterns.
  • An external watchman handles recovery. On Claude Code, it can detect structured failures such as API Error: 500 and keep retrying recovery when the API comes back. On Codex, it can recover sessions that are proven dead and resume the recorded session.

How is this different from /goal or a long prompt?

/goal is useful if what you need is:

keep working toward this objective.

Nightshift is the harness around that run:

persistent state, enforcement, recovery, observability, and a reviewable history afterward.

A prompt can ask the model not to stop.

A Stop hook can actually refuse the stop.

Nightshift also ships reusable shifts for things like:

  • test coverage
  • defect hunting
  • quality debt
  • dependency updates
  • codebase review
  • Product Evolution

Product Evolution is an open-ended shift that researches the product, its history, users, and comparable approaches, ranks evidence-backed opportunities, and works on the strongest improvements within a time budget.

A side effect I’ve ended up liking: if I have usage about to reset and no backlog ready, I can give one of these open-ended shifts a few hours instead of simply losing the allowance.

Nightshift runs locally from the same plugin package on Codex and Claude Code.

GitHub - Free, open source, MIT licensed

Official OpenAI Plugin Directory

I maintain the project, and I’d especially like feedback from people who already leave coding agents running for hours: where does your workflow still fall apart?


r/ChatGPTCoding 6d ago

Discussion ChatGPT new App - Where did the "app handling" setting go?

4 Upvotes

OpenAI has split its app into two versions: the new ChatGPT and ChatGPT Classic. The old version includes an "app integration" setting that allowed you to connect tools like Xcode and iTerm2, enabling GPT to see what you were doing in those applications. The new version lacks this feature (or at least I can't find it). Even the documentation for this setting refers to the old version. Has anyone seen this feature?


r/ChatGPTCoding 5d ago

Discussion Hot take: AI coding agents aren't making senior developers faster

0 Upvotes

I've started wondering whether AI coding agents are actually improving developer productivity at the senior level, or whether they're just moving the work to a different part of the process.

For smaller tasks, the productivity gain feels obvious. Generate some boilerplate, write tests, refactor something repetitive, investigate an unfamiliar API — agents are great at that.

But once the task involves an existing codebase with a lot of context, things get more interesting.

The agent has to understand the architecture, figure out which files actually matter, make changes without breaking unrelated behavior, and then explain why it made those changes.

At that point, I sometimes spend almost as much time reviewing, correcting, and steering the agent as I would have spent implementing the change myself.

And there's another problem: the better the agent gets at producing code that looks reasonable, the harder it can be to notice subtle architectural mistakes.

So I'm starting to think the real bottleneck isn't code generation anymore. It's context + verification + supervision.

Maybe the productivity curve looks something like this:

Junior developer + agent → huge boost
Senior developer + agent → depends heavily on the task
Complex production system + agent → supervision becomes the bottleneck

I'm curious what others are seeing in real projects.

Have AI coding agents genuinely made you faster overall, including review/debugging/cleanup, or are they mostly making the "first draft" of the code faster?


r/ChatGPTCoding 6d ago

News Codex 5h Limit Reintroduced

8 Upvotes

Hey everyone,

Just a PSA:
OpenAI decided to reintroduce the 5h limit on their Plus subscriptions.
As of right now, Pro is not affected by that.

Hope they will change it back to solely weekly limit.


r/ChatGPTCoding 6d ago

Question Do you use Offline live code comparison tool?

3 Upvotes

Last month, I found myself in a tough spot. I was working on three separate HTML and JavaScript pages that shared almost identical logic, but differed in layout, alignment, and specific datetime formatting. Because they used slightly different approaches for the same underlying functions, I couldn't simply merge them or copy everything blindly.

I needed to compare them line by line across roughly 5,000 lines per file (15,000 lines total) and organize those blocks into a unified structure.

To make matters harder, my development setup is extremely minimal: just a 15-year-old laptop, a basic text editor (no VS Code or heavy IDEs), me, and AI.

The Problem with Manual Comparison

Doing a line-by-line manual check across 5,000 lines in three different files is exhausting.

High Risk of Errors: A single copy-paste mistake means spending the whole day hunting for what went wrong.

Lack of Undo Safety: Constant power cuts make manual tracking even riskier.

Zero Visual Feedback: Without a side-by-side visual reference, it is far too easy to miss code blocks during repetitive tasks.

The Solution: Build Your Own Tool

Instead of suffering through it, I decided to build a lightweight comparison tool from scratch. It took me half a day to put together a row-by-row visual comparator using a main reference file.

Once the tool was ready, organizing all 15,000 lines across the three files took only a few hours. I then used AI to clean and optimize the code. In the end, I successfully organized 15,000 lines of frontend code and 8,000 lines of backend code, vastly improving overall performance in record time.

Turning It Into a Public Product

Encouraged by how well it worked, I spent the last few weeks turning that utility into a production-grade tool designed for the public.

I built it with a few core principles in mind:

100% Offline Capability: Powered by modern web capabilities (like Service Workers), once you visit the site, you can use it completely offline with zero feature loss—even if your internet drops.

Privacy First: Data stays secure on your device and is never pushed to a remote server.

Flexible Storage & Portability: You can easily switch to cloud sync or export/import everything so you never lose your progress.

No Installation Required: Perfect for older or restricted hardware where installing heavy desktop software isn't an option.

Market Validation & Looking Ahead

Running a public platform requires servers, domains, and ongoing costs. Given my current financial situation, I want to gauge real demand before taking the leap.

Current market alternatives often charge $20+ per month and frequently require heavy software installations.

I’d love to hear your thoughts on this:

Would you use a lightweight, fully offline, easy-to-customize tool where you can export/import everything without losing progress across devices?

How much would you realistically be willing to pay per year for a tool like this?


r/ChatGPTCoding 7d ago

Resources And Tips I used Claude and Codex to build my first Unity game, but visual bugs were still the hard part

Enable HLS to view with audio, or disable this notification

44 Upvotes

I've been making FrogPop, a small 2D arcade roguelite inspired by Bubble Trouble. It's the first game I've built, and I used Claude and Codex for most of the coding and debugging.

They worked best when I gave them a narrow problem and let them inspect the scripts involved. That's how I built the tongue and bubble interaction, wave system, shop, upgrades, and bosses. The worst loop was giving a vague prompt, testing the result, and coming back with "it doesn't work." Exact reproduction steps and screenshots made a huge difference.

The part I never really automated was Play Mode testing. One boss moves through the walls and exposes different weak points. The state logic could look correct in C#, but a hitbox would stay active or part of the boss would appear in the wrong place. I still had to run it, watch it fail, and tune it by hand over and over.

The clip is from the current demo. It runs in the browser here:

https://blion247.itch.io/frogpop-demo?utm_source=reddit&utm_medium=social&utm_campaign=demo_launch&utm_content=r_chatgptcoding

For anyone using coding agents with Unity: have you found a good way to handle visual testing, or is that still mostly manual for you?


r/ChatGPTCoding 6d ago

Discussion Tips on managing context and token costs with CLI AI tools in Neovim?

1 Upvotes

Looking for advice from anyone running a terminal-heavy setup. I'm strictly looking for CLI tools; no VS Code extensions, no Cursor/Windsurf/Antigravity, just pure terminal. My hard budget ceiling is $30-$50/month. I can't justify dropping $100-$400/mo on Claude subscriptions, but I need something reliable for daily dev work (for my personal projects, i have claude subscription from my work but I use it exclusively for work)

Here is what I'm dealing with and what I've tried so far:

- When I first got into this, I just dropped $10 into Google API and stick to ultra-cheap text-only models like Gemini Flash for basic coding and small functions. People said $10 on Flash would last practically forever. It didn't. The agent overhead burned through those credits way faster than expected even on basic tasks. Lasted for maybe 2 days, total 3 hours of really small work?

- OpenCode GO - loved the CLI experience (even more than claude SIC!), but they recently slashed their deal on GO subscription from $60 down to $30, so it become less cost-effective ;/

- CommandCode - switched over expecting better value since they had $70 value for $10 in their GOAT plan. Total disaster for my workflow. Even with "taste" disabled and forcing DeepSeek v4 as the base model for everything, it burned through $10 in literally a dozen prompts. Because it forces a multi-agent approach behind the scenes, it keeps re-sending full context and eating tokens like crazy. Connecting my CommandCode key back into OpenCode had similar issue – just burning cash for nothing.

For plain text code generation, deepseek v4 flash works great. Sometimes I need to feed screenshots into the model. When I worked with GPT-5.6 luna on opencode go, I spent 7 hours straight dumping tens of screenshots, rarely clearing context properly, and that whole day only cost me $5-$6. CommandCode managed to burn $10 while doing maybe 5% of that same work

I am currently thinking of combining Codex and OpenCode Go on DeepSeek. That sits right around $30/mo, which is super reasonable. My main worry is hitting Codex's 5-hour rate limits if I push it hard. Any hidden gotchas with the Codex + OpenCode Go stack? For anyone doing terminal AI workflow - how are you handling multimodal/screenshot tasks without multi-agent tools blowing up your API bill?

Appreciate any insights!


r/ChatGPTCoding 7d ago

Question Someone Please Explain Codex Usage Limit

6 Upvotes

I have been using claude code for a while in regards to a general coding tool, but I started to use codex recently on gpt-5.6 terra for testing code generations, basically playing with it. I am still on the free plan, and I have asked codex to code 2 files in its own way just as a comparison with claude code, and I noticed I am already on 66% left of my MONTHLY usage. I just want to know, is it a 5 hour reset like claude or is it actually waiting a month to reuse it efficiently on free mode? and is there a weekly reset in free mode instead of monthly? Thank you to anyone who helps!


r/ChatGPTCoding 7d ago

Resources And Tips An early-stage guide to get sales for vibe coders (from a YC backed founder)

7 Upvotes

So you've vibe coded days and nights and built a cool app that actually works and is useful (finally)

Now comes the harder part: sales.

Did you know that LinkedIn is the #1 channel for B2B sales and also that it caps you at 200 connection requests per week?

There are a few finite resources in the world, but nothing seems as finite as LinkedIn’s connection requests.

One of the easiest things I could change if I could go back in time was to spend more weeks and add everyone from my target audience to my LinkedIn list.

Why? Because this would mean whenever I post something new about my product, they see it, they share it, and it increases my success with their entire network that compounds automatically.

Don’t make the mistake I made.

If you’re an early-stage founder, here’s a few things you can do to get more revenue:

1. Figure out your target audience and make a list

There’s a lot of ways to make an target audience list, but honestly you shouldn’t overthink it at this point and just get started with something.

(You’ll get the opportunity to refine it later.)

LinkedIn Sales Nav is pretty good for this because it has many fine-grained filters. The function, job title, and seniority ones are quite helpful (albeit not 100% accurate).

Most importantly - choose “Recent Updates > Posted on Linkedin”. There is no point wasting a connection request to someone who doesn’t even open LinkedIn.

Everyone hates LinkedIn but sales navigator is pretty nice for this tbh. But you can make a lead list from any other tool too. Just get started.

2. Start sending connection requests and messages

A lot of people overcomplicate this and write long, AI-generated messages. No one is going to read those, so save your tokens. Instead, here’s a message text that you can steal that I used successfully during my Y Combinator batch:

One line about me with some authority, and the next line asking the person if they’re facing the problem that you’re looking to solve. If they agree, you earn the right to continue the conversation.

There are many tools for this, but I ended up building my own, with the perfect MCP so I can essentially monitor all of my linkedin outreach through Claude Code. It connects and messages people automatically, even testing different messaging variations to get the best outcomes.

I launched it to a few friends in SF and they loved it. I've launched it for everyone public, too, with a generous free plan because if I can help you get even one sale or improve your fundraise then it’ll feel great. but I won't put the link here because it goes against the rules of the community. You can ask me on DMs!

3. Post as much as you can aka maximize your luck surface area

Talk about the way you think about the problem and what you’ve built to solve it. It might not get many views, but since you’re now connected to your ICP, it will get quality views that you can translate to growth.

Like posting this simple screenshot from a customer ended up getting me one more sales meeting!

4. Start figuring out your repeatable, scalable, GTM motion

It might be linkedin, it might be cluely-like ugc, it might be something else entirely.

Whatever it is, you need to figure out a repeatable way where you can do repeatable activities and consistently book sales meetings or new revenue.

Has LinkedIn been useful for you? Feel free to reply below - I’ve helped a few of my friends figure out their GTM and I’m happy to help here too!

keep shipping, Namanyay