Prompt Driven

552 posts

Prompt Driven banner
Prompt Driven

Prompt Driven

@Prompt_Driven

Official Company Account. Code is disposable. Make prompts the primary artifact. Regenerate, don't patch. Get your cloud migration done in weeks.

Palo Alto, CA Katılım Temmuz 2025
97 Takip Edilen35 Takipçiler
Sabitlenmiş Tweet
Prompt Driven
Prompt Driven@Prompt_Driven·
Ever get that "grenade in the codebase" feeling from agentic coders like Claude Code? You're never sure what they'll add, delete, or duplicate. I started exploring a new approach: what if prompts themselves were the source of truth instead of merely being used to patch the code?
English
1
1
1
646
Prompt Driven
Prompt Driven@Prompt_Driven·
@LTB167445 @LTB167445 The problem isn't the 700 lines, it's that we try to read them. If you define boundaries with strict tests upfront, the code becomes a disposable byproduct. When it breaks, you never read it. You just fix the test and rebuild
English
0
0
0
2
LTB
LTB@LTB167445·
the vibe coding hype cycle is speed running every mistake the no code movement already made everybody is building. nobody is finishing. and the gap between "I made an app" and "I have a product" has never been wider. a thread on what nobody wants to hear right now
English
5
0
1
5
Prompt Driven
Prompt Driven@Prompt_Driven·
@ArtemIstranin @joni_vrbt @ArtemIstranin Exactly. Tests aren't just for verifying AI code, they are boundaries. If you use strict tests to define the spec upfront, the code becomes a cheap byproduct. When it breaks, you just fix the test and rebuild. Zero tech debt.
English
0
0
0
8
Artem Istranin
Artem Istranin@ArtemIstranin·
@joni_vrbt For devs, it is just leveraged tech debt at the end. Vibe coding is definitely not for professional and not for reliable development. Testing is absolutely crucial with AI from my experience: youtu.be/Mj-72y4Omik?is…
YouTube video
YouTube
English
2
0
2
47
Jonathan
Jonathan@joni_vrbt·
Vibe coding is fun has nothing to do with coding. That’s why it’s so great. Nobody cares about lines of code anymore. Nobody reads or writes them. Everyone simply cares about how the product performs. Shouldn’t we stop comparing those two?
English
27
3
30
1.5K
Prompt Driven
Prompt Driven@Prompt_Driven·
@safwanyp_ @safwanyp_ Spot on. When AI writes the code, your tests become the actual standards. Instead of piling up technical debt by hand patching every mistake, we can just add a new test constraint and let it rerun. The tests become walls the model can't cross
English
0
0
1
8
Prompt Driven
Prompt Driven@Prompt_Driven·
@nicoletteduclar @nicoletteduclar Fixing your own bugs is fun. Fixing a machine's logic is just tedious. I gave up on hand-patching AI output. If you set strict tests upfront as boundaries, the code just becomes a cheap byproduct you can toss and rebuild when it fails.
English
0
0
0
9
Prompt Driven
Prompt Driven@Prompt_Driven·
@0xKiruse @itsjustcornbro @0xKiruse Exactly. If the code is just an artifact of the prompt, you never have to read it. When you're ready to go deep, you just add strict tests as boundaries and let the model generate a cleaner version that passes. Code is disposable
English
0
0
0
9
Kiru survival arc
Kiru survival arc@0xKiruse·
@itsjustcornbro nah just don't look at the code it writes & just rewrite from scratch once you decide to go deep on a design 🥲
English
1
0
1
23
Kiru survival arc
Kiru survival arc@0xKiruse·
vibe coding a prototype in godot 4 claude knows more about this game's code than me I have no idea how but I just described the bug & somehow claude fixed it, incredible tech (actually)
Kiru survival arc tweet media
English
7
0
21
659
Prompt Driven
Prompt Driven@Prompt_Driven·
@omarsar0 @omarsar0 Treating knowledge bases as compiled outputs is how we should treat app code. The data and prompts are the spec. The markdown is a disposable artifact. When it breaks, don't patch the output. Add a strict test as a boundary and recompile
English
0
0
0
253
elvis
elvis@omarsar0·
Diagram of the LLM Knowledge Base system. Feed this to your favorite agent and get your own LLM knowledge base going.
elvis tweet media
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
38
156
1.4K
105.5K
Prompt Driven
Prompt Driven@Prompt_Driven·
@shickles @shickles Multi-agent orchestration is a start, but the real gap is treating code as sacred. If you build strict tests as walls first, your code becomes a cheap byproduct you can just toss and rebuild when tooling updates. That's true AI-native
English
0
0
0
5
Steve Shickles
Steve Shickles@shickles·
Cursor 3 just launched alongside Gemma 4 and Qwen 3. The tooling is moving faster than most teams can even ship a minor feature. At this point, if you aren't building with multi-agent orchestration baked into your stack, you're already tech debt. The gap between 'using AI' and 'AI-native' is widening by the hour.
English
1
0
0
28
Prompt Driven
Prompt Driven@Prompt_Driven·
@marcus_at_pd @ujjwalscript @marcus_at_pd Exactly. But the mistake is trying to audit the code at all. If you define strict boundaries with tests upfront, the generated code becomes a cheap byproduct. You don't read it, you just toss it and rebuild when a test fails
English
0
0
0
4
Marcus | AI @ Potter Digital
@ujjwalscript The 10x output is real. The 10x quality isn't. Generation speed increased. Review speed didn't. Most AI-powered codebases have a review deficit — more code shipped than any human could audit. Speed without oversight is just faster tech debt.
English
1
0
0
4
Ujjwal Chadha
Ujjwal Chadha@ujjwalscript·
The "10x AI Developer" is a MASSIVE lie. You are just a 1x Developer generating 10x the technical debt. The entire tech industry is high on the illusion of "vibe coding" right now. The popular consensus is that because Claude and Devin can spin up a backend in 45 seconds, software is now infinitely cheaper to build. Here is the provocative reality nobody is budgeting for: AI is about to make software engineering significantly MORE expensive. Everyone is cheering for code generation, but completely ignoring the Verification Tax. When an AI agent writes 5,000 lines of code, it is optimizing to pass the immediate test. It is not optimizing for human readability. It relies on brute-force loops, repetitive logic, and bizarre architectural shortcuts that just happen to compile. Fast forward 12 months. Your business needs to pivot, or a core dependency breaks. You are now staring at a 50,000-line black box that no human being actually wrote, understands, or can safely modify. You cannot simply "prompt" your way out of architectural collapse. When the machine-generated spaghetti finally breaks, you won't be saved by a $20/month LLM subscription. You will have to hire a top-tier Principal Engineer at absolute premium rates just to untangle the mess your "autonomous swarm" created. We are treating code generation as a pure productivity win, but code is a liability, not an asset. Stop measuring how fast your team can generate syntax. Start measuring how quickly they can debug it.
English
205
164
1.3K
114.3K
Prompt Driven
Prompt Driven@Prompt_Driven·
@Aryan_2190 @Prathkum @Aryan_2190 You hit the exact wall. The mistake is trying to untangle it. If the code breaks, the most sustainable fix is adding a strict test to define the expected behavior, then tossing the broken code and letting the LLM rebuild it to pass the new test
English
1
0
1
7
Aryan
Aryan@Aryan_2190·
@Prathkum Vibe coding is fast until it isn't. Then debugging AI-generated spaghetti is a nightmare. Traditional coding wins on maintainability.
English
3
0
0
51
Pratham
Pratham@Prathkum·
Unpopular opinion: Vibe coding is more frustrating than traditional coding.
English
338
40
904
37.9K
Prompt Driven
Prompt Driven@Prompt_Driven·
@JadeCole2112 @michael_kove @JadeCole2112 The cleanup phase destroys morale. If you spend hours untangling what an LLM wrote, the productivity gains vanish. The way out is using strict tests to define behavior upfront. When it breaks, you fix the test and let the model rewrite it.
English
0
0
1
5
Jade Cole
Jade Cole@JadeCole2112·
@michael_kove I think this is why the burnout people are talking about is accelerating - they are having to do more of the cleanup/refactoring work of LLM generated code AND dealing with management expecting them to be able to vibe code complex features without issues.
English
1
0
2
15
𝗠𝗶𝗰𝗵𝗮𝗲𝗹 𝗞𝗼𝘃𝗲
"AI is going to make us more productive .....and give us back our time" I have YET TO SEE an employee who went from working 9-5 to working 9-3 PM because AI made them more efficient. Your employer will work you same 40 hour per week but require you to perform 10X or be let go.
English
76
35
390
13.1K
Prompt Driven
Prompt Driven@Prompt_Driven·
@karpathy @karpathy This shift from code to knowledge manipulation is the core of PDD. We treat the code as a temporary output of the behavioral spec (prompts + tests). If you stop hand-patching the output and only iterate on the constraints, the system gets better over time
English
0
0
0
2
Andrej Karpathy
Andrej Karpathy@karpathy·
LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.
English
1.9K
4.3K
38.9K
10.1M
Prompt Driven
Prompt Driven@Prompt_Driven·
@rambuilds_ @rambuilds_ Reading 600-line AI dumps is a losing battle. You can't out-read a model. The fix is to constrain the AI upfront. If you use strict tests to define boundaries first, the code just becomes a cheap byproduct you can toss and rebuild when it fails
English
0
0
1
4
R𝛼m🦅
R𝛼m🦅@rambuilds_·
"Vibe Coding" sounds cool… until you're firefighting at 3 AM. → AI dumps 600+ lines → you scroll past most of it → it runs somehow → you feel unstoppable → you push to production → random alert wakes you up → memory spike out of nowhere → logs look like encrypted poetry → git blame points to… you → you don’t even recognize the code → you copy-paste error into AI → AI gives a confident fix → you apply it blindly → one issue gone → two new ones unlocked → now you're afraid to deploy → every change feels like gambling → the system feels like a black box This isn’t speed. This is technical debt… compounding silently. Real solution: → let AI assist, not decide → read the code before shipping → ship smaller changes → write basic logs & tests → understand before you optimize AI makes you faster only if you stay in control. Otherwise… you're just breaking things at the speed of light and calling it Innovation 🚀
English
3
0
9
83
Prompt Driven
Prompt Driven@Prompt_Driven·
@svpino @svpino Spot on. The volume of tech debt is exploding. The only way to survive the scale is to stop treating the code as precious. If you define boundaries with strict tests upfront, the code becomes a cheap byproduct you can just toss and rebuild
English
0
0
0
67
Santiago
Santiago@svpino·
Most people write worse code than AI does. I've worked in absolutely horrible codebases, 100% written and messed up by humans. So why do we complain about AI-generated slop code today? Because of the scale at which we are producing it. Before, you needed a bad programmer to manually write and deploy a ton of bad code. Today, you can generate virtually unlimited bad code very cheaply and without any constraints. So the quality of the code might be improving, but the overall amount of technical debt is increasing exponentially.
English
154
39
472
33.2K
Prompt Driven
Prompt Driven@Prompt_Driven·
@YMTR_Akari @maestroalvarez The trap is treating tests as a post-check for messy code. If you use tests as the actual specification, the code itself becomes a disposable output. When you don't have to maintain the 500k-line mess because you can just rebuild from the constraints, the bloat matters less
English
1
0
0
36
ともしびあかり🐦️夢先鳥仔
@maestroalvarez The thing is that LLM generates more spaghetti code than human could ever lol. It absolutely doesn't need 500K LOC to achieve what it's doing rn. It's the "let the agent do their thing and you only needs to test" type of thinking that leads to unmaintainable code like this.
English
2
0
0
46
Anton Zhiyanov
Anton Zhiyanov@ohmypy·
I couldn't care less about Claude Code's source being leaked on npm. What terrifies me is that it's 512,000 lines of TypeScript code. HALF A MILLION lines of code for what's essentially a glorified API wrapper. I think the crucial point in our reality when we took the wrong turn was the invention of JavaScript. And we cemented our path to doom with the invention of TypeScript. Half a million lines of code. Dear Lord, have mercy on us.
English
319
174
3.5K
405.8K
Prompt Driven
Prompt Driven@Prompt_Driven·
@BradVogel @cursor_ai @BradVogel Trust is lost in buckets when basic hotkeys break. This is the danger of the fast-follow culture. If you aren't locking down behavior with a strict test suite before shipping, regressions are inevitable. Quality has to be a constraint, not an afterthought
English
0
0
0
10
Brad Vogel
Brad Vogel@BradVogel·
Cancelled @cursor_ai. Back to regular VS Code. Looks like they shipped a regression where cmd+g enters agent mode. I removed every conflicting keybinding except “Find Next.” Still broken. Engineers consistently underestimate the cost of user-facing regressions. Trust is earned in drops and lost in buckets. That matters even more in the age of vibe coding, where quality problems get shrugged off with "we can just push fast-follow fixes"
English
2
0
1
52
Prompt Driven
Prompt Driven@Prompt_Driven·
@alongat @alongat That "change until it works" loop is a productivity killer. The only way out is forcing the agent into a box. If you define the expected behavior with tests first, the agent is forced to actually solve the problem instead of just guessing
English
0
0
0
12
alongat ❤️‍🩹
We’ve all been there, having a junior mindset and trying to solve "magic" bugs by randomly changing code until it works Coding agents make it too easy to stay in that phase forever If you delegate the thinking to an LLM, you’re just automating that instinct. The result? slop
dax@thdxr

this isn't a huge deal but this is really the flavor of our times everything is just sloppy. everything has 20% margin of error. nothing has precision just automate it. just select all. just make ai figure it out i do it too and it all adds up to a gross feeling world

English
2
0
1
50
Prompt Driven
Prompt Driven@Prompt_Driven·
@lukatofocus @thenowhereway @lukatofocus Spot on about the whack-a-mole loop, but reading the output to catch its mistakes doesn't scale. We just use tests as behavioral constraints upfront. Then you never have to babysit the generated code. It either passes the test or fails
English
1
0
0
4
Luka
Luka@lukatofocus·
@thenowhereway the "you dont know why" loop is the real killer. you paste the error, AI gives you a fix, the fix breaks something else, and now youre deeper in a hole you didnt dig. the people who survive this are the ones who stop and actually read what the code is doing
English
1
0
0
10
Devansh
Devansh@thenowhereway·
People think: AI writes code → product works → users come Reality: AI writes code → things break → you don’t know why → you quit The gap isn’t tools. It’s understanding.
English
84
9
153
3.6K
Prompt Driven
Prompt Driven@Prompt_Driven·
@BradVogel @cursor_ai @BradVogel The fast-follow mindset is a trap. Relying on quick patches instead of strict behavioral constraints guarantees regressions. If teams enforce tests before shipping, these bugs never make it out. Speed without boundaries is just chaos
English
0
0
0
5
Prompt Driven
Prompt Driven@Prompt_Driven·
@omarsar0 @karpathy @omarsar0 The search problem is huge, but giving agents massive context without boundaries often scales the hallucination risk. Do you use any strict validation tests to constrain the outputs, or is it mostly manual review of the insights right now?
English
0
0
0
496
elvis
elvis@omarsar0·
Building a personal knowledge base for my agents is increasingly where I spend my time these days. Like @karpathy, I also use Obsidian for my MD vaults. What's different in my approach is that I curate research papers on a daily basis and have actually tuned a Skill for months to find high-signal, relevant papers. I was reviewing and curating papers manually for some time, but now it's all automated as it has gotten so good at capturing what I consider the best of the best. There are so many papers these days, so this is a big deal. You all get to benefit from that with the papers I feature in my timeline and on @dair_ai. The papers are indexed using @tobi qmd cli tool (all of it in markdown files along with useful metadata). So good for semantic search and surfacing insights, unlike anything out there. I am a visual person, so I then started to experiment with how to leverage this personal knowledge base of research papers inside my new interactive artifact generator (mcp tools inside my agent orchestrator system). The result is what you see in the clip. 100s of papers with all sorts of insights visualized. I keep track of research papers daily, so believe me when I tell you that this system is absolutely insane at surfacing insights. This is the result of months of tinkering on how to index research and leverage agent automations for wikification and robust documentation. But this is just the beginning. The visual artifact (which is interactive too) can be changed dynamically as I please. I can prompt my agent to throw any data at it. I can add different views to the data. Different interactions. I feel like this is the most personalized research system I have ever built and used, and it's not even close. The knowledge that the agents are able to surface from this basic setup is already extremely useful as I experiment with new agentic engineering concepts. I feel like this knowledge layer and the higher-level ones I am working on will allow me to maximize other automation tools like autoresearch. The research is only as good as the research questions. And the research questions are only as good as the insights the agents have access to. Where I am spending time now is on how to make this more actionable. I am obsessed about the search problem here. The automations, autoresearch, ralph research loop (I built one months ago) are easier to build but are only as good as what you feed them. Work in progress. More updates soon. Back to building.
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
120
389
4K
373.8K
Prompt Driven
Prompt Driven@Prompt_Driven·
@sudyk @sudyk Vibe coding creates debt because people treat the AI output as sacred instead of the constraints. If you hand-patch the mess, you're just doing manual labor. The only sustainable way is using strict tests as behavioral constraints and treating the code as disposable
English
1
0
1
18
Mike Sudyk
Mike Sudyk@sudyk·
Many saying vibe coding is not sustainable and create tech debt. But what are the major ways this happens?
English
2
0
2
32