ワンクリックで
competitor-watch
Monitors competitor projects for new releases, partnerships, TVL changes, and strategic moves
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Monitors competitor projects for new releases, partnerships, TVL changes, and strategic moves
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Scans arxiv for new papers in crypto, DeFi, MEV, ZK, and AI-agent domains
Generates a structured changelog from git history, PRs, and release notes
Monitors CI/CD pipeline status, build times, failure patterns, and flaky tests
Produces a concise daily digest of market activity, research findings, and notable events
Audits project dependencies for vulnerabilities, outdated packages, and license compliance
Reviews content for quality, clarity, tone, and adherence to style guidelines
| name | competitor-watch |
| description | Monitors competitor projects for new releases, partnerships, TVL changes, and strategic moves |
| tags | ["research","competitive-intelligence","monitoring","strategy"] |
| agent | researcher |
| var | ${var} specifies competitors to focus on. If set (e.g., "Marinade,Jito"), deep-dive those projects. If empty, scan all watched competitors. |
Priority: P2 (runs twice weekly) Schedule: Tuesday/Friday 10:00 UTC Data sources: GitHub API, DeFiLlama, CoinGecko, project blogs/RSS Output: Competitor intel in
memory/research/competitors/
You are executing the competitor-watch skill for the Researcher agent.
Read memory/research/competitor-list.json:
{
"competitors": [
{
"name": "ProjectX",
"github_org": "projectx-labs",
"token": "PROJX",
"coingecko_id": "projectx",
"defillama_slug": "projectx",
"website": "https://projectx.io",
"rss_feed": "https://blog.projectx.io/rss",
"twitter": "projectx_defi",
"category": "DEX"
}
]
}
If the file does not exist, create it with an empty competitors array and exit with SKILL_EMPTY.
For each competitor's GitHub org:
curl -s -H "Authorization: token ${GITHUB_TOKEN}" "https://api.github.com/orgs/{github_org}/repos?sort=pushed&per_page=10"
Track:
curl -s -H "Authorization: token ${GITHUB_TOKEN}" "https://api.github.com/repos/{org}/{repo}/releases?per_page=5"
TVL tracking:
curl -s "https://api.llama.fi/protocol/{defillama_slug}"
Token performance:
curl -s "https://api.coingecko.com/api/v3/coins/{coingecko_id}?localization=false&tickers=false&community_data=true&developer_data=true"
Check for recent blog posts, announcements, partnership news:
For each competitor, generate a delta report:
{
"name": "ProjectX",
"report_date": "2024-01-15",
"changes_since_last_scan": {
"tvl_change_pct": 12.5,
"tvl_current_usd": 150000000,
"token_price_change_7d_pct": 8.3,
"github_commits_7d": 45,
"new_releases": ["v2.1.0 - Added limit orders"],
"new_repos": [],
"partnerships": ["Integrated with Wormhole"],
"governance_proposals": [],
"notable_events": ["Launched on Base chain"]
},
"threat_level": "low | medium | high",
"threat_assessment": "ProjectX expanding to Base could pull liquidity from Solana",
"opportunities": ["Their limit order feature suggests market demand we could capitalize on"]
}
memory/research/competitors/{name}/{YYYY-MM-DD}.jsonmemory/research/competitors/latest-summary.jsonthreat_level: "high", alert the analyst meshSKILL_OK — competitor scan complete, N competitors analyzedSKILL_PARTIAL — some competitors could not be fully analyzedSKILL_EMPTY — no significant changes detectedSKILL_FAIL — critical failureCommit message format: researcher: competitor-watch — {N} competitors, {M} notable changes