What is Comet Skill?
Open-source Claude Code / Codex skill that connects an agent to a logged-in Perplexity Comet browser session over Chrome DevTools Protocol. Agent hands a deep-research task to Comet, which opens a tab, submits the query in Deep Research mode, and returns the search URL — without paying for the Perplexity API or sitting on tens of thousands of waiting tokens. Pair Comet Skill (deep research delegation) with Scavio MCP (structured multi-platform search) so the coding agent has both a delegated researcher and a fast typed-JSON lookup tool.
Searching X (Twitter) with Comet Skill
This integration lets your Comet Skill agent search X (Twitter) in real time via the Scavio API. The agent gets back structured JSON with post snippets, author handles, timestamps, engagement signals — ready for reasoning and decision-making.
Setup
// Install per repo README; add Scavio MCP separately for fast lookupsCode Example
Here is a complete Comet Skill agent that searches X (Twitter) using Scavio:
# Generic HTTP integration for Comet Skill
# Use your framework's HTTP request tool to call:
# POST https://api.scavio.dev/api/v1/search
# Header: x-api-key: your_scavio_api_key
# Body: {"query": "your search query"}Full Working Example
A production-ready example with error handling:
# Generic HTTP integration for Comet Skill
# Use your framework's HTTP request tool to call:
# POST https://api.scavio.dev/api/v1/search
# Header: x-api-key: your_scavio_api_key
# Body: {"query": "your search query"}Pricing
Scavio offers a free tier with 500 credits/month (1 credit per search). No credit card required. This is enough to build and test your Comet Skill integration. Paid plans start at $30/month for higher volumes.