Competitors Analysis (Evidence-Based)
Clones and refreshes competitor repositories, then writes competitive reports where every technical claim carries a file:line citation.
Data & AnalyticsIntermediate★ 1,419⑂ 219AI score 9/10Last updated: Sep 22, 2026
What it does
- Discovers candidates with
gh search repos, then clones only the relevant ones into a durable workspace at~/workspace/competitors/{product}/{owner-repo}. - Reads the cloned source to document dependencies, entry points, parser/storage/export behavior with exact
file:lineevidence. - Synthesizes positioning, strengths, weaknesses, opportunities and risks into tables that keep sourced facts separate from judgment.
- Bans hedging language ("probably", "presumably"); if evidence is missing it writes
待验证(to be verified) plus the exact next check. - Runs an Update mode that fetches existing competitor clones and reports changed commits before any analysis.
Who it's for
- Founders and PMs whose competitors ship open-source code.
- Engineers and tech leads who must compare stacks and implementations with receipts.
- Strategy/research folks tired of unauditable competitive decks.
Examples
- "add competitor https://github.com/org/repo" → clone, record remote + commit hash, emit a first technical profile.
- "Build the competitive landscape for my note-taking app" → scan 30 GitHub repos → clone the relevant ones → produce positioning and feature comparison tables plus an opportunity/risk table.
- "Did any competitor code change recently?" → fetch all stored competitor repos and report the changed commits and what they imply.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/competitors-analysis/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the competitors-analysis folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/competitors-analysis/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/daymade/claude-code-skills.git /tmp/ccs && mkdir -p ~/.claude/skills && cp -r /tmp/ccs/competitors-analysis ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Prerequisites: install
gitand the GitHub CLI (gh), then rungh auth login. - Clone the skills repo:
git clone https://github.com/daymade/claude-code-skills.git - Copy the skill folder:
mkdir -p ~/.claude/skills && cp -r claude-code-skills/competitors-analysis ~/.claude/skills/ - Verify the bundled
references/andscripts/files came along:ls ~/.claude/skills/competitors-analysis - Optional: set a custom workspace by adding
export COMPETITORS_BASE="$HOME/workspace/competitors"to your shell profile. - Restart Claude Code and always invoke it with an explicit product or market target, e.g. "Use competitors-analysis on my markdown editor's competitors." Without a target the skill deliberately aborts instead of guessing.
View source on GitHub ↗License: MIT