Vibe Coding a Pokémon Search App with Cursor — Cursor Blog | Neura Market
    Neura MarketNeura Market/Cursor
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityDeepSeekDeepSeek
    CoPilotCoPilotStable DiffusionStable DiffusionMidjourneyMidjourney
    View All Directories
    OverviewRulesPromptsMCPsAgentsBlogVideosGuidesCoursesCommunityExtensionsTrendingGenerate
    CursorBlogVibe Coding a Pokémon Search App with Cursor
    Back to Blog
    Vibe Coding a Pokémon Search App with Cursor
    vibecoding

    Vibe Coding a Pokémon Search App with Cursor

    Nikola Brežnjak January 31, 2026
    0 views

    Build a Pokémon search app by prompting, steering, reviewing - and then shipping it to the Internet; all in a matter of minutes

    --- title: Vibe Coding a Pokémon Search App with Cursor published: true description: Build a Pokémon search app by prompting, steering, reviewing - and then shipping it to the Internet; all in a matter of minutes tags: vibecoding, Cursor, Pokémon cover_image: https://dev-to-uploads.s3.amazonaws.com/uploads/articles/md4lqxw97jecwk1np9wj.jpg canonical_url: https://nikola-breznjak.com/blog/vibecoding/vibe-coding-a-pokemon-search-app-with-cursor/ --- ## TL;DR We're going to build a **Pokémon search app**. But we're not going to write even one line of code. 🤨 I know, coming from a developer (_who used to take pride in what… we'll call "handcrafted artisanal code"_), this sounds like heresy. But stay with me here and see how far these kind of tools have come in only the last year. We'll be building the app using the so-called **vibe coding**. Basically: **you "talk" to the editor**, the editor writes the code, and **you navigate aka prompt** it toward the final product (that you'll be happy with 🤞). > Programmers/Coders/Engineers - we've always liked to tell/instruct computers what to do. That's still true, only the syntax got… conversational 🙂 > > Who would've thought 🤷‍♂️ > > ~ Nikola Brežnjak [on X](https://x.com/HitmanHR/status/2016450596107083908) In my previous post, I did this with Replit: [Vibe Coding a Pokémon Search App with Replit](https://nikola-breznjak.com/blog/vibecoding/vibe-coding-a-pokemon-search-app-with-replit/). This time we'll do the same thing, step-by-step, **but with Cursor**. Same app. Same flow. Different tool. More "local dev" vibes (_yup, puns still need some work_). ## The Tools In this post, we'll be using **Cursor**: https://www.cursor.com/. Cursor is a code editor (much like [Visual Studio Code - VSC](https://code.visualstudio.com/) - actually, its fork, in Github terms), but with an AI Agent that can plan and implement changes across your codebase. It's like pair-programming… except your pair doesn't need bathroom breaks. For bonus points, we won't even type anything. Instead, **we'll use our voice to code** (🤯, _I know_) with \*[**WisprFlow**](https://wisprflow.ai/r?NIKOLA1) (or alternatives like SuperWhisper / VoiceTypr). ## The Old Ways™ Previously, I wrote the "classic" (_may I say, "old" at this point?_) tutorials building the same app with two different tech stacks: - [Getting started with Vue.js 3 by building a Pokemon search application](https://nikola-breznjak.com/blog/javascript/getting-started-with-vue-js-3-by-building-a-pokemon-search-application/) - [Getting started with React by building a Pokemon search application](https://nikola-breznjak.com/blog/javascript/react/getting-started-with-react-by-building-a-pokemon-search-application/) This one is different. Same Pokémon search app. Less typing. More vibes (😂 _I know, I know_). ## Let's Start Prompting If you want to follow along: 1. (Download, Install) Open Cursor 2. Create a new empty folder (e.g. `pokemon-cursor`) 3. Open that folder in Cursor 4. Open the "AI chat" pane (`Command + i`) and make sure you select the **Plan** mode ![](https://i.imgur.com/YNco74W.png) > Pro tip: copy/paste these and adapt in case you're feeling adventurous. ### Prompt 1: Spec first, code later First of all, **always start with a plan** before writing any code. In the Replit post, I started with a simple prompt and then clicked Replit's **Improve prompt** button. I like that "improved" prompt better as: - it's more specific about _what the app should do_ (less back-and-forth) - it includes _UI style guidance_ (so you don't get "default HTML 2003 vibes") - it forces a _PRD + checklist_ (so you can hold the AI accountable) So… let's use that improved prompt here too 👇 Paste this into Cursor (Plan mode): > A comprehensive web-based Pokémon search application that allows users to discover and view detailed information about Pokémon using the PokéAPI. > > Core Features: > > - Search Pokémon by name or ID (bonus: autocomplete suggestions if it's simple) > - Display detailed Pokémon information (stats, types, abilities, sprites) > - Browse Pokémon list with pagination (if it makes sense; keep it simple) > - Responsive design that works on mobile and desktop devices > > Visual References: > > Inspired by the official Pokémon website and Pokédex interfaces, using vibrant, game-accurate designs and intuitive card-based layouts. > > Style Guide: > > - Colors: Primary #FFCB05 (Pokémon yellow), Secondary #3D7DCA (Pokémon blue), Accent #CC0000 (Pokémon red), Text #2A2A2A (dark grey), Card Background #FFFFFF (white) > - Design: Flexo/Poppins/Roboto fonts, card-based grid layout, mobile-first approach, clean search interface with prominent search bar > > Special Requirements: > > - Must include a detailed PRD (Product Requirement Document) covering user stories, UI layout, components, state management, API endpoints, error/loading states, accessibility considerations, folder structure, and a deployment plan for GitHub Pages > - Provide a numbered implementation checklist after the PRD > - DO NOT include actual code implementation — documentation and planning only You can leave the `Auto` for Model, but lately I've been defaulting to Opus 4.5. Then, just hit ENTER or click the button with the arrow pointing up (↑). ![](https://i.imgur.com/chBiS7U.png) ### Answer the questions Since we didn't define the actual tech stack, Cursor will ask us which stack we want (language + CSS framework): ![](https://i.imgur.com/4nTDaTU.png) ![](https://i.imgur.com/Dws58lf.png) I chose Vue.js and Tailwind CSS. ### Build the plan Select `Build` to start creating the PRD and the implementation checklist. ![](https://i.imgur.com/AUaTY7G.png) ### Review the prompt Cursor will create a seriously detailed PRD. I won't paste it here fully, but will mention that mine included sections like: ``` # PokéSearch - Product Requirements Document 1. Project Overview 2. User Stories 3. UI Layout and Wireframes 4. Component Architecture 5. State Management 6. API Endpoints 7. Loading and Error States 8. Accessibility Considerations 9. Style Guide Implementation 10. Folder Structure 11. GitHub Pages Deployment Plan 12. Implementation Checklist ``` Also, Cursor created a detailed implementation checklist (sharing just sections that it covered below): ``` Phase 1: Project Setup Phase 2: API Layer Phase 3: Core Components Phase 4: Detail View Phase 5: Search Integration Phase 6: Polish and Accessibility Phase 7: Testing and Quality Phase 8: Deployment Final Checklist Bonus Features (Optional) ``` ### Start cooking Before you do 'start cooking', I really encourage you to **read through the PRD** and see if: - it describes a simple UI - it mentions loading + error states - it keeps state management simple - the folder structure looks reasonable - it mentions GitHub Pages deployment If something looks off, just tell Cursor what you want. And, once you're happy, move on. ### OK, now we start cooking 🧑‍🍳 Let's now tell Cursor to implement the project by following the PRD and the Checklist it created: ``` Implement the product described in @PRD.md by executing @IMPLEMENTATION_CHECKLIST.md end-to-end. Rules: - Treat @PRD.md as source of truth. If checklist conflicts, call it out and follow PRD. - Work in small, reviewable commits (or clearly separated change blocks) per checklist section. - After each section, run/tests/build locally and paste results. Fix issues before moving on. - Keep the solution minimal and maintainable. No over-engineering. - Update docs and TODOs as you go; leave the repo in a “ship-ready” state. Deliverables: - All checklist items completed (explicitly mark each as done with a short note). - A final summary: what was implemented, how to run, how to test, and any known gaps (should be none). Start now. ``` Finally, send that prompt to Cursor (make sure you have `Agent` mode selected). ![](https://i.imgur.com/0b4hCyn.png) > ⚠️ You would most likely get a good final output if you wouldn't use such a detailed prompt. Something like "Implement the @PRD" would most likely suffice. But, as with anything, treat this like a craft and go an extra mile (test multiple prompts and see what works best for you). > > **TL;DR**: a bit more structure and detail in the prompt goes a long way. ### Now we wait... ⏳ Here's where Cursor does the 'actual work' of: - creating files - installing dependencies - wiring up the UI - calling PokéAPI - and fixing the inevitable "oops, that didn't run" moments Yes, it can do all of that. No, it doesn't always do it perfectly, and that's why you're here 😅 Meaning, it will ask you for permission to run certain commands (`npm install`, `npm run dev`, ...). You can choose to whitelist the commands so it won't ask your permission about running them again (do thread lightly here though, and actually read which commands it wants to run). ![](https://i.imgur.com/3hbxXJq.png) As it'll be doing its thing, you'll be able to follow along and read what it is all that it's doing. _I know, looking at someone else doing your job, gives you a weird feeling._ 😅 ### Done When Cursor is done, you'll see a detailed message of what it did, including the section on running it and deploying to Github: ```` ### How to Run ```bash # Install dependencies npm install # Development server npm run dev # Production build npm run build # Preview production build npm run preview ```` ### Preview In the Replit version, preview was built into the web UI. With Cursor, we're running locally on our machine — so the "Preview" step is simply: - run the commands it told you, or just tell Cursor to run the app (yes, literally, write "run the app") In my case, the URL was http://localhost:4173/PokemonSearch/ and it looks like this: ![](https://i.imgur.com/2sZg0bK.png) I'll be frank and say that I liked the Replit output better (see here: [https://pokedex-nikolabreznjak.replit.app/](https://pokedex-nikolabreznjak.replit.app/)), but you can get to that as well by additional prompting. I asked Cursor to `let's now add a nice landing page to it.`, and it came up with this: ![](https://i.imgur.com/0HBnDQw.png) Not bad for a terrible prompt 🙈 ### Publish and share Replit had a "Publish now" button. Here, we'll just ask Cursor to tell us how to deploy to Github Pages. It said: ``` Step #1 # Initialize git (if not already) git init # Add all files git add . # Commit git commit -m "Initial commit: PokéSearch app" # Create repo on GitHub, then add remote git remote add origin https://github.com/YOUR_USERNAME/YOUR_PROJECT_NAME.git # Push to master git push -u origin master ``` Only thing you have to change in the commands above is the Github username, and the project's name. And, there's a step 2: ``` Go to your repository on GitHub Click Settings → Pages (left sidebar) Under "Build and deployment": Source: Select GitHub Actions That's it! The workflow will trigger automatically ``` You can now run the workflow manually in the `Actions` tab on Github, or push some code changes and it will trigger automatically. ![](https://i.imgur.com/QMHJXA3.png) Once deployed, your app is going to be available at: https://YOUR_USERNAME.github.io/YOUR_PROJECT_NAME/ In my case, you can check it out here: https://NikolaBreznjak.github.io/PokemonSearchCursor/ ## Conclusion: the future is now!? Here's the uncomfortable truth: those who still treat AI coding tools like "cheating" are going to have the same fate as those who treated StackOverflow as cheating. These tools are **already** being used by devs to: - get unblocked faster - bootstrap new projects quicker - understand unfamiliar codebases - learn faster ⚠️ **And this last part is something I want to emphasise: if you're using AI to avoid thinking (and have no desire to learn), then you're missing the point**. Instead, you've got an amazing opportunity that the devs in the past did not have. You can literally highlight the part of the code and ask: - "how does this work?" - "why is this failing?" - "what's the simplest fix?" - "what would you refactor and why?" And you'll get a decent answer... in seconds. So yeah; the future is now. And, it can ship lots more than plain 'ol Pokémon apps. Take advantage of this! ## Disclaimer Links prepended with a `*` are referral links. If you enjoy the content and decide to sign up through those links, you'll be helping me feed my caffeine addiction ☕️ Thanks a bunch, you glorious human! 🙌 ## New achievement You made it to the end, here's a 🎖️ P.S. In case you were wondering, the style has been recently influenced by a book series called \*[Dungeon Crawler Carl](https://amzn.to/4bKTmsO). Enjoy! 👋

    Tags

    vibecodingcursorpokémon

    Comments

    More Blog

    View all
    Cursor vs Claude Code in 2026: Which AI Coding Tool Actually Makes You Faster?claudecode

    Cursor vs Claude Code in 2026: Which AI Coding Tool Actually Makes You Faster?

    I've spent the last three months shipping production code with both Cursor and Claude Code. Not toy...

    A
    Atlas Whoff
    The 5 MCPs that actually changed how I use Cursor and Claude Codeai

    The 5 MCPs that actually changed how I use Cursor and Claude Code

    I've been testing MCPs heavily in Cursor and Claude Code. Here are the 5 that actually changed how I...

    V
    vdalhambra
    AI-Powered Development 2026: Beyond Basic Code Generationaicoding

    AI-Powered Development 2026: Beyond Basic Code Generation

    AI-Powered Development 2026: Beyond Basic Code Generation How AI assistants have evolved...

    L
    lufumeiying
    Cursor AI vs GitHub Copilot: Developer Comparison 2025microsoft

    Cursor AI vs GitHub Copilot: Developer Comparison 2025

    Cursor AI vs GitHub Copilot: Developer Comparison 2025 The AI-Powered Code Completion...

    I
    Icarax
    How to Build 3D & AR Apps with AI — Cursor, Windsurf, Claude Codeai

    How to Build 3D & AR Apps with AI — Cursor, Windsurf, Claude Code

    AI coding assistants are great at generating UI code. But ask them to build a 3D scene or an AR...

    T
    Thomas Gorisse
    AI Coding Market Share 2026: Who's Winning?aitools

    AI Coding Market Share 2026: Who's Winning?

    Claude Code holds 54% of the AI coding market. Cursor hit $2B ARR. Copilot leads enterprise. Here's what the 2026 numbers actually mean.

    J
    Jangwook Kim

    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.