Integrations

Intelica — Competitive Intelligence

Try it

Get structured competitive intelligence JSON for any named company, with market score and cited sources.

What it does

Intelica accepts a URL or short company description and returns structured JSON covering positioning, target customer, pain points, detected competitors, battlecard content, cited sources, and a market score with an agent_recommendation field (monitor, counter, partner, acquire, etc.). Calls are priced per request via x402 on Base and Solana mainnets — $0.05 USDC for standard modes, $1.00 for elite modes, $0.20 for batches of up to 10. A free trial key covers the first 5 calls without a wallet, and identical companies reuse the same cached result for 6 hours.

When to use it

  • Pre-demo battlecard for a specific named prospect
  • DeFi protocol risk check before entering a position
  • VC-style investment thesis on a specific startup
  • Market entry scan for a new geography

The skill document

Intelica — Competitive Intelligence Skill

⚠️ 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.

When to use

  • Agent needs competitor analysis on a specific named company before a strategic decision
  • Founder needs a market entry report for a specific new geography
  • Agent is evaluating a specific DeFi protocol before entering a position
  • Sales agent needs a battlecard for a specific upcoming demo
  • VC agent screening a specific investment opportunity
  • Compliance officer evaluating regulatory risk for a specific company or product

When NOT to use

  • General market questions without a specific named target
  • Internal strategy or confidential business planning
  • Regulated or sensitive data (medical records, financial PII, legal documents)
  • When local reasoning or public knowledge is sufficient
  • Without explicit user approval for third-party data submission

Budget controls (important for autonomous agents)

  • Standard analysis: $0.05 USDC per call
  • Elite analysis: $1.00 USDC per call
  • Batch (up to 10): $0.20 USDC
  • Always use /demo (free) to validate before enabling paid autonomous calls
  • Set operator_id to enforce daily budget limits per pipeline
  • Results cached 6 hours — same company twice costs once

How to call

Step 0 — Get free trial key (no wallet needed)

GET 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

Step 1 — Free demo (no payment, no key)

POST https://api.intelica.dev/demo
Content-Type: application/json

{
  "text": "Notion is an all-in-one workspace for teams",
  "mode": "competitive"
}

Step 2 — Full analysis with trial key

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"
}

Step 3 — Full analysis with x402 payment

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

Step 4 — Batch (up to 10 analyses for $0.20)

POST https://api.intelica.dev/batch
X-PAYMENT: 
Content-Type: application/json

{
  "items": [
    { "url": "https://notion.so", "mode": "competitive" },
    { "text": "Coda collaborative doc platform", "mode": "acquisition" }
  ]
}

Context Modes

ModePriceUse when
competitive$0.05Standard competitor analysis (default)
fundraising$0.05Investor narrative, TAM, traction signals
partnership$0.05Strategic fit — complement or rival?
acquisition$0.05Due diligence — moat, technical risk
market_entry$0.05Market gaps, saturation, barriers to entry
crypto_protocol$0.05DeFi moat, tokenomics, regulatory risk
market_entry_execution$1.00Execution plan — partners, budget, week-1 actions
venture_screening$1.00Investment thesis + deal-breakers
regulatory_compliance$1.00EU AI Act, GDPR, HIPAA exposure
risk_assessment$1.00Business model stability, operational risk
sales_enablement$1.00Battlecard + objection handler

Response trust protocol (M2M)

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:

  1. Check sources[] — if fewer than 2 URLs, treat confidence as low
  2. Check confidence — if low, do not execute autonomous actions
  3. Check market_score.agent_recommendation — use as primary action signal
  4. Read analysis{} for full context

Output fields

{
  "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"
}

Payment details

Questions people ask

How is confidence scored?
The response includes a confidence field (high/medium/low) and a sources[] array. The documented trust protocol requires at least 2 source URLs to treat confidence as higher; low confidence should block autonomous actions.
What does it cost?
Standard modes (competitive, fundraising, partnership, acquisition, market_entry, crypto_protocol) are $0.05 USDC per call; elite modes (market_entry_execution, venture_screening, regulatory_compliance, risk_assessment, sales_enablement) are $1.00. Batches of up to 10 cost $0.20. Settlement is x402 on Base or Solana mainnet, and a trial key gives 5 free calls without a wallet.
Is submitted data private?
Inputs are sent to api.intelica.dev, a third-party service. The skill is intended for publicly known companies only — do not submit confidential strategy, proprietary information, or regulated data such as HIPAA, GDPR, or financial PII.

Related skills

Fetch raw ad creative, app, ranking, and revenue data from AdMapix as structured JSON.

by fly0pants4.3k installs296 stars

Join a video meeting as an AI bot with voice, avatar, and screenshare across four operating modes.

by johnpatternai21 installs8 stars

Stores durable facts in a categorized, plain-markdown vault on disk, alongside your agent's built-in memory.

by Iván555 installs18 stars

Generate and edit Draw.io, Mermaid, and Excalidraw diagrams from natural language using a structured JSON spec.

by nssa.io1.0k installs47 stars

Find why your productivity system keeps failing, then apply the smallest fix — capacity math, bottleneck routing, durable local notes.

by Iván854 installs69 stars

More from teodorofodocrispin-cmyk

Browse all skills

Redact PII from text before sending it to an LLM, via a single HTTPS POST — pay per request on Solana or use the 50-request TRIAL.

by teodorofodocrispin-cmyk29 installs1 stars

Sanctions screening (OFAC+UN+EU+UK, 59k entries), KYB bundles for CO/MX/BR/CL/PE, LATAM central bank rates (TRM/TIIE/Selic/dólar blue), business registry lookup and AI market intelligence. x402 v2 micropayments in USDC — no API key, no account. Trial: X-TRIAL: true header.

by teodorofodocrispin-cmyk1 installs1 stars

Pre-execution transaction safety check for autonomous AI agents from the SENTINEL trust oracle (sentinel-agent.dev). Before signing an on-chain transaction on Base, an agent gets a SAFE / UNSAFE / UNKNOWN verdict, a SENTINEL Score (0-100, AAA-D), and an ed25519-signed receipt. Pay-per-call via x402.

by teodorofodocrispin-cmyk