Your vibe coding checklist

This checklist will answer your question: "Where do I start?". Created for vibe coders by a old fashioned coder, who is digging his own grave...

Many thanks to @NicolasZu, this checklist was based on his original GitHub repository.

Vibe coding

noun (slang)

A way of life, defined by lazy people who like to tell the computer what to do, instead of doing it themselves.

"With vibe coding, my job's 10% coding, 90% telling the AI what it did wrong."

Step 1: Setup environment

To start with vibe coding, you need two essential tools: Cursor with Claude Sonnet 3.7 Thinking and Grok 3 Thinking. These will assist in planning and implementing your project.
Important: Plan everything carefully. Letting the AI plan autonomously can lead to a disorganized mess. Take your time to think through your project for a solid outcome.

Steps to take

  1. Take your project idea and use Grok to generate an initial project requirements document in Markdown format (project-requirements.md).
  2. *It doesn’t need to be perfect; the goal is to give the AI context about your project.

  3. Review and refine the document to align with your project’s goals and structure, ensuring the AI understands your intent.

Step 2: Define project requirements and tech stack

Outline your project’s requirements clearly and let Grok recommend a suitable tech stack. Then, set up coding rules for Cursor to maintain consistency and efficiency.

Steps to take

  1. Ask Grok to suggest the simplest, most reliable tech stack based on your requirements you generated earlier. Also save this as .md file (tech-stack.md)
  2. *Encourage Grok to prioritize straightforward, robust technologies.

  3. Download the PDF version of Cursor rules for AI.
  4. *Right-click -> Print -> Save as PDF.

  5. Upload the PDF to Grok and prompt it to write 6-10 coding rules for Cursor, as if it’s a senior developer specializing in your tech stack.
  6. *Ensure one rule mandates modularity (splitting code into multiple files) to avoid a single, unwieldy file.

Step 3: Create implementation plan

Have Grok produce a detailed, step-by-step plan to guide your project’s implementation.

Steps to take

  1. Provide Grok with:
    • The project requirements document (project-requirements.md)
    • The tech stack recommendations (tech-stack.md)
    • The Cursor rules

  2. Ask Grok to generate an implementation plan in Markdown (.md) format (implementation-plan.md), including:
    • Small, focused steps
    • A simple test for each step to verify it works
    • A focus on core functionality first (additional features come later)

Resources

Step 4: Set up memory bank

AI struggles to track its own changes, so create a folder with markdown files to organize project details and progress.

Steps to take

  1. Create a new folder for your project (e.g., my-project-name).

  2. Open the folder in Cursor.

  3. Inside the folder, create a subfolder called memory-bank.

  4. Add these files to memory-bank:
    • project-requirements.md
    • tech-stack.md
    • implementation-plan.md
    • progress.md (to track completed steps)
    • architecture.md (to document the purpose and structure of project files)

Step 5: Configure Cursor rules

Apply the coding rules from Grok to Cursor to enforce best practices throughout development.

Steps to take

  1. In Cursor, press Cmd + Shift + P, type "rules", and hit Enter.

  2. Paste the coding rules generated by Grok from Step 2 into Cursor’s rules configuration.

Step 6: Ensure clarity in implementation plan

Review and refine the implementation plan with Claude Sonnet 3.7 Thinking to eliminate ambiguity.

Steps to take

  1. Select Claude Sonnet 3.7 Thinking in Cursor.

  2. Prompt: "Read all documents in /memory-bank. Is implementation-plan.md clear? What questions do you have to make it 100% clear?"

  3. Answer any questions the AI raises to clarify the plan.

  4. Prompt the AI to update implementation-plan.md based on your answers for improved clarity.

Resources

Step 7: Implement the project

Start building your project step by step using Claude Sonnet 3.7 Thinking in Cursor.

Steps to take

  1. Select Claude Sonnet 3.7 Thinking in Cursor.

  2. Prompt: "Read all documents in /memory-bank and proceed with Step 1 of the implementation plan. I will run the tests. Do not start Step 2 until I validate the tests."

  3. After completing Step 1, validate the tests yourself.

  4. If tests pass, prompt the AI to document the work in progress.md and update architecture.md with any new insights.

  5. Commit your changes to Git.
  6. *If unfamiliair ask Grok


  7. For each subsequent step:
    • Start a new composer (Cmd + N, Cmd + I).
    • Prompt: "Read progress.md to understand prior work, then proceed with the next step. Do not start the following step until I validate the test."

  8. Repeat until the implementation plan is fully executed.

  • *Tip: For better prompt results, add: “Think as long as needed to get this right. I’m not in a hurry. Follow my instructions precisely and ask questions if anything’s unclear..
  • Step 8: Add features and details

    With the core project complete, enhance it by adding new features and refining details.

    Steps to take

    1. For each new feature, create a feature-implementation.md file with small steps and tests.

    2. Implement the feature step by step, validating each test before proceeding.

    3. Update progress.md and architecture.md as needed.

    Resources

    Step 9: Debug and resolve issues

    Address bugs and challenges using specialized tools and strategies.

    Steps to take

    1. If a prompt fails or disrupts the project, use Cursor’s “restore” feature and adjust your prompt.

    2. For errors:
      • Open the console (F12), copy the error, and paste it into Cursor.
      • For visual issues, include a screenshot.
      • Or use BrowserTools to automate error reporting.

    3. If stuck, revert to the last Git commit and try a different approach.

    Resources

    Step 10: Share your project

    Share your finished project with the community and connect with others.

    Steps to take

    1. Commit your final code to GitHub.

    2. Share your project on X (Twitter) with relevant hashtags.

    3. Join community discussions on platforms like Discord or forums.

    Step 11: Watch out for these mistakes

    As a post from @leojr94_ went viral, it showed the dangers of vibe coding. Avoid these common mistakes to protect your project and data.

    Steps to take

    1. Hardcoding sensitive data: Don’t embed API keys or secrets directly in your code. Use environment variables instead.

    2. Unprotected APIs: Ensure all API endpoints require authentication and authorization to prevent unauthorized access.

    3. Ignoring input validation: Failing to sanitize user inputs can lead to injection attacks (e.g., SQL injection). Use parameterized queries or validation libraries.

    4. Misconfigured CORS: For web projects, set CORS to allow only trusted domains, not all origins (*).

    5. No HTTPS: If your project is web-based, ensure it uses HTTPS to protect data in transit.

    6. Skipping reviews: Before sharing, use Grok to review your code. Prompt: "Check my project for common security mistakes and suggest fixes."