Root cause: CLI tools (ai-agent-skills, agent-skills-cli) look for SKILL.md at the specified install path. 7 of 9 domain directories were missing this file, causing "Skill not found" errors for bundle installs like: npx ai-agent-skills install alirezarezvani/claude-skills/engineering-team Fix: - Add root-level SKILL.md with YAML frontmatter to 7 domains - Add .codex/instructions.md to 8 domains (for Codex CLI discovery) - Update INSTALLATION.md with accurate skill counts (53→170) - Add troubleshooting entry for "Skill not found" error All 9 domains now have: SKILL.md + .codex/instructions.md + plugin.json Closes #301 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
62 lines
1.9 KiB
Markdown
62 lines
1.9 KiB
Markdown
---
|
|
name: "product-skills"
|
|
description: "8 production-ready product skills: product manager toolkit with RICE prioritization, agile product owner, product strategist with OKR cascades, UX researcher, UI design system, competitive teardown, landing page generator, and SaaS scaffolder. Python tools included (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw."
|
|
version: 1.1.0
|
|
author: Alireza Rezvani
|
|
license: MIT
|
|
tags:
|
|
- product
|
|
- product-management
|
|
- ux
|
|
- ui
|
|
- saas
|
|
- agile
|
|
agents:
|
|
- claude-code
|
|
- codex-cli
|
|
- openclaw
|
|
---
|
|
|
|
# Product Team Skills
|
|
|
|
8 production-ready product skills covering product management, UX/UI design, and SaaS development.
|
|
|
|
## Quick Start
|
|
|
|
### Claude Code
|
|
```
|
|
/read product-team/product-manager-toolkit/SKILL.md
|
|
```
|
|
|
|
### Codex CLI
|
|
```bash
|
|
npx agent-skills-cli add alirezarezvani/claude-skills/product-team
|
|
```
|
|
|
|
## Skills Overview
|
|
|
|
| Skill | Folder | Focus |
|
|
|-------|--------|-------|
|
|
| Product Manager Toolkit | `product-manager-toolkit/` | RICE prioritization, customer discovery, PRDs |
|
|
| Agile Product Owner | `agile-product-owner/` | User stories, sprint planning, backlog |
|
|
| Product Strategist | `product-strategist/` | OKR cascades, market analysis, vision |
|
|
| UX Researcher Designer | `ux-researcher-designer/` | Personas, journey maps, usability testing |
|
|
| UI Design System | `ui-design-system/` | Design tokens, component docs, responsive |
|
|
| Competitive Teardown | `competitive-teardown/` | Systematic competitor analysis |
|
|
| Landing Page Generator | `landing-page-generator/` | Conversion-optimized pages |
|
|
| SaaS Scaffolder | `saas-scaffolder/` | Production SaaS boilerplate |
|
|
|
|
## Python Tools
|
|
|
|
9 scripts, all stdlib-only:
|
|
|
|
```bash
|
|
python3 product-manager-toolkit/scripts/rice_prioritizer.py --help
|
|
python3 product-strategist/scripts/okr_cascade_generator.py --help
|
|
```
|
|
|
|
## Rules
|
|
|
|
- Load only the specific skill SKILL.md you need
|
|
- Use Python tools for scoring and analysis, not manual judgment
|