Claude Code · Community plugin
Product Skills
16 production-ready product skills: product manager toolkit (RICE, PRDs), agile product owner, product strategist, UX researcher, UI design system, competitive teardown, landing page generator, SaaS scaffolder, product analytics, experiment designer, product discovery, roadmap communicator, code-to-prd, research summarizer, apple-hig-expert (Apple Human Interface Guidelines), spec-to-repo. Agent skill and plugin for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw.
What this plugin covers
This page keeps a stable Remote OpenClaw URL for the upstream pluginwhile preserving the original source content below. The shell stays consistent, and the body can vary as much as the upstream SKILL.md or README varies.
Source files and registry paths
Source path
product-team
Entry file
Not available
Manifest file
product-team/.claude-plugin/plugin.json
Repository
alirezarezvani/claude-skills
Format
json-plugin
Original source content
Raw file# Product Team Skills - Claude Code Guidance This guide covers the 16 production-ready product management skills and their Python automation tools. ## Product Skills Overview **Available Skills:** 1. **product-manager-toolkit/** - RICE prioritization, customer interview analysis (2 tools) 2. **agile-product-owner/** - User story generation, sprint planning (1 tool) 3. **product-strategist/** - OKR cascade, strategic planning (1 tool) 4. **ux-researcher-designer/** - Persona generation, user research (1 tool) 5. **ui-design-system/** - Design token generation, component systems (1 tool) 6. **competitive-teardown/** - Competitive matrix building, gap analysis (1 tool) 7. **landing-page-generator/** - Landing page scaffolding (1 tool) 8. **saas-scaffolder/** - SaaS project bootstrapping (1 tool) 9. **product-analytics/** - KPI design, retention/cohort/funnel analysis (1 tool) 10. **experiment-designer/** - Experiment design and sample size planning (1 tool) 11. **product-discovery/** - Discovery frameworks and assumption mapping (1 tool) 12. **roadmap-communicator/** - Roadmap communication and changelog generation (1 tool) 13. **code-to-prd/** - Reverse-engineer any codebase into PRD (2 tools: codebase_analyzer, prd_scaffolder) 14. **research-summarizer/** - Research synthesis and summarization (1 tool) 15. **apple-hig-expert/** - Apple Human Interface Guidelines compliance and design (1 tool: hig_checker) 16. **spec-to-repo/** - Convert a spec document into a scaffolded repository **Total Tools:** 17 Python automation tools **Agents:** 5 (cs-product-manager, cs-agile-product-owner, cs-product-strategist, cs-ux-researcher, cs-product-analyst) **Slash Commands:** 8 (/rice, /okr, /persona, /user-story, /competitive-matrix, /prd, /sprint-plan, /code-to-prd) ## Python Automation Tools ### 1. RICE Prioritizer (`product-manager-toolkit/scripts/rice_prioritizer.py`) **Purpose:** RICE framework implementation for feature prioritization **Formula:** (Reach × Impact × Confidence) / Effort **Features:** - Portfolio analysis (quick wins vs big bets) - Quarterly roadmap generation - Capacity planning (story points or dev days) - CSV input/output for Jira/Linear integration - JSON export for dashboards **Usage:** ```bash # Basic prioritization python product-manager-toolkit/scripts/rice_prioritizer.py features.csv # With capacity planning python product-manager-toolkit/scripts/rice_prioritizer.py features.csv --capacity 20 # JSON output python product-manager-toolkit/scripts/rice_prioritizer.py features.csv --output json ``` **CSV Format:** ```csv feature,reach,impact,confidence,effort User Dashboard,500,3,0.8,5 API Rate Limiting,1000,2,0.9,3 Dark Mode,300,1,1.0,2 ``` ### 2. Customer Interview Analyzer (`product-manager-toolkit/scripts/customer_interview_analyzer.py`) **Purpose:** NLP-based interview transcript analysis **Features:** - Pain point extraction with severity scoring - Feature request identification - Sentiment analysis - Theme extraction - Jobs-to-be-done pattern recognition **Usage:** ```bash # Analyze transcript python product-manager-toolkit/scripts/customer_interview_analyzer.py interview.txt # JSON output python product-manager-toolkit/scripts/customer_interview_analyzer.py interview.txt json ``` ### 3. User Story Generator (`agile-product-owner/scripts/user_story_generator.py`) **Purpose:** INVEST-compliant user story generation **Features:** - Sprint planning with capacity allocation - Epic breakdown into deliverable stories - Acceptance criteria generation - Story point estimation - Priority scoring **Usage:** ```bash # Interactive mode python agile-product-owner/scripts/user_story_generator.py # Sprint planning (30 story points) python agile-product-owner/scripts/user_story_generator.py sprint 30 ``` ### 4. OKR Cascade Generator (`product-strategist/scripts/okr_cascade_generator.py`) **Purpose:** Automated OKR hierarchy (company → product → team) **Features:** - Alignment scoring (vertical and horizontal) - Strategy templates (growth, retention, revenue, innovation) - Key result tracking - Progress visualization **Usage:** ```bash # Growth strategy OKRs python product-strategist/scripts/okr_cascade_generator.py growth # Retention strategy python product-strategist/scripts/okr_cascade_generator.py retention ``` ### 5. Persona Generator (`ux-researcher-designer/scripts/persona_generator.py`) **Purpose:** Data-driven persona creation from user research **Usage:** ```bash python ux-researcher-designer/scripts/persona_generator.py python ux-researcher-designer/scripts/persona_generator.py --output json ``` ### 6. Design Token Generator (`ui-design-system/scripts/design_token_generator.py`) **Purpose:** Complete design token system from brand color **Usage:** ```bash python ui-design-system/scripts/design_token_generator.py "#0066CC" modern css python ui-design-system/scripts/design_token_generator.py "#0066CC" modern scss python ui-design-system/scripts/design_token_generator.py "#0066CC" modern json ``` ### 7. Competitive Matrix Builder (`competitive-teardown/scripts/competitive_matrix_builder.py`) **Purpose:** Weighted competitive scoring with gap analysis **Usage:** ```bash python competitive-teardown/scripts/competitive_matrix_builder.py competitors.json ``` ### 8. Landing Page Scaffolder (`landing-page-generator/scripts/landing_page_scaffolder.py`) **Purpose:** Generate production-ready landing pages as Next.js/React TSX components with Tailwind CSS (default) or plain HTML. **Features:** - TSX output (default): Next.js 14+ App Router components with Tailwind classes - 4 design styles: `dark-saas`, `clean-minimal`, `bold-startup`, `enterprise` - 7 section generators: nav, hero, features, testimonials, pricing, CTA, footer - Copy frameworks: PAS, AIDA, BAB **Usage:** ```bash python landing-page-generator/scripts/landing_page_scaffolder.py config.json --format tsx python landing-page-generator/scripts/landing_page_scaffolder.py config.json --format html ``` ### 9. Project Bootstrapper (`saas-scaffolder/scripts/project_bootstrapper.py`) **Purpose:** SaaS project scaffolding with auth, billing, and API setup **Usage:** ```bash python saas-scaffolder/scripts/project_bootstrapper.py project_config.json ``` ### 10. Metrics Calculator (`product-analytics/scripts/metrics_calculator.py`) **Purpose:** Product analytics — retention, cohort, and funnel analysis **Features:** - Retention curve analysis from event data - Funnel conversion tracking with stage-by-stage drop-off - Cohort grouping and comparison **Usage:** ```bash # Retention analysis python product-analytics/scripts/metrics_calculator.py retention events.csv # Funnel analysis python product-analytics/scripts/metrics_calculator.py funnel funnel.csv --stages visit,signup,activate,pay # KPI summary python product-analytics/scripts/metrics_calculator.py kpi metrics.csv --json ``` ### 11. Sample Size Calculator (`experiment-designer/scripts/sample_size_calculator.py`) **Purpose:** Statistical sample size planning for A/B tests and experiments **Features:** - Minimum detectable effect (MDE) calculation - Absolute and relative effect size modes - Power analysis with configurable alpha/beta **Usage:** ```bash # Absolute MDE python experiment-designer/scripts/sample_size_calculator.py --baseline-rate 0.12 --mde 0.02 --mde-type absolute # Relative MDE python experiment-designer/scripts/sample_size_calculator.py --baseline-rate 0.12 --mde 0.15 --mde-type relative # Custom power/significance python experiment-designer/scripts/sample_size_calculator.py --baseline-rate 0.12 --mde 0.02 --alpha 0.01 --power 0.9 ``` ### 12. Assumption Mapper (`product-discovery/scripts/assumption_mapper.py`) **Purpose:** Map and prioritize product assumptions for discovery validation **Features:** - Risk × uncertainty scoring for prioritization - CSV input with structured assumption fields - Categorization by assumption type (desirability, viability, feasibility, usability) **Usage:** ```bash python product-discovery/scripts/assumption_mapper.py assumptions.csv python product-discovery/scripts/assumption_mapper.py assumptions.csv --json ``` ### 13. Changelog Generator (`roadmap-communicator/scripts/changelog_generator.py`) **Purpose:** Generate structured changelogs from git commit history **Note:** Requires `git` on PATH — must be run inside a git repository. **Usage:** ```bash python roadmap-communicator/scripts/changelog_generator.py --from v1.0.0 --to HEAD python roadmap-communicator/scripts/changelog_generator.py --from v1.0.0 --to v2.0.0 --json ``` ## Product Workflows ### Workflow 1: Feature Prioritization to Sprint Execution ```bash python product-manager-toolkit/scripts/rice_prioritizer.py features.csv --capacity 30 python agile-product-owner/scripts/user_story_generator.py sprint 30 ``` ### Workflow 2: Strategy to Team-Level OKRs ```bash python product-strategist/scripts/okr_cascade_generator.py growth --json > okrs.json ``` ### Workflow 3: Research to Persona Artifacts ```bash python ux-researcher-designer/scripts/persona_generator.py json > personas.json ``` ### Workflow 4: Brand-Aligned Landing Page ```bash python ../marketing-skill/content-production/scripts/brand_voice_analyzer.py website_copy.txt --format json > voice.json python ui-design-system/scripts/design_token_generator.py "#0066CC" modern css python landing-page-generator/scripts/landing_page_scaffolder.py config.json --format tsx python competitive-teardown/scripts/competitive_matrix_builder.py competitors.json ``` ### Workflow 5: Product Analytics and Experimentation ```bash python product-analytics/scripts/metrics_calculator.py retention events.csv python product-analytics/scripts/metrics_calculator.py funnel funnel.csv --stages visit,signup,activate,pay python experiment-designer/scripts/sample_size_calculator.py --baseline-rate 0.12 --mde 0.02 --mde-type absolute ``` ### Workflow 6: Discovery and Opportunity Validation ```bash python product-discovery/scripts/assumption_mapper.py assumptions.csv ``` ### Workflow 7: Roadmap and Release Communication ```bash python roadmap-communicator/scripts/changelog_generator.py --from v1.0.0 --to HEAD ``` ## Quality Standards **All product Python tools must:** - CLI-first design for automation - Support both interactive and batch modes - JSON output for tool integration - Standard library only (minimal dependencies) - Actionable recommendations ## Additional Resources - **Main Documentation:** `../CLAUDE.md` - **Marketing Brand Voice:** `../marketing-skill/content-production/scripts/brand_voice_analyzer.py` --- **Last Updated:** April 9, 2026 **Skills Deployed:** 16/16 product skills production-ready **Total Tools:** 17 Python automation tools **Agents:** 5 | **Commands:** 8
Related Claude Code plugins
claude-skills
Agile Product Owner
Agile product ownership for backlog management and sprint execution. User story generation (INVEST-compliant), acceptance criteria patterns (Given/When/Then, rule-based, checklist), epic breakdown with 5 split techniques, sprint planning with velocity-based capacity math, and weighted backlog prioritization. Includes user story generator Python tool.
claude-skills
Apple Hig Expert
Master Apple's Human Interface Guidelines (HIG) with focus on 2026 Liquid Glass aesthetics. Design and audit iOS, macOS, and visionOS apps for full compliance and premium feel. Includes hig checker Python tool for tap targets, contrast, and accessibility validation. Reference docs cover visual design, platform specifics (iOS/macOS/visionOS), and accessibility best practices.
claude-skills
Code To PRD
Reverse-engineer any codebase into a complete Product Requirements Document (PRD). Analyzes routes, components, models, APIs, and interactions for frontend (React, Vue, Angular, Next.js), backend (NestJS, Django, Express, FastAPI), and fullstack applications.
claude-skills
Research Summarizer
Structured research summarization agent skill and plugin for Claude Code, Codex, and Gemini CLI. Summarize academic papers, compare web articles, extract citations, and produce actionable research briefs.
claude-skills
A11y Audit
WCAG 2.2 accessibility audit and fix skill for React, Next.js, Vue, Angular, Svelte, and HTML. Static scanner detecting 20+ violation types, contrast checker with suggest mode, framework-specific fix patterns, CI-friendly exit codes.
claude-skills
Agenthub
Multi-agent collaboration plugin for Claude Code. Spawn N parallel subagents that compete on code optimization, content drafts, research approaches, or any problem that benefits from diverse solutions. Evaluate by metric or LLM judge, merge the winner. 7 slash commands, agent templates, git DAG orchestration, message board coordination.