Pada halaman ini
Perisikan persaingan amat penting untuk kejayaan perniagaan, tetapi memantau pesaing secara manual memakan banyak masa. Dalam tutorial ini, anda akan membina ejen AI yang secara automatik menyelidik pesaing, menganalisis strategi mereka, dan menghantar laporan mingguan - semuanya menggunakan Claude dan CrawlForge MCP.
Apa yang Akan Anda Bina
Pada penghujung tutorial ini, anda akan mempunyai ejen perisikan persaingan yang:
- Memantau laman web pesaing untuk perubahan
- Menjejak harga dan kemas kini produk pesaing
- Menganalisis strategi kandungan pesaing
- Menjana laporan ringkasan mingguan
- Memberitahu anda tentang perkembangan penting
Masa Diperlukan: 30-45 minit Kos: ~50 credits (dalam peringkat percuma)
Prasyarat
Sebelum bermula, pastikan anda mempunyai:
- Claude Code dipasang:
npm install -g @anthropic-ai/claude-code - CrawlForge MCP dikonfigurasi: Ikuti panduan persediaan kami
- Akaun CrawlForge percuma: Daftar di sini untuk 1,000 credits percuma
Langkah 1: Tentukan Pesaing Anda
Mula-mula, cipta fail konfigurasi untuk pesaing anda. Dalam direktori projek anda:
// competitors.json
{
"competitors": [
{
"name": "Competitor A",
"website": "https://competitor-a.com",
"pricing_page": "https://competitor-a.com/pricing",
"blog": "https://competitor-a.com/blog"
},
{
"name": "Competitor B",
"website": "https://competitor-b.com",
"pricing_page": "https://competitor-b.com/pricing",
"blog": "https://competitor-b.com/blog"
}
],
"focus_areas": [
"pricing",
"features",
"content_strategy"
]
}Langkah 2: Bina Ejen Penyelidikan
Sekarang, mari kita cipta ejen tersebut. Dalam Claude Code, mulakan dengan gesaan sistem ini:
You are a competitive intelligence analyst. Your job is to:
1. Research competitors using CrawlForge tools
2. Track pricing and feature changes
3. Analyze content strategies
4. Identify market trends
5. Generate actionable insights
Always use the most credit-efficient tool:
- fetch_url (1 credit) for basic page content
- extract_content (2 credits) for clean article text
- search_web (5 credits) only when you need to find new sources
- analyze_content (3 credits) for NLP analysis
Never use deep_research (10 credits) for known competitor URLs.Langkah 3: Laksanakan Fungsi Penyelidikan Teras
Fungsi 1: Ambil Harga Pesaing
// In Claude Code, ask:
"Fetch the pricing page for [competitor] and extract:
1. Plan names and prices
2. Feature lists for each tier
3. Any promotional offers
4. Compare to last known pricing"
// CrawlForge will use extract_content (2 credits)
// to get clean, structured pricing dataFungsi 2: Pantau Kemas Kini Produk
// Ask Claude:
"Check [competitor]'s changelog or product updates page.
Summarize any new features released in the past month.
Flag anything that competes directly with our offerings."
// Uses: fetch_url (1 credit) + Claude's analysisFungsi 3: Analisis Strategi Kandungan
// Ask Claude:
"Analyze [competitor]'s blog for the past month:
1. What topics are they covering?
2. What keywords are they targeting?
3. How frequently are they publishing?
4. What's their content format (tutorials, news, case studies)?"
// Uses: extract_links (1 credit) to find blog posts
// Then: batch_scrape (5 credits) to get content
// Then: analyze_content (3 credits) for NLP insightsLangkah 4: Sediakan Penjejakan Perubahan
Alat track_changes CrawlForge memantau halaman untuk kemas kini:
// Set up monitoring for a competitor's pricing page:
"Create a change monitor for https://competitor.com/pricing
Alert me when:
- Prices change by more than 10%
- New plans are added
- Features are added or removed"
// Uses: track_changes (3 credits for setup)
// Ongoing monitoring includedKonfigurasi Penjejakan Perubahan
{
"url": "https://competitor.com/pricing",
"trackingOptions": {
"trackText": true,
"trackStructure": true,
"granularity": "section",
"significanceThresholds": {
"minor": 0.1,
"moderate": 0.3,
"major": 0.7
}
},
"monitoringOptions": {
"interval": 86400000, // Daily check
"notificationThreshold": "moderate"
}
}Langkah 5: Jana Laporan Mingguan
Cipta gesaan laporan mingguan:
Generate a competitive intelligence report for the week of [date]:
## Executive Summary
[2-3 sentence overview of key findings]
## Pricing Intelligence
[Any pricing changes detected across competitors]
## Product Updates
[New features or changes from competitors]
## Content Analysis
[What competitors are publishing and why it matters]
## Market Trends
[Patterns observed across multiple competitors]
## Recommended Actions
[3-5 specific actions we should consider]
---
Sources: [List all URLs analyzed]
Credits Used: [Total credits consumed]Langkah 6: Automasikan dengan Tugas Berjadual
Untuk kegunaan pengeluaran, jadualkan ejen anda untuk dijalankan setiap minggu:
# Create a weekly cron job (macOS/Linux)
crontab -e
# Add this line (runs every Monday at 9 AM):
0 9 * * 1 cd /path/to/project && claude "Run weekly competitive intelligence report" > /path/to/reports/report-$(date +%Y%m%d).mdPetua Pengoptimuman Credit
Kekalkan kos anda rendah dengan strategi ini:
1. Gunakan Alat Termurah Dahulu
| Tugas | Tidak Cekap | Cekap |
|---|---|---|
| Semak halaman harga | deep_research (10) | extract_content (2) |
| Cari catatan blog pesaing | search_web (5) | extract_links (1) |
| Dapatkan teks artikel | scrape_with_actions (5) | fetch_url (1) |
2. Kelompokkan Permintaan Anda
// Instead of 10 separate fetch_url calls (10 credits):
// Use batch_scrape for multiple URLs (5 credits total)
"Batch scrape these 10 competitor pages: [urls]"3. Cache Data Pesaing
Susun analisis anda untuk menggunakan semula data yang diambil:
// Fetch once, analyze multiple times:
"1. Fetch competitor.com/pricing
2. Extract pricing tiers
3. Compare to our pricing
4. Identify positioning gaps
5. Suggest response strategies"
// All analysis after step 1 uses Claude (no additional credits)Contoh Output
Inilah rupa laporan perisikan persaingan:
# Competitive Intelligence Report
## Week of January 20, 2026
### Executive Summary
Competitor A launched a new enterprise tier at $199/month, positioning
directly against our Pro plan. Competitor B increased their content
velocity by 40%, focusing heavily on AI automation tutorials.
### Pricing Intelligence
| Competitor | Change | Details |
|------------|--------|---------|
| Competitor A | New Tier | Enterprise plan launched at $199/mo |
| Competitor B | No Change | Prices stable for 3 months |
### Product Updates
**Competitor A:**
- Released API v2 with GraphQL support
- Added team collaboration features
- New dashboard analytics
**Competitor B:**
- Mobile app beta launched
- Webhook improvements
### Content Analysis
**Competitor A (12 posts):**
- Primary topics: AI automation, enterprise use cases
- Target keywords: "enterprise AI", "team collaboration"
- Format: Long-form tutorials (avg 2,500 words)
**Competitor B (8 posts):**
- Primary topics: Developer tutorials, integrations
- Target keywords: "API integration", "developer tools"
- Format: Code-heavy how-tos (avg 1,800 words)
### Recommended Actions
1. Consider matching Competitor A's enterprise pricing
2. Accelerate our content velocity to maintain SEO position
3. Prioritize GraphQL support in our roadmap
4. Create competitive comparison landing page
---
**Credits Used:** 47/1,000 (free tier)
**Sources Analyzed:** 24 pages across 2 competitorsLanjutan: Pemantauan Berbilang Pesaing
Untuk menjejak banyak pesaing, gunakan corak cekap ini:
const competitors = [
{ name: "A", url: "https://a.com" },
{ name: "B", url: "https://b.com" },
{ name: "C", url: "https://c.com" },
// ... up to 50 URLs
];
// Use batch_scrape for all pricing pages at once
"Batch scrape all competitor pricing pages and compare:
${competitors.map(c => c.url + '/pricing').join('\n')}"
// 5 credits for up to 50 URLs
// vs 50 credits for individual fetch_url callsLangkah Seterusnya
Anda telah membina ejen perisikan persaingan yang berfungsi. Inilah cara untuk melanjutkannya:
- Tambah analisis sentimen: Gunakan
analyze_contentpada ulasan pesaing - Jejak media sosial: Pantau Twitter/LinkedIn pesaing
- Sediakan amaran: Konfigurasikan pemberitahuan e-mel untuk perubahan utama
- Bina papan pemuka: Visualkan trend dari masa ke masa
Sumber Berkaitan:
Mulakan Secara Percuma - 1,000 credits disertakan
Cuba sendiri — tiada pendaftaran diperlukan
Jalankan mana-mana daripada 27 alat scraping dan pengekstrakan CrawlForge dalam playground, kemudian mula secara percuma dengan 1,000 credits.
1,000 credits percuma • Isi semula setiap bulan • Tiada kad kredit diperlukan
Tag
Tentang Penulis
Kekal dikemas kini dengan pandangan terkini
Dapatkan tutorial, kemas kini produk dan petua web scraping terus ke peti masuk anda.
Tiada spam. Berhenti melanggan bila-bila masa.