skill-product-analysislisted
Install: claude install-skill MatrixFounder/Agentic-development
# Product Analysis & Vision
## 1. Objective
To define **what** we are building and **why**, before writing code.
This skill powers the **Product Analyst (p02)** role.
## 2. Core Tooling
You MUST use the provided Python script to scaffold the Vision document.
**DO NOT** write the `PRODUCT_VISION.md` header/structure manually.
### How to Initialise
Run the following command (Headless mode):
```bash
python3 [skill_path]/scripts/init_product.py --name "Product Name" --problem "Problem description" --audience "Users" --metrics "KPI1, KPI2"
```
> **Note:** `[skill_path]` is the path to this skill (e.g. `.agent/skills/skill-product-analysis`).
## 3. The 10-Factor Scoring Matrix
Before drafting the Vision, you MUST score the idea to determine viability.
### Protocol
Run the scoring script with your estimated values (1-10, where 10 is Best/Easiest):
```bash
# Example: High problem intensity (9), but weak moat (3)
python3 [skill_path]/scripts/score_product.py --problem_intensity 9 --moat_durability 3 --market_size 8
```
- **Goal:** Score > 70/100.
- **Output:** Application of this script must be included in `PRODUCT_VISION.md`.
## 4. Artifact Standards (`PRODUCT_VISION.md`)
### Template Structure
See `assets/vision_template.md` for the authoritative structure.
All sections are mandatory.
### INVEST Criteria (User Stories)
When breaking down the vision into the Backlog:
- **I**ndependent
- **N**egotiable
- **V**aluable (to the user)
- **E**stimable
- **S**mall
- **T**estable
##