competitors-analysis

competitors-analysis is a skill for Claude Code from seaworld008/Commonly-used-high-value-skills. It costs 23 tokens per session (2,052 once invoked), scanned A, original, MIT.

A method for analysing a competitor's software repository from its actual cloned source code and project files.

In plain words
What is it for?
Use it to create competitor profiles, compare technology stacks or architecture, and track changes in competing repositories over time.
Why use it?
It prevents competitor profiles from being based on guesses by requiring each technical claim to be checked against repository evidence.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: agent in frontmatter.

Good fit Use it to create competitor profiles, compare technology stacks or architecture, and track changes in competing repositories over time.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/seaworld008/commonly-used-high-value-skills/competitors-analysis
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add seaworld008/Commonly-used-high-value-skills --skill competitors-analysis
Clone the repo
git clone --depth 1 https://github.com/seaworld008/Commonly-used-high-value-skills

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for competitors-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/seaworld008/commonly-used-high-value-skills/competitors-analysis/github.svg)](https://agentmods.dev/skills/seaworld008/commonly-used-high-value-skills/competitors-analysis)
Your own site
<a href="https://agentmods.dev/skills/seaworld008/commonly-used-high-value-skills/competitors-analysis"><img src="https://agentmods.dev/badge/skills/seaworld008/commonly-used-high-value-skills/competitors-analysis/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for competitors-analysis

Your own site · 80×15
<a href="https://agentmods.dev/skills/seaworld008/commonly-used-high-value-skills/competitors-analysis"><img src="https://agentmods.dev/badge/skills/seaworld008/commonly-used-high-value-skills/competitors-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,052 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00023 $0.02052
Opus 5 $0.00012 $0.01026
Sonnet 5 $0.00005 $0.00410
Haiku 4.5 $0.00002 $0.00205

Measured 4d ago against content hash c581698651ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

competitors-analysis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/update-competitors.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

openclaw-skills/competitors-analysis/SKILL.md · 283 lines

How it starts

The opening of the file, as written. The whole thing — 283 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Competitors Analysis

Evidence-based competitor tracking and analysis. All analysis must be based on actual code, never assumptions.

When to Use

Use this skill when the user wants to:

  • analyze a competitor repository with evidence
  • create or update a competitor profile
  • compare a competing product's technical stack or architecture
  • track competitor changes over time using cloned code

Usage

Recommended flow:

clone repo locally
-> inspect source files and metadata
-> cite every factual claim
-> write profile from evidence only
-> run post-analysis verification

CRITICAL: Evidence-Based Analysis Only

在开始分析之前,必须完成以下检查:

Pre-Analysis Checklist

  • 仓库已克隆到本地 ~/Workspace/competitors/{product}/
  • 可以 ls 查看目录结构
  • 可以 cat package.json (或等效配置文件) 读取版本信息
  • 可以 git log -1 确认代码是最新的

如果以上任何一项未完成,停止分析,先完成克隆操作。

Forbidden Patterns (禁止的表述)

禁止 原因
"推测..."、"可能..."、"应该..." 没有证据支持
"架构图(推测版)" 必须基于实际代码
"未公开"、"未披露" 如果不知道就不要写
不带来源的技术细节 无法验证

Required Patterns (必须的表述)

正确格式 示例
技术细节 + (来源: 文件:行号) "使用 better-sqlite3 (来源: package.json:88)"
直接引用 + 来源 > "description text" (README.md:3)
版本号 + 来源 "版本 1.3.3 (package.json:2)"

Analysis Workflow

Step 1: Clone Repository (必须)

# 创建产品竞品目录
mkdir -p ~/Workspace/competitors/{product-name}

# 克隆竞品仓库 (SSH,失败则重试)
cd ~/Workspace/competitors/{product-name}
git clone [email protected]:org/repo.git

网络问题处理: 中国网络环境可能需要多次重试。

Step 2: Gather Facts (收集事实)

按顺序读取以下文件,记录关键信息:

2.1 项目元数据

# Node.js 项目
cat package.json | head -20      # name, version, description
cat package.json | grep -A50 dependencies

# Python 项目
cat pyproject.toml               # 或 setup.py, requirements.txt

# Rust 项目
cat Cargo.toml

2.2 项目结构

ls -la                           # 根目录结构
ls src/                          # 源码目录
find . -name "*.md" -maxdepth 2  # 文档文件

2.3 核心模块

# 找到入口文件
cat main.js | head -50           # 或 index.js, app.py, main.rs
# 找到核心 helpers/utils
ls src/helpers/ 2>/dev/null || ls src/utils/ 2>/dev/null

Read the full file on GitHub · 283 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago Changed · -41 tokens per session c581698651ec
  2. 12d ago First seen · 283 lines · 64 tokens per session scan A feb4a4825c79

Subscribe to this mod's changes

competitors-analysis is a skill published in the GitHub repository seaworld008/Commonly-used-high-value-skills (70 stars, last pushed 4d ago), licensed MIT. It adds 23 tokens to every session and 2,052 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

elasticsearch

Query and analyze logs in Elasticsearch. Use this skill when the user wants to search logs, query log data, count log entries, filter by trace IDs, or analyze application logs stored in Elasticsearch. Common use cases include debugging requests by trace ID, finding error logs, analyzing request patterns, and…

jawwadfirdousi/agent-skills · 68 tokens

svg-creator

Produce SVGs that are spec-correct (W3C SVG 2), CSS-independent, accessible when meaningful, safe to render in untrusted contexts, optimized in size, and readable enough to edit.

jawwadfirdousi/agent-skills · 95 tokens

prompt-template-wizard

Rigorously collects and validates all fields needed to produce a complete, unambiguous prompt template for features and bug fixes. The skill asks targeted questions until the template is fully filled, consistent, and ready to paste into a Codex/GPT-5.2 coding session.

jawwadfirdousi/agent-skills · 61 tokens

german-elster-tax-filing

Use this skill to run a complete intake for a german personal income tax return in elster for tax years 2024 onward, estimate the tax result, and map the final values into the correct official forms and fields.

jawwadfirdousi/agent-skills · 123 tokens

read-only-gh-pr-review

Review backend pull requests for correctness, security, performance, maintainability, and test coverage using GitHub CLI plus local repository inspection. Use when asked to review service-layer/API/database changes, audit backend branch diffs, summarize backend risk, or produce actionable must-fix/should-fix feedback.

jawwadfirdousi/agent-skills · 65 tokens

trello

Manage Trello boards, lists, and cards via the Trello REST API.

jawwadfirdousi/agent-skills · 19 tokens