write-a-prd

Installation
SKILL.md

This skill will be invoked when the user wants to create a PRD. You may skip steps if you don't consider them necessary.

The target stack is .NET (C# / ASP.NET Core) for backend and web UI (Razor Pages, Blazor, or a JS frontend). The scope can be any part of the app: domain classes, interfaces, API endpoints, services, UI components, database schema, etc.

  1. Ask the user for a long, detailed description of the problem they want to solve and any potential ideas for solutions.

  2. Explore the repo to verify their assertions and understand the current state of the codebase. Pay attention to:

    • Project structure (solution layout, layers: Domain, Application, Infrastructure, Web)
    • Existing patterns (CQRS, MediatR, repositories, minimal APIs vs controllers, etc.)
    • UI approach (Razor Pages, Blazor, or separate frontend)
    • ORM and database (EF Core, Dapper, etc.)
  3. Interview the user relentlessly about every aspect of this plan until you reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For .NET web apps, make sure to cover:

    • Which layer(s) are affected (domain model, application logic, infrastructure, API, UI)
    • Whether new endpoints, pages, or components are needed
    • Auth/authorization requirements
    • Any schema or migration changes
Related skills
Installs
7
Repository
fboucher/skills
GitHub Stars
1
First Seen
Mar 25, 2026