product-delivery
Product delivery agent with three specialized roles -- Product Owner, Scrum Bag, and Data Analyst. Auto-detects the relevant role and spawns a role-scoped sub-agent with only the relevant reference files. Triggers on phrases like "write user stories", "prioritize backlog", "acceptance criteria", "create PRD", "decompose epic", "sprint goal", "product roadmap", "definition of done", "MoSCoW", "RICE score", "product owner", "retrospective", "retro", "process improvement", "velocity", "burndown", "ceremony", "standup", "sprint review", "impediment", "team health", "agile maturity", "scrum master", "agile coach", "kanban", "WIP limit", "cycle time", "analytics", "metrics", "KPI", "dashboard", "A/B test", "experiment", "data quality", "reporting", "funnel", "cohort", "retention", "HEART framework", "AARRR", "OKR metrics".
What this skill does
# Product Delivery Agent ## Design Principle: Role Context Isolation This skill keeps role-specific knowledge **out of the main context window**. When a product delivery task is requested, the relevant role is detected, only the corresponding reference file(s) are loaded, and a sub-agent is spawned with that isolated context. The main context receives only the finished artifact. Product delivery tasks can span roles -- sprint planning involves both Product Owner and Scrum Bag concerns, and metrics definition may involve both Data Analyst and Product Owner. When a task spans roles, multiple overlapping references are loaded into a single sub-agent. --- ## Phase 1: Role Detection Detect the relevant role from (in priority order): 1. **Explicit role mention** -- "as a product owner", "scrum master perspective", "data analyst" 2. **Task type signals** -- see routing tables below 3. **Domain signals** -- story/backlog/PRD keywords route to Product Owner; ceremony/process/velocity keywords route to Scrum Bag; metrics/analytics/experiment keywords route to Data Analyst **If ambiguous, ask before proceeding.** Do not assume. **Declare before every task:** > `Role: [ROLE] | Task: [TYPE] | References: [list of reference files]` --- ## Phase 2: Sub-Agent Invocation **For every product delivery task, follow these steps exactly -- do not skip:** 1. Detect the role and task type (Phase 1) 2. Read **only** the relevant reference file(s) from the routing table -- do NOT read all reference files 3. Spawn a sub-agent using the `Agent` tool with the prompt template below 4. Return the sub-agent's output directly to the user **Do not inline role-specific knowledge into the main context.** The sub-agent is the execution boundary for all role-specific reasoning. ### Sub-Agent Prompt Template ``` You are an expert [ROLE]. Apply these principles and patterns to everything you produce: --- [PASTE FULL CONTENTS OF EACH RELEVANT REFERENCE FILE -- separated by --- if multiple] --- ## Task [TASK TYPE]: [DESCRIBE WHAT THE USER WANTS] ## Context [Product/team, constraints, existing artifacts, sprint context, business drivers, related artifacts] ## Output Requirements Produce the pattern artifact, explicit rationale, stated assumptions, open questions needing human decision, and next steps. If modifying existing files, use Read, Edit, Write, Glob, and Grep tools directly. ``` --- ## Role -> Reference Mapping | Role | Reference Files | |------|----------------| | **Product Owner** | user-stories.md, prioritization-frameworks.md, backlog-management.md, stakeholder-templates.md | | **Scrum Bag** | retrospective-formats.md, agile-metrics.md, facilitation-patterns.md, process-improvement.md | | **Data Analyst** | analytics-patterns.md, metrics-frameworks.md, dashboard-design.md, experimentation.md | --- ## Task Type Routing Tables ### Product Owner Tasks | Request Signal | Task Type | Primary Artifact | References Loaded | |---|---|---|---| | "user story", "as a user", "story" | Story Writing | User Story + Acceptance Criteria | user-stories.md | | "epic", "feature", "decompose", "break down" | Epic Decomposition | Epic -> Stories breakdown | user-stories.md, backlog-management.md | | "backlog", "prioritize", "order", "rank" | Backlog Management | Ordered backlog with rationale | backlog-management.md, prioritization-frameworks.md | | "PRD", "requirements doc", "product spec" | PRD Authoring | Structured PRD | user-stories.md, stakeholder-templates.md | | "sprint", "iteration", "sprint goal", "capacity" | Sprint Planning | Sprint goal + committed stories | backlog-management.md | | "roadmap", "quarter", "initiative", "OKR" | Roadmap Planning | Roadmap with priorities and outcomes | stakeholder-templates.md | | "stakeholder", "update", "announcement", "exec" | Stakeholder Comms | Communication artifact | stakeholder-templates.md | | "DoD", "definition of done", "definition of ready" | Standards Definition | DoD / DoR checklist | backlog-management.md | | "RICE", "MoSCoW", "WSJF", "score", "prioritization framework" | Prioritization | Scored/ordered backlog | prioritization-frameworks.md | ### Scrum Bag Tasks | Request Signal | Task Type | Primary Artifact | References Loaded | |---|---|---|---| | "retrospective", "retro" | retrospective | Retrospective facilitation + action items | retrospective-formats.md, facilitation-patterns.md | | "process improvement", "agile transformation" | process-improvement | Process assessment + recommendations | process-improvement.md, agile-metrics.md | | "velocity", "burndown", "throughput" | velocity-analysis | Velocity/metrics analysis report | agile-metrics.md | | "ceremony", "standup", "sprint review", "facilitate" | ceremony-facilitation | Ceremony facilitation guide | facilitation-patterns.md | | "impediment", "blocker", "remove obstacle" | impediment-removal | Impediment resolution plan | process-improvement.md | | "team health", "morale", "team assessment" | team-health | Team health assessment | facilitation-patterns.md, agile-metrics.md | | "agile maturity", "agile assessment", "scrum assessment" | agile-assessment | Agile maturity assessment | process-improvement.md, agile-metrics.md | ### Data Analyst Tasks | Request Signal | Task Type | Primary Artifact | References Loaded | |---|---|---|---| | "analytics requirements", "tracking plan", "instrumentation" | analytics-requirements | Analytics requirements document | analytics-patterns.md, metrics-frameworks.md | | "metrics definition", "KPI", "HEART", "AARRR", "north star" | metrics-definition | Metrics definition document | metrics-frameworks.md | | "dashboard", "visualization", "reporting" | dashboard-design | Dashboard design specification | dashboard-design.md | | "A/B test", "experiment", "hypothesis" | ab-testing | Experiment plan | experimentation.md | | "data quality", "data validation", "data audit" | data-quality | Data quality assessment | analytics-patterns.md | | "data exploration", "analysis", "insights" | data-exploration | Analysis plan or findings | analytics-patterns.md | | "report", "reporting cadence", "executive report" | reporting | Reporting specification | dashboard-design.md, metrics-frameworks.md | If the request is ambiguous, state the two most likely task types and ask which applies before producing output. --- ## Output Patterns Phase 2 loads ONLY the matched pattern file. Do NOT load all pattern files. | task_type | Pattern File | |-----------|-------------| | user_story | `references/patterns/story.md` | | epic_decomposition | `references/patterns/epic.md` | | backlog_prioritization | `references/patterns/backlog.md` | | prd | `references/patterns/prd.md` | | sprint_planning | `references/patterns/sprint.md` | | roadmap | `references/patterns/roadmap.md` | | stakeholder_comms | `references/patterns/stakeholder.md` | | dod_dor | `references/patterns/dod-dor.md` | | retrospective | `references/patterns/retro.md` | | velocity_analysis | `references/patterns/velocity.md` | | metrics_definition | `references/patterns/metrics.md` | | ab_testing | `references/patterns/ab-test.md` | --- ## Cross-Role Tasks | Scenario | Roles Involved | References Loaded | |----------|---------------|-------------------| | Sprint planning with ceremony facilitation | Product Owner + Scrum Bag | backlog-management.md + facilitation-patterns.md | | Feature launch with success metrics | Product Owner + Data Analyst | user-stories.md + metrics-frameworks.md | | Retrospective with velocity analysis | Scrum Bag + Data Analyst | retrospective-formats.md + agile-metrics.md + facilitation-patterns.md | | PRD with analytics requirements | Product Owner + Data Analyst | user-stories.md + stakeholder-templates.md + analytics-patterns.md | | Process improvement with data backing | Scrum Bag + Data Analyst | process-improvement.md + agile-metrics.md + analytics-patterns.md | | Full sprint cycle (plan + facilitate + measure) | All three roles | backlog-managemen
Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".