Install
openclaw skills install @teodorofodocrispin-cmyk/intelica-competitive-intelligenceCompetitive intelligence API for autonomous AI agents. Analyzes any URL or company description and returns structured JSON with market positioning, pain points, competitors, battlecard, verified sources, market signals, and executable Market Score. Pay-per-call via x402 on Base and Solana mainnet. Trial key available — no wallet required for first 5 calls. WARNING: Submitted data is sent to api.intelica.dev (third party). Use only for public companies. Do not submit confidential, regulated, or proprietary data. Paid calls ($0.05-$1.00 USDC) require budget controls before autonomous use.
openclaw skills install @teodorofodocrispin-cmyk/intelica-competitive-intelligence⚠️ DATA PRIVACY NOTICE: This skill sends the provided company name, URL, description, and context to the Intelica API (api.intelica.dev), a third-party service. Do NOT submit confidential business plans, proprietary strategy, regulated data (HIPAA, GDPR-sensitive), or personally identifiable information. Use only for publicly available companies and markets. Paid calls ($0.05–$1.00 USDC) are made autonomously when a payment method is configured — set budget controls before enabling autonomous use.
Intelica returns structured competitive intelligence for a specific named company or market. Invoke only when the agent has a clear, scoped target and the user has approved external data submission.
/demo (free) to validate before enabling paid autonomous callsoperator_id to enforce daily budget limits per pipelineGET https://api.intelica.dev/api-keys/trial
→ {"key": "ikey_trial_...", "calls_remaining": 5, "expires_at": "..."}
# Use immediately — extract response.key and pass as X-API-KEY header
POST https://api.intelica.dev/demo
Content-Type: application/json
{
"text": "Notion is an all-in-one workspace for teams",
"mode": "competitive"
}
POST https://api.intelica.dev/intel
X-API-KEY: ikey_trial_...
Content-Type: application/json
{
"text": "Notion is an all-in-one workspace for teams",
"mode": "competitive"
}
POST https://api.intelica.dev/intel
Content-Type: application/json
{
"url": "https://notion.so",
"mode": "competitive",
"context": "I'm building a note-taking app for developers"
}
# Returns HTTP 402 with Base + Solana payment options
# After payment, retry with X-PAYMENT header
POST https://api.intelica.dev/batch
X-PAYMENT: <x402 signed payment>
Content-Type: application/json
{
"items": [
{ "url": "https://notion.so", "mode": "competitive" },
{ "text": "Coda collaborative doc platform", "mode": "acquisition" }
]
}
| Mode | Price | Use when |
|---|---|---|
competitive | $0.05 | Standard competitor analysis (default) |
fundraising | $0.05 | Investor narrative, TAM, traction signals |
partnership | $0.05 | Strategic fit — complement or rival? |
acquisition | $0.05 | Due diligence — moat, technical risk |
market_entry | $0.05 | Market gaps, saturation, barriers to entry |
crypto_protocol | $0.05 | DeFi moat, tokenomics, regulatory risk |
market_entry_execution | $1.00 | Execution plan — partners, budget, week-1 actions |
venture_screening | $1.00 | Investment thesis + deal-breakers |
regulatory_compliance | $1.00 | EU AI Act, GDPR, HIPAA exposure |
risk_assessment | $1.00 | Business model stability, operational risk |
sales_enablement | $1.00 | Battlecard + objection handler |
The response includes root-level fields for programmatic trust validation:
{
"sources": ["url1", "url2"],
"confidence": "high | medium | low",
"market_score": {
"threat_level": "high | medium | low",
"moat_strength": 0.72,
"agent_recommendation": "monitor | counter | partner | acquire"
},
"analysis": { ... }
}
Agent decision pipeline:
sources[] — if fewer than 2 URLs, treat confidence as lowconfidence — if low, do not execute autonomous actionsmarket_score.agent_recommendation — use as primary action signalanalysis{} for full context{
"analysis": {
"company_or_product": "string",
"positioning_summary": "string",
"target_customer": "string",
"core_value_props": ["string"],
"user_pain_points": ["string"],
"detected_competitors": ["string"],
"unique_angle": "string",
"confidence": "high | medium | low",
"sources": ["url1", "url2", "url3"],
"market_score": {
"threat_level": "high | medium | low",
"moat_strength": 0.0,
"market_maturity": "emerging | growing | mature | declining",
"agent_recommendation": "monitor | counter | ignore | partner"
}
},
"model": "claude-sonnet-4-6 | claude-haiku-4-5-20251001",
"tier": "elite | standard",
"mode": "string",
"detected_language": "en | es | pt | de | fr | it | ja | ko | zh"
}