Command
/competitive-matrix
Build competitive analysis matrices with scoring and gap analysis. Usage: /competitive-matrix <analyze> [options]
One command from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeShips with claude-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/competitive-matrix
Context preview
What this command does when you run it.
Build competitive analysis matrices with scoring and gap analysis. Usage: /competitive-matrix <analyze> [options]
Stats
Stars23,060
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
competitive-matrix.md
--- name: competitive-matrix description: "Build competitive analysis matrices with scoring and gap analysis. Usage: /competitive-matrix <analyze> [options]" argument-hint: "<analyze> [options]" --- # /competitive-matrix Build competitive matrices with weighted scoring, gap analysis, and market positioning insights. ## Usage ``` /competitive-matrix analyze <competitors.json> Full analysis /competitive-matrix analyze <competitors.json> --weights pricing=2,ux=1.5 Custom weights ``` ## Input Format ```json { "your_product": { "name": "MyApp", "scores": {"ux": 8, "pricing": 7, "features": 9} }, "competitors": [ { "name": "Competitor A", "scores": {"ux": 7, "pricing": 9, "features": 6} } ], "dimensions": ["ux", "pricing", "features"] } ``` ## Examples ``` /competitive-matrix analyze competitors.json /competitive-matrix analyze competitors.json --format json --output matrix.json ``` ## Scripts - `product-team/skills/competitive-teardown/scripts/competitive_matrix_builder.py` — Matrix builder
