$ open claude-code-prompt-pack

    Claude Code prompt library for builders who want to ship.

    A website-native version of the AI Flow Club prompt pack with grouped, copy-ready prompts from the getting-started guide, prompt database, and niche website templates.

    Want this adapted to your team?Send the Workflow
    prompt_pack.jsonready

    prompts

    91

    categories

    10

    sources

    3

    $ cat audience.txt

    Beginners, indie hackers, developers, vibe coders, and anyone using Claude Code as a real project partner.

    ~/prompt-pack/getting-startedFoundation

    $ list GS

    [GS] Getting Started

    Set up your first project and understand how to communicate with Claude effectively.

    GS-02

    Create Your First HTML Page

    Level
    Beginner
    Use case
    When you're brand new to coding
    Source
    Getting Started page
    Show prompt
    I'm brand new to coding. Can you help me create a simple HTML page with:
    - A header
    - A welcome message
    - A button that says "Click me"
    
    Please explain each part of the code as you write it.

    GS-01

    Initialize a New Project

    Level
    Start Here
    Use case
    First thing you run in a new project
    Source
    Getting Started page
    Show prompt
    /init
    
    I want to create a [describe your project idea]. Please help me set up the project structure and create a CLAUDE.md file with appropriate context.

    GS-05

    Learn by Doing

    Level
    Practice
    Use case
    Practice with hands-on challenges
    Source
    Getting Started page
    Show prompt
    I learn best by doing. Can you give me a simple coding challenge to practice what I just learned about [specific topic]? Please provide:
    - The challenge description
    - Hints if I get stuck
    - An explanation of the solution after I try it

    GS-04

    Set Up Development Environment

    Level
    Setup
    Use case
    Getting your machine ready to code
    Source
    Getting Started page
    Show prompt
    I need help setting up my development environment for [web development/Python/JavaScript]. Can you:
    - Guide me through what tools I need to install
    - Help me configure my IDE
    - Show me how to run my first "Hello World" program
    
    I'm on [Mac/Windows/Linux].

    GS-03

    Understand Project Structure

    Level
    Orientation
    Use case
    When you feel overwhelmed by your files
    Source
    Getting Started page
    Show prompt
    I'm looking at my project files and feeling overwhelmed. Can you:
    1. Explain what each file and folder in my project does
    2. Tell me which files I should focus on first as a beginner
    3. Suggest a logical order to work through them
    ~/prompt-pack/fundamentalsCore Skills

    $ list FN

    [FN] Fundamentals

    Master prompt engineering, context management, and Plan Mode - the foundation of everything.

    FN-04

    Get Feedback on Your Prompts

    Level
    Feedback
    Use case
    Rate and improve 3 prompts at once
    Source
    Getting Started page
    Show prompt
    I'm learning prompt engineering. Here are 3 prompts I wrote:
    1. [Prompt 1]
    2. [Prompt 2]
    3. [Prompt 3]
    
    For each one, tell me:
    - What's working well
    - What could be clearer
    - How to make it more specific
    - Rate it from 1-10 and explain why

    FN-01

    Improve Your Prompts

    Level
    Skill Up
    Use case
    Get feedback on prompts you wrote
    Source
    Getting Started page
    Show prompt
    I want to improve my prompting skills. Can you:
    1. Review this prompt I wrote: [paste your prompt here]
    2. Identify what could be more specific
    3. Rewrite it using the 4-part framework (Context, Task, Details, Output Format)
    4. Explain why the improved version is better

    FN-02

    Learn Context Management

    Level
    Context
    Use case
    Understand how to set up CLAUDE.md
    Source
    Getting Started page
    Show prompt
    I'm working on a [type of project]. Help me understand how to provide you with the right context:
    - What information do you need about my project to help me most effectively?
    - How should I structure my CLAUDE.md file?
    - What details are most important vs. what can I leave out?

    FN-03

    Master Plan Mode

    Level
    Plan Mode
    Use case
    Before tackling any complex task
    Source
    Getting Started page
    Show prompt
    I need to [describe a complex task]. Before you start coding, use Plan Mode to:
    1. Break down this task into logical steps
    2. Identify potential challenges
    3. Suggest the best order to tackle each part
    4. Ask me any clarifying questions
    
    Then wait for my approval before proceeding.

    FN-05

    Understand Output Formatting

    Level
    Output
    Use case
    Learn the 3 ways to request code output
    Source
    Getting Started page
    Show prompt
    Show me 3 different ways to request code output for [specific task]:
    1. As a single file
    2. As separate files with explanations
    3. As step-by-step implementation
    
    Explain when each format would be most useful.
    ~/prompt-pack/project-setupKickoff

    $ list PS

    [PS] Project Setup

    Initialize projects, development environments, Docker, CI/CD, and project context files.

    PS-01

    CI/CD Pipeline

    Level
    Advanced
    Use case
    Setting up continuous integration
    Source
    Prompt Templates Database
    Show prompt
    Create a CI/CD pipeline for [project type]. Include: automated testing, code quality checks, build process, deployment to [environment], rollback strategy, and notifications. Platform: [GitHub Actions/GitLab CI/Jenkins].

    PS-03

    Create CLAUDE.md

    Level
    Beginner
    Use case
    Setting up project context
    Source
    Prompt Templates Database
    Show prompt
    Generate a comprehensive CLAUDE.md file for my [project type] project. Include: project overview, tech stack details, coding style guidelines, key file descriptions, common commands, and any project-specific context.

    PS-02

    Docker Setup

    Level
    Intermediate
    Use case
    Containerizing application
    Source
    Prompt Templates Database
    Show prompt
    Create Docker configuration for [application type]. Include: Dockerfile with multi-stage build, docker-compose.yml for local development, environment variable management, and optimization for production. Stack: [list technologies].

    PS-05

    Initialize New Project

    Level
    Beginner
    Use case
    Starting a new project from scratch
    Source
    Prompt Templates Database
    Show prompt
    I'm starting a new [type of application] using [technologies/frameworks]. Please suggest a modern, scalable project structure. Include recommendations for: directory organization, essential dependencies, configuration files, and best practices for the tech stack.

    PS-04

    Setup Dev Environment

    Level
    Beginner
    Use case
    Configuring development environment
    Source
    Prompt Templates Database
    Show prompt
    Help me set up a development environment for [project type] using [technologies]. Include: required software installations, environment variables, configuration files, IDE setup recommendations, and a getting started guide for new developers.
    ~/prompt-pack/workflowsProcess

    $ list WF

    [WF] Development Workflows

    Integrate Claude into your daily development process - from feature planning to version control.

    WF-03

    Build an API Endpoint

    Level
    Backend
    Use case
    Creating backend routes - beginner friendly
    Source
    Getting Started page
    Show prompt
    I need to create an API endpoint that [describe what it does].
    
    Please:
    1. Generate the code with lots of comments explaining each line
    2. Show me where this code should go in my project
    3. Include error handling
    4. Give me an example of how to test it
    
    I'm using [your backend technology - e.g., "Express.js", "Flask", "FastAPI"].

    WF-02

    Plan a New Feature Step-by-Step

    Level
    Planning
    Use case
    Before writing a single line of code
    Source
    Getting Started page
    Show prompt
    I want to add [describe the feature] to my project.
    
    Before we start coding, please:
    1. Break this down into small, manageable steps
    2. Tell me which files I'll need to create or modify
    3. Identify any potential challenges I should know about
    4. Suggest the order I should tackle each step
    
    My project uses [list your technologies].

    WF-04

    Refactor Hard-to-Maintain Code

    Level
    Refactor
    Use case
    When your codebase is getting hard to follow
    Source
    Getting Started page
    Show prompt
    My code is getting hard to understand. Here's the code:
    
    [Paste your code here]
    
    Please help me:
    1. Identify what makes this code hard to maintain
    2. Suggest how to break it into smaller pieces
    3. Rewrite it with better organization
    4. Explain the improvements you made

    WF-01

    Start a New Project Structure

    Level
    Setup
    Use case
    Day one of any new project
    Source
    Getting Started page
    Show prompt
    I'm starting a new [type of project - e.g., "React website", "Node.js API", "Python app"].
    
    Please help me:
    1. Create a beginner-friendly project structure
    2. Explain what each folder and file is for
    3. List the essential tools and dependencies I need
    4. Give me step-by-step commands to set everything up
    
    I'm using [your operating system] and [your code editor].

    WF-05

    Write Git Commit Messages

    Level
    Git
    Use case
    After finishing any chunk of work
    Source
    Getting Started page
    Show prompt
    I just finished working on [describe what you did - e.g., "added user login", "fixed the navigation bug"].
    
    Please write me:
    1. A clear, professional Git commit message
    2. Optional: A longer description if needed
    3. Follow conventional commit format
    
    Make it sound professional but easy to understand.
    ~/prompt-pack/code-creationGenerate

    $ list CC

    [CC] Code Generation

    Generate functions, components, APIs, database schemas, and layouts with precision.

    CC-03

    Build a Complete API Endpoint

    Level
    API
    Use case
    Full CRUD with validation + error handling
    Source
    Prompt Templates Database
    Show prompt
    I need a REST API endpoint for [resource name] using [technology].
    
    The [resource] should have these fields:
    - [field1]: [type]
    - [field2]: [type]
    
    Generate:
    1. The data model/schema
    2. All CRUD operations (Create, Read, Update, Delete)
    3. Input validation
    4. Error handling
    5. Comments explaining each part

    CG-02

    Build Database Model

    Level
    Intermediate
    Use case
    Creating a database model
    Source
    Prompt Templates Database
    Show prompt
    Create a database model for [entity name] using [ORM/database]. Fields: [list fields with types]. Include: validation rules, relationships to other models, indexes for performance, and any necessary constraints.

    CG-03

    Create API Endpoint

    Level
    Intermediate
    Use case
    Building a new API endpoint
    Source
    Prompt Templates Database
    Show prompt
    Create a [HTTP method] API endpoint at [path] using [framework]. The endpoint should: accept [parameters], validate [data], perform [operation], return [response format]. Include error handling and appropriate status codes.

    CC-05

    Create HTML/CSS Layout

    Level
    Frontend
    Use case
    Any UI section - responsive + commented
    Source
    Prompt Templates Database
    Show prompt
    Create an HTML and CSS layout for [describe what you need - e.g., "a pricing table", "a contact form", "a hero section"].
    
    Requirements:
    - Mobile responsive
    - Modern and clean design
    - [Any specific colors or styles]
    
    Include comments in the code explaining the structure.

    CC-04

    Design a Database Schema

    Level
    Database
    Use case
    Before you write any backend code
    Source
    Prompt Templates Database
    Show prompt
    Help me design a database for [describe your app].
    
    Main entities:
    - [Entity 1] with fields [list fields]
    - [Entity 2] with fields [list fields]
    
    Relationships:
    - [describe relationship 1]
    - [describe relationship 2]
    
    Generate the SQL schema with proper data types, primary keys, foreign keys, and indexes.

    CC-02

    Generate a Component

    Level
    Component
    Use case
    React, Vue, or any framework component
    Source
    Prompt Templates Database
    Show prompt
    Create a [framework] component called [Name] that:
    - [Functionality 1]
    - [Functionality 2]
    - [Functionality 3]
    
    Make it reusable and include props/parameters for customization.
    Add comments explaining how to use it.

    CG-04

    Generate Boilerplate

    Level
    Beginner
    Use case
    Creating boilerplate code
    Source
    Prompt Templates Database
    Show prompt
    Generate boilerplate code for a [component type] in [framework/language]. It should: [describe requirements]. Include: proper structure, common patterns, placeholder comments, and follow [framework] best practices.

    CG-01

    React Component

    Level
    Beginner
    Use case
    Creating a React component
    Source
    Prompt Templates Database
    Show prompt
    Generate a React component called [ComponentName] that [describe functionality]. Requirements: use functional component with hooks, accept these props: [list props], implement this behavior: [describe behavior], include proper TypeScript types.

    CC-01

    Write a Simple Function

    Level
    Function
    Use case
    Any language, any task
    Source
    Prompt Templates Database
    Show prompt
    Write a [language] function that [describe what it does].
    Include:
    - Clear variable names
    - Comments explaining each step
    - Error handling for edge cases
    - A docstring/description at the top

    CG-05

    Write Function

    Level
    Beginner
    Use case
    Creating a new function
    Source
    Prompt Templates Database
    Show prompt
    Write a [language] function that [describe functionality]. Requirements: [list specific requirements]. Please include: appropriate error handling, type hints/annotations, comprehensive docstring, and example usage.
    ~/prompt-pack/code-qualityPolish

    $ list CQ

    [CQ] Code Quality

    Review, refactor, and optimize your code for readability, performance, and best practices.

    QL-01

    Algorithm Optimization

    Level
    Advanced
    Use case
    Improving algorithm efficiency
    Source
    Prompt Templates Database
    Show prompt
    Please optimize the following algorithm for better time/space complexity. Current implementation: [paste code]. Analyze: current complexity, bottlenecks, suggest optimized approach, provide refactored code, explain improvements and trade-offs.

    QL-03

    Apply Design Patterns

    Level
    Advanced
    Use case
    Implementing design patterns
    Source
    Prompt Templates Database
    Show prompt
    Review the following code and suggest appropriate design patterns that could improve its structure. Consider: which patterns would be beneficial, how to implement them, what problems they solve, and any trade-offs. Then refactor the code. [Paste code here]

    CQ-04

    Check Best Practices

    Level
    Standards
    Use case
    Validate against official style guides
    Source
    Prompt Templates Database
    Show prompt
    Review this [language] code against official style guides and best practices:
    
    [Paste your code]
    
    Tell me:
    - What I'm doing well
    - What doesn't follow best practices
    - How to fix each issue
    - Why these practices matter
    
    Show me the corrected version.

    QL-06

    Code Review

    Level
    Intermediate
    Use case
    Getting feedback on code
    Source
    Prompt Templates Database
    Show prompt
    Please act as a senior software engineer and perform a thorough code review of the following [language] code. Look for: potential bugs, performance issues, security vulnerabilities, best practices violations, and readability improvements. Provide specific feedback with code examples. [Paste code here]

    QL-02

    Enforce Style Guide

    Level
    Intermediate
    Use case
    Checking code style
    Source
    Prompt Templates Database
    Show prompt
    Please review the following [language] code and check if it adheres to the [style guide name] style guide and best practices. Highlight any areas that can be improved and provide the corrected code. [Paste code here]

    CQ-01

    Get a Code Review

    Level
    Review
    Use case
    Before shipping anything to production
    Source
    Prompt Templates Database
    Show prompt
    Please review this [language] code as if you were a senior developer.
    
    [Paste your code]
    
    Check for:
    - Bugs or potential errors
    - Code readability issues
    - Best practice violations
    - Performance concerns
    - Security issues
    
    Provide specific suggestions with examples of how to fix each issue.

    CQ-05

    Make Code More Readable

    Level
    Readability
    Use case
    When junior devs can't follow your code
    Source
    Prompt Templates Database
    Show prompt
    Make this code easier for a beginner to understand:
    
    [Paste your code]
    
    Please:
    1. Add clear comments explaining what each part does
    2. Use more descriptive variable names
    3. Break complex expressions into simpler steps
    4. Add a summary at the top explaining the purpose
    
    Make it so readable that someone new to coding could follow along.

    CQ-03

    Optimize for Performance

    Level
    Performance
    Use case
    When your code feels slow
    Source
    Prompt Templates Database
    Show prompt
    Analyze this code for performance issues:
    
    [Paste your code]
    
    Identify:
    - Slow algorithms or operations
    - Memory inefficiencies
    - Unnecessary computations
    - Better data structure choices
    
    For each issue, explain:
    1. Why it's slow
    2. How to fix it
    3. The performance impact

    QL-04

    Optimize Performance

    Level
    Advanced
    Use case
    Improving code performance
    Source
    Prompt Templates Database
    Show prompt
    Please analyze the following code for performance bottlenecks. Identify: inefficient algorithms, data structures, or operations. Suggest specific optimizations to improve performance and reduce memory usage. Explain the trade-offs. [Paste code here]

    QL-05

    Refactor Code

    Level
    Intermediate
    Use case
    Improving code structure
    Source
    Prompt Templates Database
    Show prompt
    Please refactor the following code to improve quality. Goals: improve readability and maintainability, apply SOLID principles, reduce complexity and duplication, extract reusable functions/components, improve naming. Constraints: maintain same functionality. [Paste code here]

    CQ-02

    Refactor for Cleanliness

    Level
    Refactor
    Use case
    When code works but looks disorganized
    Source
    Prompt Templates Database
    Show prompt
    This code works but it is hard to maintain. Please refactor it to be clean and professional:
    
    [Paste your code]
    
    Focus on:
    - Better variable/function names
    - Breaking up large functions
    - Removing duplicate code
    - Adding helpful comments
    - Following [language] best practices
    
    Explain each improvement you make.
    ~/prompt-pack/debuggingFix It

    $ list DB

    [DB] Debugging

    Find and fix bugs faster. Understand error messages. Debug with a repeatable method.

    DBT-04

    Debug Logic Bug

    Level
    Intermediate
    Use case
    Fixing incorrect behavior
    Source
    Prompt Templates Database
    Show prompt
    I have a logic bug in my code. Expected behavior: [describe expected]. Actual behavior: [describe actual]. I've already tried: [list attempts]. Please help me debug this issue. Here is the relevant code: [paste code]

    DB-03

    Debug Performance Issues

    Level
    Slow Code
    Use case
    When things run too slowly
    Source
    Prompt Templates Database
    Show prompt
    My [app/function/page] is running very slowly.
    
    Code:
    [Paste code]
    
    Please analyze and tell me:
    1. What's causing the slowness
    2. Where the bottlenecks are
    3. How to optimize it
    4. What performance improvements I can expect

    DBT-01

    Debug Race Condition

    Level
    Advanced
    Use case
    Fixing concurrency issues
    Source
    Prompt Templates Database
    Show prompt
    I have a race condition in my [async/concurrent] code. The issue: [describe the problem]. Please analyze the code, identify the race condition, explain why it occurs, and provide a solution using proper synchronization/async patterns. [Paste code here]

    DBT-05

    Diagnose Error

    Level
    Beginner
    Use case
    Understanding errors
    Source
    Prompt Templates Database
    Show prompt
    I'm getting the following error in my [language] application. Please: explain what this error means, identify the likely causes, suggest how to fix it, and provide the corrected code if possible. Error message: [paste error and stack trace]

    DB-01

    Explain Error Messages

    Level
    Errors
    Use case
    When you have no idea what an error means
    Source
    Prompt Templates Database
    Show prompt
    I'm getting this error and I don't understand it:
    
    Error message:
    [Paste full error message and stack trace]
    
    My code:
    [Paste relevant code]
    
    Please:
    1. Explain what this error means in simple terms
    2. What's causing it
    3. How to fix it step-by-step
    4. How to prevent it in the future

    DB-02

    Find the Bug

    Level
    Logic Bug
    Use case
    Code runs but gives wrong results
    Source
    Prompt Templates Database
    Show prompt
    My code isn't working correctly.
    
    Expected behavior:
    [What should happen]
    
    Actual behavior:
    [What's actually happening]
    
    Code:
    [Paste your code]
    
    Please:
    1. Identify the bug
    2. Explain why it's happening
    3. Show me the corrected code
    4. Explain the fix

    DBT-02

    Memory Leak Investigation

    Level
    Advanced
    Use case
    Finding memory leaks
    Source
    Prompt Templates Database
    Show prompt
    I suspect a memory leak in [component/module]. Symptoms: [describe symptoms]. Please analyze the following code for potential memory leaks. Look for: unclosed resources, circular references, event listener issues, and suggest fixes. [Paste code here]

    DBT-03

    Performance Debugging

    Level
    Advanced
    Use case
    Optimizing slow code
    Source
    Prompt Templates Database
    Show prompt
    My application is experiencing performance issues with [describe the slow operation]. I've profiled the code and identified this function as the bottleneck. Please: analyze the performance issue, suggest optimizations, provide refactored code, and explain the trade-offs. [Paste slow function here]

    DB-04

    Systematic Debugging Strategy

    Level
    Strategy
    Use case
    When you don't even know where to start
    Source
    Prompt Templates Database
    Show prompt
    I have a bug but I'm not sure where to start looking.
    
    Problem:
    [Describe the issue]
    
    Code files:
    [List or paste relevant code]
    
    Please give me a debugging strategy:
    1. Where to start looking
    2. What to check first
    3. How to isolate the problem
    4. Common causes of this type of issue

    DB-05

    Understanding Weird Behavior

    Level
    Strange Bug
    Use case
    When code does something inexplicable
    Source
    Prompt Templates Database
    Show prompt
    My code is doing something strange that I can't explain:
    
    [Describe the weird behavior]
    
    Code:
    [Paste code]
    
    Please:
    1. Explain WHY this is happening
    2. Show me what's really going on step-by-step
    3. How to fix it
    4. Similar gotchas to watch out for in [language]
    ~/prompt-pack/testingVerify

    $ list TS

    [TS] Testing

    Create fixtures, unit tests, integration tests, E2E tests, and TDD workflows.

    TS-03

    E2E Tests

    Level
    Advanced
    Use case
    End-to-end testing
    Source
    Prompt Templates Database
    Show prompt
    Create an end-to-end test for [user flow/feature]. The test should simulate: [list user actions]. Use [testing framework] and include: page navigation, user interactions, form submissions, assertions for expected outcomes, and handling of async operations.

    TS-01

    Generate Test Data

    Level
    Beginner
    Use case
    Creating test fixtures
    Source
    Prompt Templates Database
    Show prompt
    Generate test data/fixtures for testing [feature/component]. Include: realistic sample data, edge cases, invalid data for negative tests, and data covering all scenarios. Format: [JSON/code/SQL]. Use cases: [describe test scenarios].

    TS-04

    Integration Tests

    Level
    Advanced
    Use case
    Testing component interactions
    Source
    Prompt Templates Database
    Show prompt
    I need to write an integration test for [describe the feature/flow]. The test should: [list steps to test]. Please generate the integration test using [testing framework]. Include: setup and teardown, mocking external services, assertions for expected behavior.

    TS-02

    TDD Workflow

    Level
    Intermediate
    Use case
    Test-driven development
    Source
    Prompt Templates Database
    Show prompt
    I'm practicing Test-Driven Development for [feature description]. Please: 1) Write failing tests that define the expected behavior, 2) Wait for my confirmation, 3) Then write the minimal implementation to make tests pass. Testing framework: [framework].

    TS-05

    Write Unit Tests

    Level
    Intermediate
    Use case
    Writing tests for a function
    Source
    Prompt Templates Database
    Show prompt
    Please write a comprehensive suite of unit tests for the following [language] function using [testing framework]. Cover: normal inputs and expected outputs, edge cases and boundary conditions, invalid inputs and error handling, and mocking external dependencies. [Paste function here]
    ~/prompt-pack/securityProtect

    $ list SC

    [SC] Security

    Write secure code from day one. Audit vulnerabilities, protect secrets, and implement auth safely.

    SC-03

    Fix Security Vulnerabilities

    Level
    Patch
    Use case
    When you've discovered a specific vuln
    Source
    Prompt Templates Database
    Show prompt
    I learned my code has [specific vulnerability - e.g., "SQL injection", "XSS"].
    
    Please:
    1. Show me exactly where the vulnerability is
    2. Explain why it's dangerous
    3. Provide the secure version
    4. Explain what you changed and why

    SC-04

    Implement Secure Authentication

    Level
    Auth
    Use case
    Adding user login to any app
    Source
    Prompt Templates Database
    Show prompt
    I need to add user authentication to my app.
    
    Please show me how to:
    1. Securely store passwords (hashing)
    2. Implement login/logout
    3. Manage user sessions safely
    4. Add password reset functionality
    
    Include security best practices and explain why each step is important.

    SC-02

    Secure a Specific Feature

    Level
    Harden
    Use case
    Building login, payments, or forms
    Source
    Prompt Templates Database
    Show prompt
    I'm building [describe feature - e.g., "a login system", "a payment form"].
    
    Please tell me:
    1. What security risks I should worry about
    2. How to implement it securely
    3. Common mistakes to avoid
    4. Security best practices for this feature
    
    Provide secure code examples.

    SC-05

    Secure Secrets & Environment Variables

    Level
    Secrets
    Use case
    When API keys are hardcoded - fix this now
    Source
    Prompt Templates Database
    Show prompt
    I have API keys and database passwords in my code. How do I secure them?
    
    My setup:
    - Deployment: [where you deploy]
    
    Please:
    1. Show me how to use environment variables
    2. How to access them in my code
    3. How to keep them out of Git
    4. Best practices for managing secrets

    SC-01

    Security Audit for Beginners

    Level
    Audit
    Use case
    Before deploying any public-facing feature
    Source
    Prompt Templates Database
    Show prompt
    Please review my code for security vulnerabilities.
    Check for:
    - SQL injection risks
    - XSS vulnerabilities
    - Authentication/authorization issues
    - Exposed secrets or sensitive data
    - Input validation problems
    
    Explain each issue in beginner-friendly terms and show how to fix it.
    ~/prompt-pack/niche-appsApp Ideas

    $ list NW

    [NW] Niche Website Prompts

    Specialized app blueprints. Each is a product spec you can paste directly into Claude Code.

    NW-10

    Artisan Marketplace

    Level
    E-commerce
    Use case
    Handmade goods platform with seller storefronts & reviews
    Source
    Niche Website Prompts
    Show prompt
    Build an online marketplace for handmade and artisan goods where:
    - Sellers create shop profiles and list products with photos and descriptions
    - Product categories include jewelry, art, home decor, clothing, etc.
    - Advanced search and filtering by price, category, materials, and location
    - Shopping cart and secure checkout
    - Seller dashboard with inventory management and order tracking
    - Buyer accounts with order history and favorites
    - Review system for products and sellers
    - Featured seller spotlights and curated collections
    - Wholesale inquiry system for bulk orders
    - Gift wrapping and personalization options
    - Story pages where sellers share their craft process
    
    Emphasize the handmade, unique nature of products with beautiful product photography.

    NX-09

    Book Club Community

    Level
    Community
    Use case
    Reader groups with meetings, discussions & recommendations
    Source
    Niche Website Prompts
    Show prompt
    Create a book club platform where:
    - Users can create or join book clubs (public or private)
    - Each club has a reading schedule and discussion threads
    - Book database with ratings, reviews, and recommendations
    - Reading lists and "want to read" shelves
    - Discussion prompts and questions for each book
    - Virtual meeting integration for online book clubs
    - Reading challenges and goals
    - Author Q&A events
    - Book swap/exchange system between members
    - Personalized book recommendations based on reading history
    
    Include social features like following other readers and seeing what friends are reading.

    NX-11

    Coworking Space Booking

    Level
    Booking
    Use case
    Workspace booking with memberships, rooms & day passes
    Source
    Niche Website Prompts
    Show prompt
    Create a coworking space booking platform where:
    - Users can view available spaces (hot desks, private offices, meeting rooms)
    - Real-time availability calendar
    - Hourly, daily, and monthly booking options
    - Virtual tour of the space with photos
    - Amenities list (WiFi, coffee, printing, etc.)
    - Member profiles and networking directory
    - Event calendar for workshops and networking events
    - Check-in system with access codes
    - Billing and invoice management
    - Community board for members to connect
    - Visitor management for guests
    
    Include different membership tiers with varying access levels and perks.

    NX-23

    Custom Gift Creator

    Level
    E-commerce
    Use case
    Personalized gift builder with previews, occasions and checkout
    Source
    Niche Website Prompts
    Show prompt
    Create a custom gift design platform where customers can:
    - Choose from product templates (mugs, t-shirts, posters, etc.)
    - Upload photos and add text with various fonts
    - Use design tools to create personalized gifts
    - Preview products in 3D before ordering
    - Save designs for later or reorder
    - Gift wrapping and direct shipping to recipients
    - Occasion-based templates (birthdays, weddings, holidays)
    - Bulk ordering for corporate gifts
    - Design collaboration for group gifts
    - Gift recommendations quiz
    - Order tracking and delivery updates
    - Customer gallery showcasing created gifts
    
    The platform should make custom gift creation fun, easy, and accessible to everyone.

    NX-26

    Escape Room Booking

    Level
    Entertainment
    Use case
    Escape room reservations with waivers, teams and leaderboards
    Source
    Niche Website Prompts
    Show prompt
    Build an escape room booking website that includes:
    - Room descriptions with themes, difficulty levels, and player capacity
    - Real-time availability calendar
    - Group booking with team member management
    - Gift certificate purchasing
    - Corporate team building packages
    - Leaderboard showing fastest escape times
    - Photo gallery from completed rooms
    - Hint system during games (if applicable)
    - Post-game surveys and feedback
    - Birthday party and special event packages
    - Loyalty program for repeat customers
    - Waiver and safety information
    - Location and parking information
    
    Create excitement and make booking seamless for this entertainment experience.

    NW-04

    Event Ticketing Platform

    Level
    Events
    Use case
    Multi-ticket events with QR codes, waitlists & analytics
    Source
    Niche Website Prompts
    Show prompt
    Create an event ticketing website where:
    - Event organizers can create and manage events with multiple ticket types
    - Users can browse upcoming events by category, date, and location
    - Ticket purchasing with seat selection for venue events
    - QR code ticket generation for easy check-in
    - Email confirmations and ticket delivery
    - Event organizer dashboard showing sales, attendees, and analytics
    - Refund and transfer policies management
    - Early bird pricing and discount codes
    - Waitlist functionality for sold-out events
    - Integration with calendar apps for adding events
    
    The platform should handle both free and paid events with secure payment processing.

    NW-05

    Fitness Challenge Tracker

    Level
    Fitness
    Use case
    Community challenges with leaderboards & badges
    Source
    Niche Website Prompts
    Show prompt
    Build a fitness challenge website where:
    - Users can join fitness challenges (30-day yoga, running streaks, weight loss, etc.)
    - Daily check-ins to log workouts and progress
    - Progress tracking with charts and statistics
    - Community feed where participants share updates and photos
    - Leaderboards for competitive challenges
    - Achievement badges and milestones
    - Private groups for friends to challenge each other
    - Customizable challenges with different goals and durations
    - Reminder notifications for daily check-ins
    - Before/after photo galleries
    
    Include social features like commenting and encouraging other participants.

    NW-02

    Freelance Portfolio & Booking

    Level
    Portfolio
    Use case
    Photographer portfolio with client booking + galleries
    Source
    Niche Website Prompts
    Show prompt
    Create a portfolio website for freelance photographers that includes:
    - A stunning gallery showcasing work organized by categories (weddings, portraits, events, etc.)
    - Client testimonials and reviews
    - Booking system where clients can check availability and book sessions
    - Package pricing display with customizable options
    - Contact form with automatic email notifications
    - Blog for sharing photography tips and recent shoots
    - Password-protected client galleries for delivering photos
    - Integration with calendar for availability management
    
    The design should be minimalist and let the photography be the hero. Include a mobile-responsive gallery viewer.

    NX-27

    Genealogy Research Platform

    Level
    Research
    Use case
    Family history trees, records, stories and collaboration
    Source
    Niche Website Prompts
    Show prompt
    Create a family history research platform where users can:
    - Build interactive family trees with photos and stories
    - Upload and organize historical documents and photos
    - Collaborate with family members on shared trees
    - DNA match integration for finding relatives
    - Historical records search (census, birth, death, marriage)
    - Timeline view of family history events
    - Story preservation with audio/video recordings
    - Surname research and origin information
    - Migration pattern mapping
    - Family reunion planning tools
    - Privacy controls for sensitive information
    - Print family tree charts and books
    - Research tips and genealogy resources
    
    Help people discover and preserve their family heritage.

    NW-12

    Hobby Class Marketplace

    Level
    Classes
    Use case
    In-person & virtual classes with instructor dashboards
    Source
    Niche Website Prompts
    Show prompt
    Build a marketplace for hobby classes and workshops where:
    - Instructors offer classes (pottery, painting, cooking, woodworking, etc.)
    - Students browse classes by category, location, and schedule
    - Class pages show curriculum, materials needed, and instructor bio
    - Booking and payment for single classes or course series
    - Virtual and in-person class options
    - Class size limits and waitlist functionality
    - Student reviews and ratings
    - Instructor dashboard with attendance and earnings
    - Materials list sent to students before class
    - Photo galleries from past classes
    - Gift certificates for classes
    - Private group bookings for parties
    - Skill level indicators for classes
    
    Make it easy for people to discover and learn new hobbies from passionate instructors.

    NX-18

    Home Renovation Project Manager

    Level
    Home
    Use case
    Renovation tracking with contractors, budgets and timelines
    Source
    Niche Website Prompts
    Show prompt
    Build a home renovation project management platform where homeowners can:
    - Create renovation projects with rooms and tasks
    - Budget planning and expense tracking
    - Before/after photo galleries
    - Contractor directory with reviews and ratings
    - Request quotes from multiple contractors
    - Project timeline with milestones
    - Document storage for permits, contracts, and receipts
    - Inspiration gallery with design ideas
    - Product wishlist for materials and furnishings
    - Progress updates and photo documentation
    - Checklist templates for different renovation types
    - Cost calculator for common projects
    
    Help homeowners stay organized and on budget throughout their renovation journey.

    NX-19

    Language Exchange Platform

    Level
    Education
    Use case
    Peer language practice with matching, sessions and progress
    Source
    Niche Website Prompts
    Show prompt
    Create a language learning exchange website where:
    - Users create profiles with native language and languages they're learning
    - Matching system pairs users for language exchange
    - Video call integration for conversation practice
    - Text chat with translation assistance
    - Scheduling system for regular practice sessions
    - Conversation topics and prompts library
    - Progress tracking for language learning goals
    - Cultural exchange features (share traditions, recipes, music)
    - Language resources and learning materials
    - Community forums by language
    - Feedback and correction tools during conversations
    - Achievement badges for milestones
    
    Make it easy for people to find practice partners and improve their language skills.

    NX-25

    Local Food Co-op

    Level
    Co-op
    Use case
    Member food co-op ordering, pickup and producer profiles
    Source
    Niche Website Prompts
    Show prompt
    Create a food cooperative website where members can:
    - Browse weekly produce and product offerings from local farms
    - Place orders for pickup at designated locations
    - Manage membership and payment information
    - View farm profiles and farming practices
    - Recipe suggestions based on available produce
    - Volunteer shift sign-ups for co-op operations
    - Forum for members to share recipes and tips
    - Seasonal availability calendar
    - Bulk ordering options for pantry staples
    - Special orders for specific items
    - Educational content about sustainable agriculture
    - Member referral program
    
    Support local agriculture and make fresh, local food accessible to the community.

    NX-03

    Local Service Directory

    Level
    Directory
    Use case
    City service directory with listings, reviews, quotes & maps
    Source
    Niche Website Prompts
    Show prompt
    Build a local service directory website for my city where:
    - Businesses can create profiles with descriptions, photos, hours, and contact info
    - Users can search and filter by service category, location, and ratings
    - Each business has a dedicated page with reviews and ratings
    - Users can claim and verify their business listings
    - Featured/promoted listings appear at the top of search results
    - Map integration shows business locations
    - Users can request quotes directly through the platform
    - Email notifications for new reviews and quote requests
    
    Include a simple admin panel to manage listings and handle verification requests.

    NX-10

    Meal Prep Service

    Level
    Food
    Use case
    Prepared meal ordering with subscriptions and dietary filters
    Source
    Niche Website Prompts
    Show prompt
    Build a meal prep delivery service website with:
    - Weekly menu display with nutritional information
    - Meal plan selection (number of meals, servings, dietary preferences)
    - Subscription management with flexible delivery schedules
    - One-time orders and subscription options
    - Delivery zone checker by zip code
    - Meal customization options (swap ingredients, adjust portions)
    - Nutritionist-approved meal plans for different goals (weight loss, muscle gain, etc.)
    - Customer account with order history and favorites
    - Referral program for customer acquisition
    - Gift card purchasing
    
    The site should emphasize fresh ingredients, convenience, and health benefits with appetizing food photography.

    NW-08

    Mental Wellness Journal

    Level
    Wellness
    Use case
    Mood tracking, guided prompts & encrypted private entries
    Source
    Niche Website Prompts
    Show prompt
    Create a mental wellness journaling platform with:
    - Daily mood tracking with customizable emotions
    - Guided journaling prompts for reflection
    - Gratitude journal with daily entries
    - Goal setting and progress tracking
    - Meditation timer with ambient sounds
    - Habit tracker for wellness routines
    - Mood patterns and insights over time with visualizations
    - Private and secure entries with encryption
    - Therapist sharing option for users in therapy
    - Affirmation library and daily affirmations
    - Crisis resources and helpline information
    - Export journal entries as PDF
    
    The design should be calming and supportive, emphasizing privacy and mental health.

    NX-24

    Music Teacher Studio Management

    Level
    Music
    Use case
    Lesson scheduling, billing and student practice tracking
    Source
    Niche Website Prompts
    Show prompt
    I want to build a studio management platform for music teachers with:
    - Student profiles with lesson history and progress notes
    - Scheduling system with recurring lessons and makeup classes
    - Practice assignment tracking with audio/video uploads
    - Recital and performance event planning
    - Billing and payment processing with automatic invoicing
    - Parent communication portal
    - Digital sheet music library
    - Practice time tracking for students
    - Progress reports and certificates
    - Studio policy and handbook access
    - Waitlist management for new students
    - Multi-teacher support for larger studios
    - Calendar sync with personal calendars
    
    Help music teachers run their studios efficiently and focus on teaching.

    NX-15

    Neighborhood Social Network

    Level
    Local
    Use case
    Local neighbor network with groups, events and safety alerts
    Source
    Niche Website Prompts
    Show prompt
    Create a private social network for neighborhoods where residents can:
    - Verify their address to join their neighborhood group
    - Post updates, questions, and recommendations
    - Organize local events and gatherings
    - Buy, sell, and give away items to neighbors
    - Report issues like potholes or suspicious activity
    - Find and offer local services (babysitting, lawn care, etc.)
    - Share safety alerts and crime reports
    - Create interest-based subgroups (book club, running group, etc.)
    - Neighbor directory with opt-in contact information
    - Local business directory and recommendations
    - Lost and found for pets and items
    
    The platform should foster community connection and mutual support.

    NX-22

    Nonprofit Volunteer Matching

    Level
    Nonprofit
    Use case
    Match volunteers with causes, events and skill-based needs
    Source
    Niche Website Prompts
    Show prompt
    Build a volunteer matching platform where:
    - Nonprofits post volunteer opportunities with details and requirements
    - Volunteers create profiles with skills, interests, and availability
    - Smart matching suggests opportunities based on volunteer preferences
    - Calendar integration for scheduling volunteer shifts
    - Hour tracking and volunteer impact statistics
    - Volunteer appreciation features (badges, certificates, leaderboards)
    - Group volunteering for teams and families
    - Virtual volunteering opportunities
    - Background check integration for sensitive roles
    - Communication tools between nonprofits and volunteers
    - Nonprofit profiles with mission and impact stories
    - Volunteer testimonials and stories
    
    Make it easy for people to find meaningful volunteer work and for nonprofits to recruit help.

    NW-03

    Online Course Platform

    Level
    EdTech
    Use case
    Full LMS with video, quizzes, certs & revenue split
    Source
    Niche Website Prompts
    Show prompt
    I want to create an online learning platform where:
    - Instructors can create and sell courses with video lessons, quizzes, and downloadable resources
    - Students can browse courses by category, rating, and price
    - Course pages show curriculum, instructor bio, and student reviews
    - Video player with progress tracking and note-taking features
    - Quiz system with instant feedback and score tracking
    - Certificate generation upon course completion
    - Discussion forums for each course
    - Student dashboard showing enrolled courses and progress
    - Instructor dashboard with analytics on student engagement
    
    Include a payment system where instructors get a percentage of sales and the platform takes a commission.

    NX-07

    Pet Adoption Platform

    Level
    Pets
    Use case
    Shelter/rescue listings with applications, alerts & donations
    Source
    Niche Website Prompts
    Show prompt
    Create a pet adoption website that includes:
    - Searchable database of adoptable pets with photos and detailed profiles
    - Filter by species, breed, age, size, and special needs
    - Each pet has a story, personality description, and adoption requirements
    - Application process for potential adopters
    - Shelter/rescue organization profiles
    - Success stories section with adopted pets
    - Foster program information and sign-up
    - Donation system to support shelters
    - Email alerts for new pets matching user preferences
    - Resources section with pet care guides
    
    The design should be warm and inviting with lots of adorable pet photos.

    NW-09

    Plant Care Community

    Level
    Community
    Use case
    Plant ID, care reminders & community marketplace
    Source
    Niche Website Prompts
    Show prompt
    Create a plant care website and community where users can:
    - Identify plants by uploading photos
    - Access care guides for thousands of plant species
    - Track their plant collection with watering schedules
    - Get reminders for watering, fertilizing, and repotting
    - Diagnose plant problems with photo analysis
    - Connect with other plant enthusiasts in forums
    - Share photos of their plants and get feedback
    - Buy and sell plant cuttings and rare plants
    - Find local plant shops and nurseries
    - Learn through articles and video tutorials
    - Create wish lists for plants they want
    - Track plant growth with photo timelines
    
    The platform should be educational, supportive, and celebrate the joy of plant parenthood.

    NX-13

    Podcast Directory & Player

    Level
    Media
    Use case
    Podcast discovery app with player, playlists & reviews
    Source
    Niche Website Prompts
    Show prompt
    Create a podcast discovery platform that features:
    - Searchable directory of podcasts by category, topic, and popularity
    - Podcast pages with episodes, show notes, and transcripts
    - Built-in web player with playback speed control and bookmarking
    - Personalized recommendations based on listening history
    - Subscription system to follow favorite podcasts
    - Playlist creation for episodes across different shows
    - Top charts and trending podcasts
    - Podcast creator tools to submit and manage their shows
    - Episode comments and discussions
    - Share clips from episodes on social media
    - Newsletter with weekly podcast recommendations
    
    The platform should make podcast discovery easy and enjoyable.

    NW-01

    Recipe Sharing Platform

    Level
    Food
    Use case
    Food community with search, collections & meal planning
    Source
    Niche Website Prompts
    Show prompt
    I want to build a recipe sharing website where users can:
    - Submit their own recipes with photos
    - Search and filter recipes by cuisine, dietary restrictions, cooking time, and difficulty
    - Save favorite recipes to personal collections
    - Rate and review recipes
    - Create shopping lists from recipe ingredients
    - Follow other users and see their latest recipes
    - Print recipe cards in a clean format
    
    The site should have a beautiful, food-focused design with large imagery. Include features for meal planning where users can plan their weekly meals and generate combined shopping lists.

    NX-29

    Senior Care Coordination

    Level
    Care
    Use case
    Family care coordination with medication, appointments and tasks
    Source
    Niche Website Prompts
    Show prompt
    Create a senior care coordination platform where:
    - Families can manage care for elderly loved ones
    - Medication tracking with reminders and refill alerts
    - Appointment scheduling and transportation coordination
    - Caregiver scheduling and task assignment
    - Health information and medical history storage
    - Daily check-in system for remote monitoring
    - Emergency contact information and protocols
    - Activity and social engagement planning
    - Meal planning and dietary tracking
    - Financial management and bill paying assistance
    - Care team communication (family, doctors, caregivers)
    - Document storage for legal and medical papers
    - Resource directory for senior services
    
    Support families in providing comprehensive, coordinated care for seniors.

    NW-11

    Sustainable Living Marketplace

    Level
    Green Tech
    Use case
    Eco-vetted products with impact tracking & carbon calc
    Source
    Niche Website Prompts
    Show prompt
    I want to build an eco-friendly marketplace featuring:
    - Products vetted for sustainability (zero waste, organic, fair trade)
    - Detailed sustainability ratings and certifications
    - Product categories: home, personal care, food, fashion, etc.
    - Educational content about sustainable living
    - Carbon footprint calculator for purchases
    - Subscription boxes for eco-friendly products
    - Refill station locator for package-free shopping
    - DIY tutorials for making sustainable products
    - Community forum for sharing tips and swaps
    - Brand transparency with supply chain information
    - Impact tracking showing environmental savings
    - Gift guides for conscious consumers
    
    Promote sustainable consumption and make eco-friendly choices accessible.

    NW-07

    Travel Itinerary Planner

    Level
    Travel
    Use case
    Collaborative trip planning with maps, budget & offline
    Source
    Niche Website Prompts
    Show prompt
    I want to build a travel planning website where users can:
    - Create detailed trip itineraries with daily activities
    - Add flights, hotels, restaurants, and attractions
    - Collaborative planning where multiple travelers can edit
    - Budget tracking for trip expenses
    - Packing list generator based on destination and activities
    - Map view showing all planned locations
    - Offline access to itineraries via mobile app
    - Travel inspiration blog with destination guides
    - Share itineraries publicly for others to use as templates
    - Integration with booking sites for reservations
    - Weather forecasts for travel dates
    - Document storage for confirmations and tickets
    
    Include beautiful destination imagery and an intuitive drag-and-drop interface for planning.

    NW-06

    Tutoring Marketplace

    Level
    Marketplace
    Use case
    Two-sided marketplace with video calls & escrow
    Source
    Niche Website Prompts
    Show prompt
    I want to build a tutoring marketplace where:
    - Tutors create profiles with subjects, experience, rates, and availability
    - Students can search for tutors by subject, grade level, location, and price
    - Booking system with calendar integration
    - Video call integration for online tutoring sessions
    - Payment processing with escrow (release payment after session)
    - Review and rating system
    - Session notes and progress tracking
    - Resource sharing between tutors and students
    - Tutor verification and background checks
    - Package deals for multiple sessions
    - Cancellation and rescheduling policies
    
    Include messaging system for tutors and students to communicate before booking.

    NX-20

    Vintage Clothing Resale

    Level
    Resale
    Use case
    Curated resale shop with seller tools and authenticity signals
    Source
    Niche Website Prompts
    Show prompt
    I want to build a vintage clothing resale platform featuring:
    - Seller accounts to list vintage clothing with detailed measurements
    - High-quality photo galleries for each item
    - Search by era (60s, 70s, 80s, 90s), style, size, and brand
    - Condition ratings and detailed descriptions
    - Authentication services for designer vintage pieces
    - Styling guides and outfit inspiration
    - Wishlist and saved searches with email alerts
    - Secure payment and shipping integration
    - Seller ratings and buyer protection
    - Sustainability information highlighting eco-friendly fashion
    - Virtual try-on using AR technology
    - Curated collections by style experts
    
    Emphasize the unique, sustainable, and fashionable aspects of vintage clothing.

    NX-08

    Wedding Planning Hub

    Level
    Events
    Use case
    Vendor planning hub with budgets, timelines & guest tools
    Source
    Niche Website Prompts
    Show prompt
    I want to build a wedding planning website where couples can:
    - Create a wedding website with their story, photos, and event details
    - Manage guest lists with RSVP tracking
    - Send digital invitations and save-the-dates
    - Create gift registries from multiple stores
    - Plan timelines and checklists for wedding tasks
    - Budget tracker for all wedding expenses
    - Vendor directory with reviews (photographers, venues, caterers, etc.)
    - Seating chart planner with drag-and-drop interface
    - Photo sharing gallery where guests can upload photos
    - Thank you card tracker
    
    Include beautiful templates for wedding websites that couples can customize.

    $ ask-about --prompt-pack

    [+] Want this turned into a workflow?

    Bring one prompt, project, or workflow idea. I can help turn it into a practical Claude Code plan your team can reuse.

    Send This to David

    $ email --prompt-pack

    Send the workflow idea by email.

    Paste the prompt, project idea, or workflow you want help turning into a repeatable plan.

    Email dkyazze@icloud.com

    A short note is enough. I will reply with the simplest useful next step.