Product Skills — Router
This plugin bundles 12 product skills (this router is the 13th folder under product-team/skills/). Each skill is self-contained: read its SKILL.md, run its scripts/, apply its references/ and assets/.
Routing table
Match the request against the signals below, then load product-team/skills/<skill>/SKILL.md. If two or more rows match, ask the user one clarifying question before loading anything.
| Request signals |
Skill |
Path |
| Prioritize features, RICE scores, interview synthesis |
product-manager-toolkit |
skills/product-manager-toolkit/ |
| OKRs, strategy cascade, objective alignment |
product-strategist |
skills/product-strategist/ |
| Personas, usability findings, research synthesis |
ux-researcher-designer |
skills/ux-researcher-designer/ |
| Design tokens, component specs, WCAG contrast |
ui-design-system |
skills/ui-design-system/ |
| Competitor analysis, feature/pricing matrix |
competitive-teardown |
skills/competitive-teardown/ |
| Retention, cohorts, funnel analysis |
product-analytics |
skills/product-analytics/ |
| A/B test design, sample size, hypothesis gates |
experiment-designer |
skills/experiment-designer/ |
| Opportunity trees, assumption mapping, discovery |
product-discovery |
skills/product-discovery/ |
| Roadmap formats per audience, changelogs |
roadmap-communicator |
skills/roadmap-communicator/ |
| Turn a written spec into a repo scaffold |
spec-to-repo |
skills/spec-to-repo/ |
| Landing page (Next.js TSX + Tailwind) |
landing-page-generator |
skills/landing-page-generator/ |
| Bootstrap a SaaS app skeleton |
saas-scaffolder |
skills/saas-scaffolder/ |
Quick start
# Example: route a prioritization request
cat product-team/skills/product-manager-toolkit/SKILL.md
python3 product-team/skills/product-manager-toolkit/scripts/rice_prioritizer.py --help
Related product-team plugins (packaged separately, not in this bundle)
product-team/agile-product-owner/ — user stories, sprint capacity
product-team/code-to-prd/ — reverse-engineer a PRD from a codebase
product-team/apple-hig-expert/ — Apple HIG audits (Liquid Glass era)
product-team/research-summarizer/ — document summarization with citation extraction
Rules
- Route to exactly one skill, then follow that skill's own workflow.
- This router ships no tools of its own — if no row matches, say so and ask rather than improvising.
1---2name: product-skills3description: Router/index for the 12 product skills bundled in this plugin (RICE prioritization, OKRs, UX research, design tokens, competitive teardown, analytics, experiments, discovery, roadmaps, spec-to-repo, landing pages, SaaS scaffolding). Use when a product request doesn't obviously match one skill and you need to pick the right one (e.g., 'help me prioritize features', 'plan a product experiment').4license: MIT5---67# Product Skills — Router89This plugin bundles **12 product skills** (this router is the 13th folder under `product-team/skills/`). Each skill is self-contained: read its `SKILL.md`, run its `scripts/`, apply its `references/` and `assets/`.1011## Routing table1213Match the request against the signals below, then load `product-team/skills/<skill>/SKILL.md`. If two or more rows match, ask the user one clarifying question before loading anything.1415| Request signals | Skill | Path |16|---|---|---|17| Prioritize features, RICE scores, interview synthesis | product-manager-toolkit | `skills/product-manager-toolkit/` |18| OKRs, strategy cascade, objective alignment | product-strategist | `skills/product-strategist/` |19| Personas, usability findings, research synthesis | ux-researcher-designer | `skills/ux-researcher-designer/` |20| Design tokens, component specs, WCAG contrast | ui-design-system | `skills/ui-design-system/` |21| Competitor analysis, feature/pricing matrix | competitive-teardown | `skills/competitive-teardown/` |22| Retention, cohorts, funnel analysis | product-analytics | `skills/product-analytics/` |23| A/B test design, sample size, hypothesis gates | experiment-designer | `skills/experiment-designer/` |24| Opportunity trees, assumption mapping, discovery | product-discovery | `skills/product-discovery/` |25| Roadmap formats per audience, changelogs | roadmap-communicator | `skills/roadmap-communicator/` |26| Turn a written spec into a repo scaffold | spec-to-repo | `skills/spec-to-repo/` |27| Landing page (Next.js TSX + Tailwind) | landing-page-generator | `skills/landing-page-generator/` |28| Bootstrap a SaaS app skeleton | saas-scaffolder | `skills/saas-scaffolder/` |2930## Quick start3132```bash33# Example: route a prioritization request34cat product-team/skills/product-manager-toolkit/SKILL.md35python3 product-team/skills/product-manager-toolkit/scripts/rice_prioritizer.py --help36```3738## Related product-team plugins (packaged separately, not in this bundle)3940- `product-team/agile-product-owner/` — user stories, sprint capacity41- `product-team/code-to-prd/` — reverse-engineer a PRD from a codebase42- `product-team/apple-hig-expert/` — Apple HIG audits (Liquid Glass era)43- `product-team/research-summarizer/` — document summarization with citation extraction4445## Rules4647- Route to exactly one skill, then follow that skill's own workflow.48- This router ships no tools of its own — if no row matches, say so and ask rather than improvising.