Agent Skills are experimental. The format and available skills may change.
Install all skills
- Pipes SDK
- Portal
- Migrate to Portal
- Squid perf
Pipes SDK skill
One skill covering the full lifecycle of blockchain indexers built with the Pipes SDK, a lightweight TypeScript framework for EVM, Solana, Tron, Bitcoin, and Hyperliquid.
Example prompts:
- “Create a new indexer for USDC transfers on Ethereum”
- “Create an indexer for Uniswap V3 swaps. Help me fetch the ABI and design the schema”
- “Track USDT transfers on Tron”
- “Track BTC/ETH/SOL perpetual futures fills on Hyperliquid”
- “My indexer crashed with ‘Cannot read properties of undefined (reading ‘topic’)’”
- “My indexer is syncing slowly, help me optimize it”
- “Deploy my indexer to ClickHouse Cloud”
Pipes SDK requires Node.js 22.15 or later —
@subsquid/pipes declares engines.node >= 22.15.0, so 22.0–22.14 does not qualify. Avoid v25 and above, which has zstd decompression bugs that crash large Portal streams. The 1.0 line ships under the npm beta tag, so the skill scaffolds with pnpx @subsquid/pipes-cli@beta rather than @latest.Portal skill
One skill for querying blockchain data across 200+ datasets via SQD Portal without infrastructure.
The skill also picks the execution path: Portal MCP tools for bounded answers in chat, the raw Portal Stream API or curl for reproducible exports, and Pipes or Squid when the question has outgrown an ad hoc query.
Example prompts:
- “Query all USDC transfers on Base between blocks 10M–11M”
- “What’s the correct Portal dataset name for Arbitrum?”
- “Find all contracts deployed by 0x123… on Ethereum”
- “Track Jupiter swap instructions on Solana”
- “Track USDT transfers on Tron”
- “Find all Bitcoin payments to this address in the last month”
- “Show me up to 200 BTC perp fills on Hyperliquid from the past hour”
- “Give me a curl command that exports raw Base USDC transfers as NDJSON”
- “This should become a recurring dashboard — should I use Portal MCP or build an indexer?”
Squid SDK skills
Two skills for existing Squid SDK deployments: one for moving off the v2 gateway, one for profiling sync time.
Example prompts:
- “Migrate my squid from
@subsquid/evm-processorto Portal” - “Move my Solana squid off
setGatewayand onto Portal” - “I’m getting TS errors on
EvmBatchProcessorafter bumping@subsquid/*” - “Compare sync performance of my staging and production Squid deployments”
- “Profile the sync time of my Squid indexer and show me where it slows down”
- “/squid-perf squid-name@v1 squid-name@v2”
The v2 gateways are being sunset. A batch of datasets is already Portal-only, and low-usage datasets retire from both v2 and Portal on August 20, 2026. Check your target dataset before migrating. See the dataset retirements announcement.
Related
- Agent Skills Repository. Browse and contribute on GitHub
- AI Development Overview. All AI resources for SQD
- Portal MCP Server. Query blockchain data via MCP
- Pipes SDK Quickstart. Get started with Pipes SDK
- Gateway to Portal migration guide. The upstream doc behind the
migrate-to-portalskill