"Vibe" coding is a trap in the long run — Cursor Discussion
    Neura MarketNeura Market/Cursor
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityDeepSeekDeepSeek
    CoPilotCoPilotStable DiffusionStable DiffusionMidjourneyMidjourney
    View All Directories
    OverviewRulesPromptsMCPsAgentsGamesBlogVideosGuidesCoursesCommunityExtensionsTrending
    CursorCommunity"Vibe" coding is a trap in the long run
    Back to Community

    "Vibe" coding is a trap in the long run

    Significant-Tip-8441 March 8, 2025
    467 likes

    If you're using cursor, or any other AI-assisted IDE for 'vibe coding' (just feeding it with better or worse prompts, rules, getting angry at it, emoticons etc.) and have zero knowledge about how the tech stack you use is working - you are asking yourself for trouble.

    Sure, LLM's are getting better in understanding, solving problems and general thinking. Sometimes when you write beautifully crafted prompt, along with your great cursor rules you've found online, you'll get great results - feature you've wanted works, bug is fixed etc.

    Hell, sometimes you can even prompt your way to an app with full functionality that you've imagined - without single line of code written by yourself! Yay!

    But without knowing anything about what is the logic behind this, how things work, what the code does, how it is structured among files/classes/functions, what is going on with app lifecycle, how data is stored in db/files/sessions/cache, what libraries/frameworks are used, what security/throttle measures are used (and IF they are even used) when using backend/apis etc. you're really asking yourself for trouble.

    I'm a software developer since around 2012. I've created dozens of various sized projects on different stacks (js/sql/nosql/php/python/mobile/vr + all the modern frameworks) by pure hand coding - and I've been watching the whole AI boom since its beginning. Nowadays I've grown to use and even like Cursor and all the assist LLMs can give. It's now part of my workflow - and it's really making me more productive by letting AI do some tedious work under supervision.

    BUT - if you don't know shit about what's going on and just rely on AI to do great product for you by talking and instructing... you will probably fail at some point.

    The bigger the project is, the more it grows - the more knowledge it requires. Context window is really really low when it comes to projects with 1000s or more lines of code - and while tech people can understand how it works and where to look for something - AI is FAR FROM THAT - it doesn't really use reason, logic, it just looks for patterns it was trained with. We are far from giving whole big code repo to AI and making it understand the project like a dev who looked at the same code for a week, or even a day. Sure, there are rules, MCP, MD files - but no LLM will handle full codebase at once - and it will forget the rules and md files after some time and just create some shitty or redundant code. And you won't see it without knowledge.

    Also, if you're testing everything by yourself locally, or even with your family/friends, without proper stress/security/functional tests - many things can work really different on production when even 20 people at once will do sonething with the app, let alone tens of thousands.

    I know that many vibe coders, vibe startup CEOs and vibe enterpreneurs making new apps every few days here will say that It's BS, but really - you don't want to be in the situation where your app stops working, you don't know why, cursor/AI cannot fix it even if you yell at it or pretty please it (😆) and your paying customers are getting angry...

    I've been there and it's not nice - sometimes even having 3 or 4 dev team members looking up the bug with you costs significant amount of time and nerves... And money

    What will happen when vibe-coded apps explode, and you dont have a clue about what happened + cannot even tell some real dev how it works? And if you think that eventually you will get a dev and he will magically fix everything about your app within hours - he might - in 5 hours, or in 300 hours, when the app is so badly written that 90% needs refactor. Charging you lots of money for it

    Don't just vibe-code, tell agent to fix the error or gett angry at it - try to learn what happens in each section of your app and how it works Try to find not needed or redundant code early and keep the codebase clean and structured logically. Think about efficient storing/getting data, think about security, think about how users can try to abuse your app.

    And if you don't know how - do research and learn, or ask someone who does know to teach you, or you will regret it at some point

    Visit

    Comments

    More Community

    View all

    Ask HN: Who build production apps with out seeing code?

    Cursor now defaults to agentic mode with no code editor at all, which got me wondering: who is writing or who is building production-grade apps with actual real user traction without ever seeing the code? I can&#x27;t imagine doing that. At least right now, in the current technology, it&#x27;s too risky.<p>Are there real examples of people building and shipping real products without ever needing the code editor? Just to clarify, 99% of our code is written by AI, but it&#x27;s helpful to have the code editor so we can just review and see what changed. VS Code is good for that, but Claude Code and Codex and all the other CLI-based stuff is just not really well optimized for reading code.

    A
    amukbils
    2

    Show HN: Docs.dev – A docs site you own, where AI drafts and you edit in place

    Hi HN. Some backstory, because it explains why this exists.<p>Our startup originally worked on AI-assisted documentation generation. When Claude Code and Cursor&#x27;s agents matured, we asked ourselves the uncomfortable question: does a standalone &quot;AI writes your docs&quot; product still need to exist? We concluded no, and pivoted to what&#x27;s now keyboard.dev.<p>That left us with the docs.dev domain. We had a buyer in the docs space lined up and were genuinely excited for it to have a proper home. A month later, they changed their mind. So instead of letting a domain we loved sit parked, we built the docs platform we&#x27;d always wanted as a side project.<p>The workflow it&#x27;s built around: coding agents already write documentation well, but reviewing agent-written docs in raw MDX is miserable. So with docs.dev, Claude Code updates your docs template in the same session where it ships your code (the template carries a CLAUDE.md and skills, so it knows the conventions). Then you go to your actual docs site, on your domain, log in as an admin, and review the page exactly as readers will see it. Anything the AI got wrong, you edit or delete in place, directly on the live site. Publishing is a git commit to your repo, and CI redeploys. The same URL serves readers and, for admins, becomes the editor.<p>The economics are the other half of the pitch. There&#x27;s no hosting on our side and no content database: one click clones the template into your GitHub account and deploys it to your Cloudflare account with push-to-deploy CI. AI writing, image generation, and chat run on Cloudflare&#x27;s own primitives (Workers AI and friends), billed at Cloudflare&#x27;s rates on your account. You&#x27;re not paying a docs vendor to host your own documentation, and you&#x27;re not paying their markup on AI calls. The optional docs.dev service adds exactly one thing, team sign-in, and it&#x27;s a sign-in check, not a dependency: if we disappear tomorrow, your site keeps serving.<p>We deliberately built on existing technology rather than reinventing it: Fumadocs (Next.js + MDX) for the docs framework, chenglou&#x27;s pretext layout engine for the reading experience (prose flows around figures like a magazine spread, while the server still renders plain indexable &lt;p&gt; text for crawlers and no-JS readers), and Cloudflare&#x27;s out-of-the-box platform pieces for deploys, CI, and AI.<p>Honest caveats: it requires the Cloudflare Workers Paid plan ($5&#x2F;mo) because the server Worker is ~5.3 MiB gzipped, over the free plan&#x27;s 1 MiB limit. It&#x27;s a side project, not our main company. And the magazine-style layout is the kind of thing you either love or find gratuitous. We&#x27;d genuinely like to hear which.<p>There&#x27;s a walkthrough video on the homepage if you&#x27;d rather watch the workflow than read it. Happy to answer questions about the agent workflow, the in-place editing, the ownership model, or the pivot. Note it is an early but hope this helps people that wants easy, cheap, and effective documentation on their terms

    L
    linktothenew
    2

    Show HN: AI harness for C/C++ with GDB, sanitizers, perf and compile tools

    hey guys, i wanted to show one of my side projects.<p>The idea is a coding harness (independent of models) natively designed for C&#x2F;C++ developer workflows.<p>I&#x27;m a C++ dev and do not find claude code work well with C++ toolchain like gdb and perf. The current version has integrations for gdb, clang-tidy, cppcheck, sanitizers, perf, benchmarking, compile DB navigation, Godbolt, symbolization, binary inspection, and decompilation.<p>It supports Anthropic, OpenAI, Gemini, and self-hosted models. There are editor workflows for VS Code, CLion, emacs, neovim, and cursor.

    A
    anirudhak47
    5

    Show HN: Gist Discover – TikTok for ArXiv Summaries

    Dunno about you, but I cannot keep up with the volume of AI research. Reading one paper properly takes 30–60 minutes, and it&#x27;s hard to know which are even worth it.<p>I built Gist, an AI summarizer for ADHD brains. Each paper is a clean slide deck with four layers you move through:<p>1. the Gist – the whole idea 1-2 sentences 2. Logic – breakdown of the argument + evidence in discrete ideas 3. Counter-Argument – strongest argument against the author (AI generated) 4. Steelman – transcendent rebuttal to the counter-argument (AI generated)<p>There&#x27;s integrated TTS audio too — hit play to listen.<p>I went overboard and post-trained a model specifically for this.<p>When I say I went overboard, I really did! I burned $130k of AWS Claude credits on the dataset, 1&#x2F;3rd of which is Arxiv papers. My goal was to absolutely max out on data quality over quantity. And it worked!<p>I started with a looping 5-step multi-teacher editorial pipeline using Claude Opus 4.6 &amp; Gemini 3.1 Pro, then distilled it into Gemini 2.5 Flash single shot model that (according to my evals) beats all the best single-shot frontier model for this task on quality (while being 20x faster and 10x cheaper).<p>Here&#x27;s a random one from the feed right now:<p><i>Qwen-Image-Agent: Bridging the Context Gap in Real-World Image Generation</i><p><i>Qwen-Image-Agent scores 45.4 on a benchmark where the direct image generator it&#x27;s built on scores 17.4 — a 161% improvement from the same model, same weights, same prompt. The difference isn&#x27;t better pixels. It&#x27;s a system that asks &quot;What else do you need?&quot; before it ever draws a single one.</i><p>gist.is&#x2F;discover is a free feed of all the arXiv papers I&#x27;ve run through it. No signup. Right now, the feed is totally random, but if this gets traction I&#x27;ll build a proper recommendation system.<p>Read the gist in ~10 seconds and go deeper if you want (inc going straight to the source), or tap Next→ and try again.<p>I also created Gist Discover extensions for your IDE so you can read &#x2F; listen &#x2F; learn while your AI agents work.<p>Cursor&#x2F;Windsurf: <a href="https:&#x2F;&#x2F;open-vsx.org&#x2F;extension&#x2F;Transcendence&#x2F;gist-discover" rel="nofollow">https:&#x2F;&#x2F;open-vsx.org&#x2F;extension&#x2F;Transcendence&#x2F;gist-discover</a><p>VS Code: <a href="https:&#x2F;&#x2F;marketplace.visualstudio.com&#x2F;items?itemName=Transcendence.gist-discover" rel="nofollow">https:&#x2F;&#x2F;marketplace.visualstudio.com&#x2F;items?itemName=Transcen...</a><p>Feedback welcome! Enjoy! -Matt

    M
    MediaSquirrel
    4

    Show HN: OpenKnowledge – open source AI-first alternative to Obsidian/Notion

    Hi HN, Nick here. We’re launching OpenKnowledge (<a href="https:&#x2F;&#x2F;openknowledge.ai&#x2F;" rel="nofollow">https:&#x2F;&#x2F;openknowledge.ai&#x2F;</a>), a “what you see is what you get” markdown editor that has direct integrations with Claude, Codex, and other agents. Available as MacOS app or Web UI+CLI. Fully free&#x2F;local and OSS.<p>We built this because we wanted a Notion-like experience for writing and sharing markdown files across our team. Obsidian is the best alternative we tried, but found it doesn’t have a true WYSWIG UI and it didn’t integrate well with Claude&#x2F;Codex outside of community plugins.<p>So we built OpenKnowledge. It takes shape as:<p>1. A MacOS app with a file navigator, the WYSIWYG editor, and link explorer.<p>2. Integrations with the Claude, Codex, and Cursor desktop apps. The agents can open an OpenKnowledge editor within their embedded web browsers for a side-by-side experience.<p>3. Built-in mcps, skills, and RAG for LLM-wiki and “AI Second Brain” scenarios + spec writing<p>4. An embedded terminal and CLI for TUI-first users<p>OSS stack includes: Tiptap&#x2F;prosemirror, CodeMirror, yjs (CRDT), Electron (MacOS app), Orama, remark&#x2F;rehype&#x2F;micromark&#x2F;mdast, @pierre&#x2F;trees<p>On the architecture side, the interesting eng. challenges included:<p>1. A pipeline to convert ProseMirror to markdown in a bidirectional lossless way. ProseMirror uses ASTs, which are not designed to have byte-fidelity.<p>2. A dual-observer CRDT to keep the ProseMirror and markdown state in-sync.<p>The CRDT + git also power a collaborative experience that shows what Agents are doing in the markdown, have undo&#x2F;redo, and version history. The “Share” and cloud-sync functionality are geared for team collaboration. They feel “no-code” but leverage git&#x2F;GitHub under the hood, which also means data stays fully private.<p>In that spirit, we made OpenKnowledge open source for anybody who’s curious or who’d like to contribute.<p>We’re actively thinking about plugins&#x2F;extensibility and what’s next. If you have suggestions or feedback, would love to hear it.

    E
    engomez
    381

    Show HN: writing tasks with focused context + instructions = sharper AI

    To get an AI to do a task well, you need to give it the right context and the right task description. I&#x27;ve had a lot of struggles working in a large codebase getting AI to follow the existing patterns and architecture. So I started building a VS Code &#x2F; Cursor extension that lets you quickly snap together sub prompts&#x2F;instructions relevant to a specific task. After seeing the value of this, I realized you could make those sub prompts more customizable by using a liquid syntax engine.<p>That worked fine for a few days, until the original context blocks got stale as the project progressed. I wrote an MCP server that can update those blocks, creating a feedback loop. A few days later I added an amend option too, so the AI can write a log and decision record as it goes.<p>At this point I realized there were a lot of opportunities here: my AI isn&#x27;t spending the first 5 minutes doing research, I&#x27;ve got better control over my context window, there&#x27;s less irrelevant data leaking in from my agents.md file when I switch repos, I can write prompt groups for separate workflows, and so on. The last blocker for me was that I actually use Claude Code and not VS Code much anymore. So I figured out how to hook into the external editor command to open a TUI directly from CC and write a prompt from there.<p>Now I&#x27;m happy to finally share it after spending the last 5 months perfecting it. Would love for you to try it and let me know what you think, even if its not something for you - why?<p>More details see GH: <a href="https:&#x2F;&#x2F;github.com&#x2F;simondevries&#x2F;prompt-foundry" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;simondevries&#x2F;prompt-foundry</a><p>install vscode: <a href="https:&#x2F;&#x2F;marketplace.visualstudio.com&#x2F;items?itemName=sdevries.prompt-foundry" rel="nofollow">https:&#x2F;&#x2F;marketplace.visualstudio.com&#x2F;items?itemName=sdevries...</a><p>Install OpenVsx: <a href="https:&#x2F;&#x2F;open-vsx.org&#x2F;extension&#x2F;sdevries&#x2F;prompt-foundry" rel="nofollow">https:&#x2F;&#x2F;open-vsx.org&#x2F;extension&#x2F;sdevries&#x2F;prompt-foundry</a>

    E
    espresso_dev
    2

    Stay up to date

    Get the latest Cursor prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for Cursor and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.

    Neura Market

    Custom AI Systems & Services

    Our team of experienced AI builders will help build custom AI systems, workflows, and solutions.

    Request custom work

    Ready-made automations for this

    Workflows from the Neura Market marketplace related to this Cursor resource

    • Integrate and Chat with Documents Using InfraNodus Knowledge Graphn8n · $14.99 · Related topic
    • Create an AI Chatbot with Expert Knowledge Graphs Using InfraNodusn8n · $9.99 · Related topic
    • Email to Notion Knowledge Base with IMAP, Postgres Dedup, and Telegram Alertn8n · $14.99 · Related topic
    • Sync Zendesk Knowledge Base Articles to Airtable with Markdown Conversionn8n · $14.99 · Related topic
    Browse all workflows