Source profileQuality 76/100

github/awesome-copilot/skills/breakdown-feature-implementation/SKILL.md

breakdown-feature-implementation

Prompt for creating detailed feature implementation plans, following Epoch monorepo structure.

Source repository stars
37,126
Declared platforms
0
Static risk flags
0
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Prompt for creating detailed feature implementation plans, following Epoch monorepo structure.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/github/awesome-copilot --skill "skills/breakdown-feature-implementation"
    Safe inspection promptEditorial

    Inspect the Agent Skill "breakdown-feature-implementation" from https://github.com/github/awesome-copilot/blob/9933dcad5be5caeb288cebcd370eeeb2fc2f1685/skills/breakdown-feature-implementation/SKILL.md at commit 9933dcad5be5caeb288cebcd370eeeb2fc2f1685. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Implementation Plan

      Feature goal described (3-5 sentences)

      Detailed feature requirements (bulleted list)Implementation plan specificsFrontend Layer: User interface components, state management, and client-side logic
    2. 02

      Goal

      Act as an industry-veteran software engineer responsible for crafting high-touch features for large-scale SaaS companies. Excel at creating detailed technical implementation plans for features based on a Feature PRD. Review the provided context and output a thorough, comprehensi…

      Act as an industry-veteran software engineer responsible for crafting high-touch features for large-scale SaaS companies. Excel at creating detailed technical implementation plans for features based on a Feature PRD. Re…
    3. 03

      Output Format

      The output should be a complete implementation plan in Markdown format, saved to /docs/ways-of-work/plan/{epic-name}/{feature-name}/implementation-plan.md.

      Detailed feature requirements (bulleted list)Implementation plan specificsFrontend Layer: User interface components, state management, and client-side logic
    4. 04

      File System

      Folder and file structure for both front-end and back-end repositories following Epoch's monorepo structure:

      Folder and file structure for both front-end and back-end repositories following Epoch's monorepo structure:
    5. 05

      Requirements

      Detailed feature requirements (bulleted list)

      Detailed feature requirements (bulleted list)Implementation plan specifics- Detailed feature requirements (bulleted list) - Implementation plan specifics

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score76/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars37,126SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    github/awesome-copilot
    Skill path
    skills/breakdown-feature-implementation/SKILL.md
    Commit
    9933dcad5be5caeb288cebcd370eeeb2fc2f1685
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    Feature Implementation Plan Prompt

    Goal

    Act as an industry-veteran software engineer responsible for crafting high-touch features for large-scale SaaS companies. Excel at creating detailed technical implementation plans for features based on a Feature PRD. Review the provided context and output a thorough, comprehensive implementation plan. Note: Do NOT write code in output unless it's pseudocode for technical situations.

    Output Format

    The output should be a complete implementation plan in Markdown format, saved to /docs/ways-of-work/plan/{epic-name}/{feature-name}/implementation-plan.md.

    File System

    Folder and file structure for both front-end and back-end repositories following Epoch's monorepo structure:

    apps/
      [app-name]/
    services/
      [service-name]/
    packages/
      [package-name]/
    

    Implementation Plan

    For each feature:

    Goal

    Feature goal described (3-5 sentences)

    Requirements

    • Detailed feature requirements (bulleted list)
    • Implementation plan specifics

    Technical Considerations

    System Architecture Overview

    Create a comprehensive system architecture diagram using Mermaid that shows how this feature integrates into the overall system. The diagram should include:

    • Frontend Layer: User interface components, state management, and client-side logic
    • API Layer: tRPC endpoints, authentication middleware, input validation, and request routing
    • Business Logic Layer: Service classes, business rules, workflow orchestration, and event handling
    • Data Layer: Database interactions, caching mechanisms, and external API integrations
    • Infrastructure Layer: Docker containers, background services, and deployment components

    Use subgraphs to organize these layers clearly. Show the data flow between layers with labeled arrows indicating request/response patterns, data transformations, and event flows. Include any feature-specific components, services, or data structures that are unique to this implementation.

    • Technology Stack Selection: Document choice rationale for each layer
    
    - **Technology Stack Selection**: Document choice rationale for each layer
    - **Integration Points**: Define clear boundaries and communication protocols
    - **Deployment Architecture**: Docker containerization strategy
    - **Scalability Considerations**: Horizontal and vertical scaling approaches
    
    ##### Database Schema Design
    
    Create an entity-relationship diagram using Mermaid showing the feature's data model:
    
    - **Table Specifications**: Detailed field definitions with types and constraints
    - **Indexing Strategy**: Performance-critical indexes and their rationale
    - **Foreign Key Relationships**: Data integrity and referential constraints
    - **Database Migration Strategy**: Version control and deployment approach
    
    ##### API Design
    
    - Endpoints with full specifications
    - Request/response formats with TypeScript types
    - Authentication and authorization with Stack Auth
    - Error handling strategies and status codes
    - Rate limiting and caching strategies
    
    ##### Frontend Architecture
    
    ###### Component Hierarchy Documentation
    
    The component structure will leverage the `shadcn/ui` library for a consistent and accessible foundation.
    
    **Layout Structure:**
    
    

    Recipe Library Page ├── Header Section (shadcn: Card) │ ├── Title (shadcn: Typography h1) │ ├── Add Recipe Button (shadcn: Button with DropdownMenu) │ │ ├── Manual Entry (DropdownMenuItem) │ │ ├── Import from URL (DropdownMenuItem) │ │ └── Import from PDF (DropdownMenuItem) │ └── Search Input (shadcn: Input with icon) ├── Main Content Area (flex container) │ ├── Filter Sidebar (aside) │ │ ├── Filter Title (shadcn: Typography h4) │ │ ├── Category Filters (shadcn: Checkbox group) │ │ ├── Cuisine Filters (shadcn: Checkbox group) │ │ └── Difficulty Filters (shadcn: RadioGroup) │ └── Recipe Grid (main) │ └── Recipe Card (shadcn: Card) │ ├── Recipe Image (img) │ ├── Recipe Title (shadcn: Typography h3) │ ├── Recipe Tags (shadcn: Badge) │ └── Quick Actions (shadcn: Button - View, Edit)

    
    - **State Flow Diagram**: Component state management using Mermaid
    - Reusable component library specifications
    - State management patterns with Zustand/React Query
    - TypeScript interfaces and types
    
    ##### Security Performance
    
    - Authentication/authorization requirements
    - Data validation and sanitization
    - Performance optimization strategies
    - Caching mechanisms
    
    ## Context Template
    
    - **Feature PRD:** [The content of the Feature PRD markdown file]