Generate AI Product Requirement Document (PRD) Draft
Generates a comprehensive first draft of a Product Requirement Document (PRD) using AI, leveraging specified inputs to define features, user stories, and technical considerations.
תחום: ניהול מוצר
מתי להשתמש
Use this skill when initiating a new product feature or product. This expedites the PRD creation process by providing a structured, AI-generated starting point.
תגיות: product-management, requirements-gathering, ai-drafting, prd, product-development
SKILL.md
--- name: Generate AI Product Requirement Document (PRD) Draft description: Generates a comprehensive first draft of a Product Requirement Document (PRD) using AI, leveraging specified inputs to define features, user stories, and technical considerations. --- ## Overview This skill uses AI to generate an initial draft of a Product Requirement Document (PRD). It takes key inputs such as the product idea, target audience, core problem, and high-level features to create a structured document that product managers can then refine and expand upon. This accelerates the early stages of product development by automating the initial documentation grunt work. ## When to use Invoke this skill when you are starting to define a new product, feature, or enhancement. It's particularly useful for quickly articulating the initial vision and requirements to stakeholders, or for providing a solid foundation before diving into detailed specifications. ## How it works 1. **Provide High-Level Product Information:** The user provides core details about the product or feature, including: * `product_idea`: A concise description of the product or feature. * `target_audience`: Who is this product for? * `core_problem_solved`: What fundamental problem does this product address? * `key_features_list`: A bulleted list of 3-5 essential features. * `success_metrics`: How will the success of this product be measured? * `competitive_landscape` (optional): Brief notes on existing competitors or alternatives. 2. **AI Generates PRD Structure:** The AI uses the provided information to craft a standard PRD structure, including sections like: * Introduction/Executive Summary * Goals & Objectives * User Stories (based on features) * Functional Requirements * Non-Functional Requirements (e.g., performance, security) * Technical Considerations/Assumptions * Success Metrics * Future Considerations 3. **Populate Content:** The AI fills in each section with relevant details derived from the user's input, expanding on features, suggesting user stories, and outlining potential technical challenges or dependencies. 4. **Review and Refine:** The generated PRD draft is presented to the user for review. The user can then iterate, add more specifics, collaborate with engineering, and finalize the document. ## Example usage To use this skill, provide the core product details: ```python product_idea = "A mobile app that helps remote teams manage asynchronous project updates efficiently." target_audience = "Software development teams, marketing agencies, and consultancies with distributed members." core_problem_solved = "Lack of clarity and context in asynchronous communications, leading to missed updates and unproductive meetings." key_features_list = [ "Asynchronous video updates (max 3 mins)", "AI-powered transcriptions and summaries", "Threaded comments and reactions on updates", "Integrations with popular project management tools (Jira, Asana)", "Personalized daily digest of relevant updates", ] success_metrics = [ "Increase in team productivity by 15%", "Reduction in weekly sync meetings by 20%", "User engagement rate (daily active users)", ] competitive_landscape = "Loom, Slack, Microsoft Teams, but none focus exclusively on structured asynchronous video updates for project teams." print(generate_ai_prd_draft( product_idea=product_idea, target_audience=target_audience, core_problem_solved=core_problem_solved, key_features_list=key_features_list, success_metrics=success_metrics, competitive_landscape=competitive_landscape )) ``` ## References * **Salesforce Launches Headless 360 To Enable Agentic Workflows**: This indicates a trend towards programmable systems and AI agents taking on more structured tasks, which this PRD generation skill leverages. (Referenced from provided sources) * **The Product Manager's Guide to AI**: General best practices for product managers leveraging AI in their workflows. (Hypothetical reference, but relevant to the domain and current trends) * **Effective PRD Writing**: Standard guidelines for creating comprehensive and actionable Product Requirement Documents. (General product management best practice)