Agent skill

competitor-analysis

直接競合・間接競合を分析し、差別化ポイントを明確にする。新規プロダクト企画時、市場参入前の調査、既存プロダクトのポジショニング見直し時に使用。「競合を分析したい」「差別化ポイントを見つけたい」「市場調査」「既存の解決策を調べたい」などのリクエストで起動。

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill competitor-analysis-ryryo-dot-claude-dev --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/analysis/competitor-analysis-ryryo-dot-claude-dev/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 競合分析 ## 概要 対話とWebサーチを通じて競合を分析し、以下を生成する: 1. 競合マップ(直接競合・間接競合) 2. 競合比較表 3. 差別化ポイント ## ワークフロー ### フェーズ0: 前提ドキュメントの読み込み 前のステップの出力ファイルを読み込む。 #### 読み込み対象 - `docs/PROBLEM_DEFINITION.md` ```javascript Read({ file_path: "docs/PROBLEM_DEFINITION.md" }) ``` #### ファイルが存在する場合 読み込んだ内容から以下を抽出し、フェーズ1で活用: - ジョブ定義(分析対象のジョブとして使用) - ターゲットユーザー(競合のターゲットと比較) - ペイン(競合がどう解決しているか分析) **遷移条件**: フェーズ1へ(対象ジョブの質問をスキップ可能) #### ファイルが存在しない場合 フェーズ1でAskUserQuestionを使って対象ジョブを確認。 **遷移条件**: フェーズ1へ ### フェーズ1: 対象領域の確認 分析対象を明確にする。 **注**: フェーズ0でPROBLEM_DEFINITION.mdを読み込み済みの場合、対象ジョブの質問はスキップし、既知の競合の確認のみ行う。 ```javascript AskUserQuestion({ questions: [ { question: "どのような問題/ジョブに対する競合を分析しますか?", header: "対象ジョブ", options: [ { label: "ジョブを入力", description: "ユーザーが達成したいこと" } ], multiSelect: false }, { question: "すでに知っている競合はありますか?", header: "既知の競合", options: [ { label: "ある", description: "競合名を入力" }, { label: "ない", description: "これから調査する" } ], multiSelect: false } ] }) ``` **遷移条件**: 対象ジョブが明確になったらフェーズ2へ ### フェーズ2: 競合の特定 直接競合と間接競合を洗い出す。 #### 直接競合 同じ問題を同じ方法で解決しようとしているプロダクト。 ```javascript WebSearch({ query: "[対象領域] ツール 比較" }) ``` #### 間接競合 同じ問題を**異なる方法**で解決しているもの。 **考えるべき間接競合**: - 手作業(ツールを使わない) - Excel/スプレッドシート - 汎用ツールの組み合わせ - 外注/コンサルティング

What's inside
Steps it walks through
  1. 概要
  2. ワークフロー
  3. フェーズ0: 前提ドキュメントの読み込み
  4. フェーズ1: 対象領域の確認
  5. フェーズ2: 競合の特定
  6. フェーズ3: 競合の調査
  7. フェーズ4: 競合比較分析
  8. フェーズ5: 差別化ポイントの特定
  9. フェーズ6: ポジショニングマップ
  10. フェーズ7: ドキュメント生成
  11. 出力ファイル
  12. フェーズ8: セルフレビュー(サブエージェント)
  13. 調査のコツ
  14. 情報源
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the competitor-analysis skill do?

直接競合・間接競合を分析し、差別化ポイントを明確にする。新規プロダクト企画時、市場参入前の調査、既存プロダクトのポジショニング見直し時に使用。「競合を分析したい」「差別化ポイントを見つけたい」「市場調査」「既存の解決策を調べたい」などのリクエストで起動。

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill competitor-analysis-ryryo-dot-claude-dev --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going