mirror of
https://github.com/alirezarezvani/claude-skills.git
synced 2026-08-28 04:24:58 +00:00
Version normalization (scope: only plugins/skills older than 2.7.0): - Bumped 52 plugin.json + 21 SKILL.md `version` fields from pre-2.7.0 values (1.0.0 / 2.0.x / 2.2.x / 2.3.x / 2.4.x / 2.5.x) to 2.9.0. Left 2.7.0+ packages untouched. Tool mirrors (.codex/.gemini/.vibe/ .hermes) excluded. All manifests still pass check_plugin_json --all. Doc count refresh (recomputed raw figures: 338 skills, 16 domains, 62 plugins, 533 Python tools, 676 references): - marketplace.json: both descriptions + metadata.version -> 2.9.0. - Root README: headline, badges (Skills 338, Agents 51+, Commands 87+), intro counts, convert section (338 skills / 9 tools), and the full domain table rebuilt to 16 domains summing to 338 (adds research-ops, business-operations, commercial, compliance-os; corrects product 17, marketing 46, c-level 66, ra-qm 18, finance 4, engineering 51/78). - Fixed stale per-skill README `Version:` lines left inconsistent by the bump (andreessen, c-level-agents, product-team, senior-qa). - Fixed stale domain README footers (product-team 17/17, c-level 66/66, project-management 9/9). - CLAUDE.md scope line, structure tree, highlight, and footer synced to the raw figures. https://claude.ai/code/session_01PUNmQVE4WYvcrzpq2anC3D
116 lines
3.8 KiB
Markdown
116 lines
3.8 KiB
Markdown
# Product Team Skills Collection
|
|
|
|
**17 production-ready product skills** covering product management, agile delivery, strategy, UX research, design systems, competitive intelligence, landing pages, and SaaS scaffolding.
|
|
|
|
---
|
|
|
|
## Overview
|
|
|
|
- **8 skills** covering the full product lifecycle from discovery to delivery
|
|
- **9 Python automation tools** (stdlib only, zero dependencies)
|
|
- **4 agents** orchestrating skills across product workflows
|
|
- **5 slash commands** for quick access to common operations
|
|
|
|
---
|
|
|
|
## Skills Catalog
|
|
|
|
### 1. Product Manager Toolkit
|
|
**Python Tools:** `rice_prioritizer.py`, `customer_interview_analyzer.py`
|
|
|
|
RICE prioritization with portfolio analysis, customer interview NLP analysis, PRD templates, and discovery frameworks.
|
|
|
|
### 2. Agile Product Owner
|
|
**Python Tools:** `user_story_generator.py`
|
|
|
|
INVEST-compliant user story generation, sprint planning with capacity allocation, epic breakdown, and acceptance criteria.
|
|
|
|
### 3. Product Strategist
|
|
**Python Tools:** `okr_cascade_generator.py`
|
|
|
|
OKR cascade generation (company to product to team), alignment scoring, and 5 strategy templates.
|
|
|
|
### 4. UX Researcher Designer
|
|
**Python Tools:** `persona_generator.py`
|
|
|
|
Data-driven persona generation, journey mapping frameworks, usability testing protocols, and empathy maps.
|
|
|
|
### 5. UI Design System
|
|
**Python Tools:** `design_token_generator.py`
|
|
|
|
Design token generation from brand color (CSS, JSON, SCSS), typography scales, spacing grids, and responsive breakpoints.
|
|
|
|
### 6. Competitive Teardown
|
|
**Python Tools:** `competitive_matrix_builder.py`
|
|
|
|
12-dimension competitive scoring, feature matrices, SWOT analysis, positioning maps, and stakeholder presentations.
|
|
|
|
### 7. Landing Page Generator
|
|
**Python Tools:** `landing_page_scaffolder.py`
|
|
|
|
Next.js/React TSX components with Tailwind CSS, 4 design styles, copy frameworks (PAS, AIDA, BAB), SEO optimization. Also supports HTML output.
|
|
|
|
### 8. SaaS Scaffolder
|
|
**Python Tools:** `project_bootstrapper.py`
|
|
|
|
Production SaaS boilerplate with Next.js, TypeScript, auth (NextAuth/Clerk/Supabase), payments (Stripe/Lemon Squeezy), and Docker.
|
|
|
|
---
|
|
|
|
## Slash Commands
|
|
|
|
| Command | Script | Purpose |
|
|
|---------|--------|---------|
|
|
| `/rice` | `rice_prioritizer.py` | Feature prioritization |
|
|
| `/okr` | `okr_cascade_generator.py` | OKR cascade generation |
|
|
| `/persona` | `persona_generator.py` | Persona generation |
|
|
| `/user-story` | `user_story_generator.py` | User story generation |
|
|
| `/competitive-matrix` | `competitive_matrix_builder.py` | Competitive analysis |
|
|
|
|
---
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Prioritize your backlog
|
|
python product-manager-toolkit/scripts/rice_prioritizer.py features.csv --capacity 20
|
|
|
|
# Generate user stories for a sprint
|
|
python agile-product-owner/scripts/user_story_generator.py sprint 30
|
|
|
|
# Create OKR cascade
|
|
python product-strategist/scripts/okr_cascade_generator.py growth
|
|
|
|
# Generate personas
|
|
python ux-researcher-designer/scripts/persona_generator.py
|
|
|
|
# Generate design tokens
|
|
python ui-design-system/scripts/design_token_generator.py "#0066CC" modern css
|
|
|
|
# Competitive analysis
|
|
python competitive-teardown/scripts/competitive_matrix_builder.py competitors.json
|
|
|
|
# Scaffold a landing page (TSX + Tailwind)
|
|
python landing-page-generator/scripts/landing_page_scaffolder.py config.json --format tsx
|
|
|
|
# Bootstrap a SaaS project
|
|
python saas-scaffolder/scripts/project_bootstrapper.py config.json
|
|
```
|
|
|
|
---
|
|
|
|
## Agents
|
|
|
|
| Agent | Skills Orchestrated |
|
|
|-------|-------------------|
|
|
| `cs-product-manager` | All 8 product skills |
|
|
| `cs-agile-product-owner` | Agile product owner + product manager toolkit |
|
|
| `cs-product-strategist` | Product strategist + competitive teardown |
|
|
| `cs-ux-researcher` | UX researcher + product manager toolkit + UI design system |
|
|
|
|
---
|
|
|
|
**Last Updated:** March 10, 2026
|
|
**Version:** v2.9.0
|
|
**Skills Deployed:** 17/17 production-ready
|
|
**Total Tools:** 9 Python automation tools
|