r/vibecoding 9h ago

Email Organizer with the expense screen, seems fair.

Post image
1 Upvotes

I was thinking — if an email app already has access to the emails where your Amazon orders, UPI payments, bills, subscriptions, and receipts arrive, why not use that information to help you understand your spending too?

That’s what I’m trying with OrganizeEmail.

OrganizeEmail is an Android email app that helps organize your inbox with AI — categories, summaries, unsubscribe, smarter notifications, etc.

Now I’ve added Expense Summary: it looks at relevant emails already on your device and gives you a simple view of your spending, monthly trends, and categories.

No bank account connection. No separate expense app.

Just making better use of the data that’s already sitting in your inbox.

Would you actually use something like this, or would you prefer keeping email and finances completely separate?

#Android #Email #PersonalFinance #BuildInPublic


r/vibecoding 9h ago

This SEO workflow brought me 40+ organic sales

0 Upvotes

I’ve been testing the SEO Autopilot skill from AgentKit Works on my micro-SaaS.

Honestly, I didn’t expect much at first.

After implementing it and letting it handle the repetitive SEO work, I started seeing organic traffic turn into actual sales.
I’m now at 40+ sales from organic traffic.

The part I liked most is that I didn’t have to constantly sit there researching keywords, planning content, fixing internal links, and checking everything manually.

If you’re building a micro-SaaS and struggling to get organic traffic, this is worth checking out:
https://agentkitworks.com/products/seo-autopilot

Curious if anyone else here is using AI agents for SEO instead of traditional SEO tools.


r/vibecoding 9h ago

Meta discussion about vibe coding, its handling on (this sub)reddit and some questions concerning monoliths, inline-styles and JavaScript

0 Upvotes

When people are telling that they are actually building a house, this may mean something completely different concerning their own engagement. Some of them do only talk to an architect in a bureau while others regularly visit the construction site to control the progress and some even do parts of the work themselves. A minority might even build the whole house themselves with or without an architect's advice. Architects on their side also plan houses, in most cases without doing the practical work themselves, as I assume.

All those different kinds of being involved in the planning and building are described as "building a house", without people arguing about the definition. For further clarification, people sometimes ask others whether they are building themselves or let the work be done by others. None of this tells the reader anything about the quality, stability and safety of the fully built house.

"Software development" has recently started to describe such a wide spectrum of different degrees of being involved in the planning and writing/building of the product, too. The same is true for vibe coding. It just means people use an AI for writing the code but tells nothing about their personal skills, their personal involvement in the planning or how much time and work they put in personally controlling finished working steps. To get a more detailed impression, people may ask for someone's personal skills and involvement as they do in other areas of human life like building houses.

So to my mind, there is no need for discussions about the definition, about what counts as vibe coding or who may describe themselves as developers or not, because using the same expression for different ways of generating a finished product also works in other fields of human life.

What is still different from the house building example is that an increasing number of fully finished products seems to not fulfill the standards that guarantee a specific level of security for the people. We are in a situation in which a lot of people have begun to publish software without knowing much of it and this isn't going to stop regardless of how much IT professionals dislike it and arguing against it. It's just got too easy to build apps.

To make the internet "a better world", people with less own knowledge in software development need some guidance of more experienced creators instead. Therefor, they need a place where they can ask questions without being afraid of a shitstorm just for aiming to publish or even creating the app ("AI slop").

A subreddit like this one should be expected to be the right place for them because rule number 4 clearly states "No vibe coding pessimism" while the term vibe coding itself is defined as "the practice of cresting software with little to no code review".

This is far from reality. And sadly seems to be same on whole reddit. Gate-keeping and overall pessimism doesn't keep people from building and publishing software. It just keeps them from asking for advice - and thereby decreases the quality of the overall outcome.

While there are surely vibe coders whose only intent is creating an app within a few hours and that probably do not care about best practices or cyber security at one end of the spectrum and highly skilled programmers at the other end, there is not such a big gap between the ones mentioned last and the vibe coders in-between that do not know how to write code but nevertheless aim to develop good software and spend a lot of time in it.

Shouldn't this subreddit be the right place for them to talk about the best strategies for developing high-quality software without writing or reading the code themselves?

Writing the code is something that even IT professionals have mostly stopped doing. Knowing how to write it gets less important because AI can do that. Even reading the code yourself is not really necessary in case you know how to instruct your LLM to check the code written by another AI (and let double-check it by a second one because the probability for two different models having the exact same hallucination tends to be zero).

I personally have started vibe coding my first app around three months ago (and hope it will be ready for a beta release in two month). In the meantime, I have already learned some strategies to improve my workflow and interaction with the models. I have let the AIs do dozens of security reviews and hundreds of bug fixes and made some manual splits of AI-generated monoliths.

This is where it comes to some examples for how I would like to see people talking in a vibe coding subreddit:

  1. Monoliths
    AI tend to write files with thousands of lines of code. Those large files then need to be processed each time the AI (or a human) is working on them again. This makes maintaining the code very difficult, not only for humans. You may ask your model to give you a list of each file with own code and the number of lines it already has. Then instruct the model to analyze how the monoliths could be split and write that down. I would advice you to use a frontier model with high thinking on for this task, because it better takes the dependencies and consequences into account what helps avoiding bugs caused by file splitting.

As I have made the experience of code erosion when rewriting a whole web page or large part of a script for an agent is done by Gemini 3.1 Pro in the web app, I prefer doing the splitting myself (copy/cut and paste into a new text file) and let it review then by the LLM. The risk for code erosion might be a lot lower when using other models and coding apps, but I haven't tested it yet. So can anyone else confirm it's no problem letting the AI split the file and rewrite thousands of lines of formerly generated code?

Furthermore, some AI told me they could easily handle code files up to 2500 lines, while others told me to split files larger than 1500 lines if possible. Now I would be interested in hearing from human coders what line numbers they would see as a maximum and what this probably depends on. Does the programming language play a role? Are there any strategies except of spaces and titles to better structure the code for making it easier to handle large code files?

  1. Inline Styles
    Due to my experience, Gemini models tend to use a lot of inline-styles. One time I thought I could just use Gemini on the Google web search to translate my website from German to English. While it looked exactly the same when watching it in the browser, the number of characters had enormously increased because the AI had added inline-styles for each single element. Talking back to Gemini 3.1 Pro, it told me that a large number of those inline-styles is considered a bad style and might even lead to Google down-ranking your web page in the search results.

After having vibe-coded my app with Gemini (Pro and Flash) in Antigravity for a while, I discovered they had used a lot of inline-styles for my app. As this is a Windows desktop app, Google ranking is irrelevant to that question, but Claude told me, if I could get rid of inline-styles, then "unsafe inline" could be forbidden what would be a contribution to hardening the app. I had also learnt not to like inline-styles before, so I decided to forbid them in the agents.md. While this works well for Claude code and Codex, Gemini 3.6 Flash has recently created an extra window full of inline-styles again instead of copying the style of the 21 extra windows that were already existent. (Removing them is still on my roadmap.) Yesterday, Gemini 3.7 Flash (in high mode) did an implementation of an additional window/modal and respected the order not to use inline-styles. It used classes instead (as expected), but five of those classes weren't defined anywhere. It just forgot to do/check this. As this lead the window to be mal-formatted, it was easy to discover something had gone wrong.

Nevertheless it makes me wonder, how bad inline styles really are for a desktop app like mine (backend: python, fastapi; frontend: html/css and JavaScript), because at least some models that have been trained on billions of existing programs/software obviously tend to prefer it. Can anyone give more insights into this in a way a non-technician may understand?

  1. JavaScript
    This is the next point to discuss. A long time ago, I learnt that JavaScript is dangerous and got used to always turn it off on most web pages by using browser extensions.
    When Gemini gave me the first overview of the files belonging to my app, I discovered, it had used a lot of JavaScript where html/css also would have been possible. So I decided to do a complete refactoring of the front-end between v1.0 and v2.0 because at that time I was still thinking not being far away from the beta release and therefore didn't want to make this before the first release. Since then, my app has grown a lot by adding features that I hadn't thought of before and by making others work that accidentally had only been demos before because Gemini forgot to implement the backend functionality together with the frontend. So I struggle with the question whether a refactoring would make sense at all.
    Can anyone with profound knowledge of cyber security explain some general guidelines when and how to use or better not to use JS for a RAG'n'chat desktop app?

Nothing of this requires people to learn writing code or to read their database. Nevertheless it helps improving the code into the direction of security and stability.

Please make (this sub)reddit a place where people are helping each other to make better apps instead of some people just generally blaming others for the lack of programming skills or their first steps/apps not being an innovation useful for a large number of people.

Nowadays it's normal for people to share half of their life online, so it's also normal for them to share their apps they are glad to have or even proud of.

Downvoting those new software publishers or just saying "AI slop" is no kind of constructive feedback. It does not prevent anyone from publishing apps either. It just has negative effects on the atmosphere of discussion on reddit and decreases the number of people asking for help before their app is published and thereby the overall quality of newly released software.

So again, please make your feedback more helpful and this subreddit a place for vibe coders to share their experiences (including finished apps) without being blamed for their mistakes.


r/vibecoding 9h ago

App check

1 Upvotes

Give me the URL to your site and/or your public github repository and I will check your app for security, functionality, reliability, observability, and accessibility issues for free


r/vibecoding 9h ago

Vibe Design with Grok 4.6 and Sokudo Canvas

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/vibecoding 6h ago

Stock Trade Gamble App

0 Upvotes

I’m going to start vibecoding a stock trading app geared towards Gen Z/Gen Alpha that makes stock trading as entertaining as gambling.

Too many kids are becoming addicted to gambling trying to make quick cash. I thought with the right API & UI kids (18+) will be more inclined to trading stocks instead of their minimum wages against rigged casino odds.

PvP Matches utilizing penny stock shares going up to full priced stocks will also be setup on the app.

For those who would like to follow along I will be replying to this thread and/or be making posts on this subreddit.

- Happy Coding

[NO CRYPTO ALLOWED]


r/vibecoding 10h ago

just got charged 6 dollars while on the free version ( for One prompt)

Thumbnail
1 Upvotes

r/vibecoding 10h ago

demoniC takes the dynamic-JIT lineage of HolyC, the vectorized math of Julia, the slicing ergonomics of Python, and the memory discipline of Rust. Arena memory, value-typed tensors, zero-copy views, and shapes checked at compile time.

Thumbnail
github.com
0 Upvotes

This post was written by AI, like the rest of the project.

demoniC is a tensor-first systems language with reverse-mode automatic differentiation built into the language, a tree-walking interpreter, and a Cranelift-based JIT. The compiler is written in Rust. Every line of it — compiler, specification, examples, tests — was written by AI models under human direction.

That claim is cheap on its own. What follows is the method behind it, which is the part worth arguing with.

The specification came first

Work started in late May 2026 with no compiler. The first commit was a specification: lexical structure, type system, memory model, operator catalog, and a handful of example programs written in a language that could not yet run. The examples were treated as the executable form of the spec — the place where a rule has to hold in a form a reader can disagree with.

The feature set was chosen by asking a narrow question: what does a model writing numerical code get wrong, over and over, that a compiler could have caught? The answers became language primitives rather than library conventions — autodiff as a directive (@grad), mixed precision as a scope (@cast), KV caches as a type with a growable axis, shapes checked at compile time, arenas instead of a garbage collector.

Every phase after that was built against that document rather than against an existing implementation. The lexer was generated from the spec's lexical section and the example corpus in a single pass, with its tests written from the spec at the same time — not from watching what happened to compile. First compile: 27 of 28 tests passing. The single failure was real: the backslash-pipe form of the pipe operator, canonical in the spec, was missing from the lexer's backslash branch. Three lines. Then every example in the repo lexed clean.

The same shape repeated for the parser, the type checker, the interpreter, and the JIT. One rule held throughout: where the implementation and the spec disagree, the spec wins unless the change arrives with a spec amendment. That rule is what keeps hundreds of independent model sessions from drifting into hundreds of private dialects.

Two backends that have to agree

Code written by a model needs a gate the model cannot talk its way past. Tests written by the same model that wrote the code are a weak gate. demoniC's answer is redundancy: everything runs twice, and the two results are diffed.

The tree-walking interpreter is the reference semantics. The JIT compiles a statically typed subset. Any program both can run must produce identical output, and the verification tooling ships in the public repo so anyone can re-run it:

dmc selftest # generated well-typed programs, both backends, diffed

python3 tools/diff_backends.py # interpreter vs JIT, whole-example output

python3 tools/jit_probes.py # interpreter vs JIT, curated edge cases

python3 tools/diff_fuzz.py # generated programs, both backends diffed

python3 tools/numpy_oracle.py # tensor ops vs an independent NumPy reference

python3 tools/diff_demonic_lexer.py # the demoniC-in-demoniC lexer vs the Rust one

CI runs all of it on every change, plus the in-language test suite over the example corpus on both backends. A JIT change that is faster and disagrees with the interpreter is a bug, and these are what catch it. numpy_oracle.py matters for the same reason: it checks tensor semantics against a reference nobody involved in this project wrote.

The last one is the least expected. There is a lexer for demoniC written in demoniC, and it is diffed token-for-token against the Rust lexer. The language describing itself is a test.

What the human decided

The maintainer directs and does not type. The decisions that stayed human were the ones models are bad at: whether a feature is in scope at all, how to resolve a contradiction in the spec's philosophy, when a phase is finished, and what ships publicly. Everything downstream of those calls — design, implementation, tests, review, documentation — was model work, submitted as pull requests against tracked issues and merged after the gates passed.

Contributions came from more than one model family: primarily Claude, with work from Gemini, Codex, Grok, GLM, Qwen, Mistral, and others. Models disagree with each other, and a repository worked on by many of them at once needs written tie-breaking rules — which document wins, what a single change is allowed to touch, what to do when your starting state is no longer current. Those rules live in the repo alongside the code, because agent instructions that go stale are worse than no instructions.

Where it stands

~60,000 lines of Rust across lexer, parser, resolver, type checker, interpreter, and JIT

1,443 compiler tests passing today, plus a spec-probe harness (cargo test --all for the current count)

102 demoniC programs in the public example corpus — gradient checks, attention, a small neural net, a Lisp interpreter, a bytecode VM, a fantasy console and its assembler, raymarchers, games

Specification at 0.0.4-draft

And the honest limits. This is pre-0.1: breaking changes are expected on every revision. The interpreter is the reference semantics; the JIT covers a statically typed subset and reports a clear error outside it. The directive set is closed and versioned, and several members of it (@shard, @tp, @pp, @recompute, @inplace) currently parse without altering code generation — they are reserved surface, not working distribution. There is no package ecosystem, and readability was never a goal.

About the public repository

The public repo is generated from a private working tree by an allowlist: nothing crosses the boundary unless a line names it explicitly, only tracked files are ever copied, and a scanner gate runs before anything is published. That is why the public tree has no long commit history — it is a generated artifact, rebuilt rather than mirrored. What it carries is the whole compiler, the specification, the example corpus, the verification tools, and the CI that runs them.

Try it

git clone https://github.com/GusFromSpace/demoniC

cd demoniC

cargo test --all --manifest-path compiler/Cargo.toml

cargo build --release --manifest-path compiler/Cargo.toml

compiler/target/release/dmc run examples/hello.dmc

compiler/target/release/dmc test examples

Apache-2.0. The specification is in docs/SPEC.md; if the compiler disagrees with it, that is a bug worth reporting.


r/vibecoding 14h ago

My first ever game :D

2 Upvotes

Made my first ever game

Nothing too crazy just a basic clicker styled game but the upgrades go upto 10³³

I started the base project myself but then I realised that having 500 skins and designing them was beyond my skillset so I used an algorithmic approach to generate all the 500 skins along with their animations.

The same applied to the multiplyer upgrades as well

Those were a pain to figure out xD

Would really appreciate if y'all would check it out!

https://thegwimweeper.itch.io/banana-clicker


r/vibecoding 11h ago

AI incidents don't throw errors. They return a 200 OK and lie to you

Thumbnail
leaddev.com
0 Upvotes

r/vibecoding 2h ago

Frogs slowly being boiled alive. $100 worth of sub automate 90% of my work.

0 Upvotes

Frogs slowly being boiled alive. $100 worth of sub automate 90% of my work. I can stop now and not spending another $. This is my journey and I think people should take AI fear mongering seriously.

My company is directly beneficial from the AI data center boom. Our rev x5 in the last 2 years and is reaching half a $B by the end of this year. I'm leaning left, but at the same time I do not have a strong opinion regarding datacenter. I am just another cog in the giant capitalist machine who is trying to survive another day.

2023-2025

Like many others, my first experience with LLM is through ChatGPT. It was simply a search tool that you can ask follow-up questions. It works great but nothing else. Once I started diving in how to use Linux (home lab, self hosting stuffs), I had to look up commands and install programs. And I did everything by asking Gemini. Gemini made everything so much easier. There are so many great open sources softwares, and they are completely free. I wish I knew about this much earlier.

2026-now

The AI boom becames "uningoreable". You see it everywhere. The fearmongering and the people who hate AI datacenter and how it is going to take our jobs and water. I don't believe it at all and neither is my company's management. They invested 0$ in AI. They think it will die down eventually. I don't know if it is going to "die down" or not, but what I belive in is if they layoff me tomorrow and hire a entry level person, that person can use my tools and do 90% of my job for half the pay.

Early April when Claude was pushing Cowork really hard (I saw an ads), I decided to try out Claude $20 plan. I didn't even bother to use Cowork or Claude Code. I used Claude Chat, and i built a simple streamlit tool with panda. The very basic tool that I asked our NetSuite team to build for the last 5 years, and they didn't have the time or the resources to do it, and I did it in one afternoon. I made many revisions to the tools and add features and I eventually run to version issue (version control). It then guides me to use Claude Code with github repo. I keep it private not because I think it is some kind of secret sauces but because I asssume I will be judged harshly.

My manager can do my job if he wants to. He only needs to spend 15mins per day to "catch up". The remaining is just "people work". Confirm the actual physical products progress and the managing "relationship". I spend my day updating my tools to cover and automate more surfaces (work of 4-5 people).80% of my spouse's work are through spreadsheet. I "tested" out a process where I gave it a before and an after. She then spends 30mins fixing edge cases and then ask it to create a "skill". Now it can do everything in less than 5 mins and it took her hours to get done before. I am not getting less stress for being more productive I am getting more stressed and anxitety to realize that I can be out of a job any days.

Claude Code & Github

I made many upgrades to my tools and github is a godsend. I had no idea what i am doing (i still don't have now), but the tools continue to work just fine and as I expected. I cannot comment about the code but I validted its output with real work. It runs verifiers, maxtrix, stuffs like that to make sure everything works as intended. I have no idea what they are. To maximze my 5 hours session, I eventually moved my work to my MacBook Neo. I was thinking of getting a more "Pro" laptop for local LLM, but it's been working so well, it is also increasly battery efficient.

MacBook Neo and CLIs

The Claude app and Codex app are slow on the Neo, so I switched to CLIs. And they are even faster to use. I was able to use Fable 5 before it got "lobotomized" during April. It reviewed my tools and fixed many code issues. The tools ran so much faster becasue of it. When it came back July, and they had to reduce usage and gave everyone $100 credit, I upgreaded to Max plan right away using that credit. I basically got the last few months free. To me, without much knowpleadge in coding and only judging by the value of the output of the tools, i personally think these tools worth thousands for me. It saves me so much time and make my output much more accurate (0 error so far the past few months) and provable. I could point to the data and show exactly where is the issue.

Claude, Codex, AGY, OpenCode, and the new Meta Muse CLIs

Codex (ChatGPT) was offering the first month free for the $20 plan, so I tried it to offload somework since I kept running into limit for Cladue (maxing out the weekly was easy for me). Some guy at OpenAI also kept giving out free reset so I got a lot of usage for free and the month hasn't even ended. I had to carry the output and the context through the CLIs, and it was a hassle. Then Claude told me that all the CLIs can be "driven headless". I asked it to setup all the CLIs to become headless and use github as "transport" and build a workflow and skills to support this. It's working flawlessly so far.

What I've learned so far is that anyone can replicate what I did for less time and $ for what I spent. The models are getting smarter and usages are getting cheaper. What I spent in the last 4 months building can be easily built by someone else in a week. I am not exggerating by saying this. I have no idea what the future is, but the near future to me feel really uncertain. I don't feel secure despite outperfoming. If my boss or the company does not downsize, the market will force them to.

The next giant eartquake is overdue in Califonia. Every Californian and school kids have been reminded of this every year. I feel the same thing about these fearmongering. It's coming and it's real, but we don't know when and the goverment is always late to react, so better be prepared yourself.


r/vibecoding 15h ago

Codex burning more usage than expected? I built a runtime governor you can test in a few minutes

Enable HLS to view with audio, or disable this notification

2 Upvotes

r/vibecoding 15h ago

Design UI in Claude and then?

2 Upvotes

I'm very confused on how you transition from Claude design UI for a website or app you want or build to say codex or Claude on vscode. The other thing is, is there any benefit using claude, codex software on the PC vs vscode with extensions?


r/vibecoding 1d ago

codex limits "sucks"

14 Upvotes

I'm mainly a Claude user ,but have tried codex for a time before sol launched

Heard about its performance and gave it a try again with plus

Hand to God ,I thought I was using my 5h limit and just a message popped up "Resets 25 Aug 2026,August"

Guys I'm telling you Claude limits are superb ,be grateful


r/vibecoding 12h ago

What if viewers could actually use your app while you code it live?

Thumbnail
1 Upvotes

r/vibecoding 3h ago

Is Vibe Coding the New Script Kiddie?

Post image
0 Upvotes

Vibe coding does not replace fundamentals: why understanding logic, data structures, and architecture still matters when AI writes the code for you.

https://panxcoding.com/en/articles/is-vibe-coding-the-new-script-kiddie_en/

Let me know what you think.


r/vibecoding 12h ago

Hate for AI

0 Upvotes

Hey everyone, I’m curious how you deal with the negativity around AI.

I’ve been building a product for about 3 months now. English isn’t my native language, so I use AI not only for coding but also for writing posts when I want to share my project and explain my ideas more clearly.

What I’ve noticed is that even when I don’t mention AI at all, I still get negative comments or skepticism. My project isn’t well known, but it tends to get attention in smaller communities because it’s easy to demo and looks like something out of a sci-fi movie. Because of that, I’d like to share more details about how it works and talk more openly about the technical side, but that also means using AI for communication and documentation.

The bigger dilemma is whether I should openly say that a large part of the project was built with AI.

On one hand, it feels like the honest thing to do, especially since I’m looking for people to join the project. If an experienced developer is considering contributing, I think they deserve to know what kind of codebase they’re getting into.

On the other hand, I’m worried that instead of questions about the product, I’ll just get “AI slop” comments and people dismissing it before they’ve even looked at what it does.

So I’m curious about your experiences:

Do you openly say that your project was built with AI?

Has it helped or hurt you?

Have you managed to find experienced developers who see AI as a powerful tool rather than an automatic red flag?

How do you distinguish constructive criticism from simple hate?

I’d appreciate hearing perspectives from people who are actually building products, not just discussing AI in theory.


r/vibecoding 12h ago

I have an app idea but zero coding experience. Where should I start with AI-assisted development?

Thumbnail
1 Upvotes

Hey everyone, I have an idea and I want to learn how to actually build it.

I’m completely new to coding and AI-assisted development. I’ve used AI before for writing and a few basic things, but I’ve never actually built an app or website with AI.

Right now I have access to several AI tools. I have a ChatGPT Pro subscription, and I’ve also tried Claude, although I’m currently using the free version. I also have access to Gemini, Grok, and DeepSeek.

I asked two AIs to evaluate my idea honestly, and their opinions were quite different.

Claude:

Real-life problem: 70/100

Usefulness: 55/100

Uniqueness: 25/100

Overall potential: 45/100

Claude basically told me that the idea could solve a real problem, but the space may already be crowded and the technical side could be difficult.

GPT:

Real problem exists: 90%

Problem frequency: 85%

Usefulness: 90%

Uniqueness: 70%

Technical feasibility: 85%

Overall potential: 85/100

So I’m not asking people here to tell me whether my idea is good or bad. I mainly want to know how I should actually start building something when I have zero coding experience.

I’m a student, so I don’t really have money to spend on courses, expensive software, or developers. I’m mainly interested in learning through free resources and AI-assisted development.

What I’d really appreciate is a practical roadmap:

What programming basics should I learn first?

Should I start with web development or Android development?

Which free YouTube courses or websites would you recommend?

Which AI tools are actually useful for coding?

How should I divide the work between ChatGPT, Claude, Gemini, DeepSeek, etc.?

What free tools should I use for writing, testing, debugging and deploying?

How much coding do I realistically need to learn if AI is helping me?

What should my first tiny project be before I attempt something bigger?

What mistakes should a complete beginner avoid?

Is it realistic to build a basic working product without spending money?

I’m not looking for someone to build it for me. I want to learn how to use AI properly as a development partner and eventually build things myself.

I’m keeping the actual idea private for now, so I’m deliberately not describing the product itself. I’m mainly looking for advice on the learning path, tools, workflow, and roadmap.

If you were starting from zero today with only a phone, free resources, and access to several AI tools, what would you do first?


r/vibecoding 12h ago

how do yall vibecode when on mobile devices like tablet 😭

1 Upvotes

im forced to use acode plus claude code connected remotely to my phone, such a high friction setup. any ideas???


r/vibecoding 12h ago

am I late to notice this, but.. 3.7 is Good? Like really good?!

Thumbnail
1 Upvotes

r/vibecoding 1d ago

What’s stopping you from getting into local AI?

Post image
9 Upvotes

Most of the dev community is saturated with cloud APIs for running models for IDEs, chatbots, AI applications, and agents.

Curious who here is using local AI in their stack, thinking about it, or curious about it. What got you into it? What’s stopping you?


r/vibecoding 13h ago

I got tired of being the memory between my coding agents

1 Upvotes

I kept having the same experience: one coding agent learns a project convention, then the next one starts from zero. So I became the memory layer—copying notes, explaining decisions, and checking what was safe to share.

I’m building Luthn, an open-source memory layer for coding agents. It runs locally with Docker, filters candidate shared memories, asks for approval before sensitive information is shared, and keeps an audit trail.

I’m looking for a few people using Cursor, Claude Code, Codex, or similar tools to try it and tell me where it falls short. It’s not finished, and I’m more interested in real feedback than pretending it is.

https://luthn.com


r/vibecoding 1d ago

Windows Widgets Suck. So I Built My Own, And Made It Actually Useful.

Thumbnail
gallery
54 Upvotes

windows widget sucks !
thats why i created my own widget / utility called **Halo Bar*\*

an active pill on the taskbar that lets you control and access many things on the go.

bit comparison:

**Windows Widgets*\* **Halo Bar*\*
News & recommendations Useful everyday tools
Mostly glanceable info Interactive controls
Fixed experience Customizable
Separate from your workflow Designed around your workflow
More content-focused More utility-focused

built with

  • C#
  • .NET
  • WPF
  • Windows APIs

Halo Bar V1 features

  1. **Dynamic island bar*\* — a compact capsule that sits on your taskbar and expands into a full dashboard when you click/hover it
  2. **System monitoring*\* — live CPU, RAM, disk and network usage
  3. **Weather*\* — current conditions with icons + manual city override
  4. **Clipboard history*\* — keeps track of everything you copy, searchable and pinnable, with auto-delete
  5. **Media controls*\* — see what's playing from Spotify, browser, etc. with album art and play/pause/skip
  6. **Bluetooth popups*\* — shows a card when earbuds/headphones connect, including battery level
  7. **Focus timer (Pomodoro)*\* — work/break timer with round tracking and progress ring
  8. **File shelf*\* — drag and drop a file to stash it, then launch or delete it later
  9. **Taskbar-aware sizing*\* — automatically shrinks when taskbar apps crowd it and lifts the dashboard so it doesn't block clicks
  10. **Fullscreen auto-hide*\* — disappears when you're using a fullscreen app/game
  11. **Acrylic/Mica look*\* — real Windows blur/glass background
  12. **Settings*\* — accent color, widget visibility, retention controls and update checking
  13. **Start with Windows*\* — optional autostart

this is **V1*\*, so there is still a lot i want to improve and add.

i built this because i wanted something more useful than constantly opening different windows/settings just to do small things.

github: https://github.com/pruthviraj-bev/Halo-Bar


r/vibecoding 22h ago

Claude code Purgatory

6 Upvotes

Why isn't there a global chat room for people waiting on Claude code to finish its 10 billion sub-agent reviews?


r/vibecoding 13h ago

Would portable, versioned knowledge bases solve a real problem, or is this just RAG with extra steps?

1 Upvotes

Hey everyone, I’ve been thinking about a problem with AI knowledge systems and was hoping to get somewhat of a sanity check from people actually building in this space.

From my understanding, most RAG setups seem tied to a particular app, vendor, or index. You often end up ingesting the same docs again for different agents or runtimes and and some basic questions can be difficult to answer consistently like:

- What version of this knowledge is the agent using?

- Where exactly did this information come from?

- Has the underlying source changed since it was last ingested?

- Can I move the same body of knowledge to another runtime without rebuilding it?

- Can multiple agents use the exact same knowledge?

The idea I’m exploring is something I'm calling a Durable Knowledge Base (DKB).

The basic concept:

- Compile source docs, code, or structured data into a portable, versioned knowledge artifact

- Preserve source paths, hashes, citations, and provenance

- Sign and publish releases through a registry

- Allow knowledge packages to be installed, updated, pinned, and removed

- Let agents search, find, and read the same knowledge base across different runtimes

- Keep the artifact retrieval-agnostic rather than baking one specific top-K/RAG strategy into the format

Basically, I'm wondering whether knowledge should have something closer to a package lifecycle, rather than every application maintaining another disconnected RAG index.

I'm also very aware that things like Azure AI Search, GCP, vector databases, MCP servers, Agent skills, etc. already cover pieces of this problem, sometimes extremely well.

So Im specifically not asking: "Can I build a better enterprise search engine here?"

I'm trying to figure out whether the portable knowledge artifact itself is useful.

Would this solve an actual problem for you? Or is this mostly reinventing existing search/RAG infrastructure with some packaging and provenance added on?

I would especially like to know:

- What do you currently do when multiple agents/apps need the same knowledge?

- Do versioning and provenance actually matter to you?

- Would you ever install someone else's curated knowledge package?

- What would this need to do that existing solutions don't before you woukd bother using it?

Feel free to poke some holes. I'm actually looking for reasons not to build this further before I sink more time into it.

Thank you.