Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

pipes-performance管道性能

Agent Skill

pipes-performance 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pipes-performance(管道性能)
来源仓库:https://github.com/subsquid-labs/agent-skills
仓库路径:skills/pipes-performance
安装命令:
npx skills add https://github.com/subsquid-labs/agent-skills --skill pipes-performance
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/subsquid-labs/agent-skills --skill pipes-performance

简介

pipes-performance 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它专注于性能相关的信息检索,可帮助识别优化点或瓶颈分析。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体调用方式。
  • 安装前建议核实权限范围、维护状态,以及是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Pipes: Performance Optimizer

Specialized agent for analyzing blockchain indexer performance and suggesting optimizations to reduce sync time while maintaining data completeness.

When to Use This Skill

Activate when:

  • User complains indexer is too slow
  • User asks how to speed up sync
  • User wants performance analysis
  • Sync time is taking hours for a simple use case
  • User mentions "slow", "performance", "optimize", or "faster"

Your Role

Help users optimize their indexers for faster sync times by analyzing configuration, suggesting start blocks, identifying bottlenecks, and recommending efficient filtering strategies.

Analysis Checklist

1. Check Current Configuration

Read src/index.ts and identify:

  • Start block: Is it unnecessarily far back in history?
  • Contract list: Are they tracking too many contracts?
  • Filtering type: Address filtering (slow) vs contract filtering (fast)?
  • Block range: How many blocks will be processed?

2. Identify Performance Issues

Common problems:

  • Start block is token deployment block (6M) when only recent data needed
  • Filtering by wallet address (requires scanning all events)
  • Tracking 20+ tokens when only 3-5 are relevant
  • No filters applied, processing all events
  • Full history sync for testing/validation

3. Calculate Expected Sync Time

Use these benchmarks from production indexers:

Block Processing Speed:

  • Factory pattern (Uniswap V3): 8,000-12,000 blocks/sec
  • ERC20 transfers: 9,000-13,000 blocks/sec
  • General EVM events: 8,000-12,000 blocks/sec

Time Estimates:

  • 100K blocks: 10-20 seconds
  • 1M blocks: 1-3 minutes
  • 5M blocks: 5-15 minutes
  • 10M blocks: 10-30 minutes
  • 20M blocks: 30-60 minutes

4. Check Running Indexer

If indexer is currently running:

  • Use BashOutput to check progress
  • Calculate current blocks/sec
  • Estimate time remaining
  • Identify if it's stuck

Optimization Strategies

Strategy 1: Adjust Start Block (FASTEST IMPROVEMENT)

When to use: User doesn't need full history

Implementation:

// Before: Full history from token deployment
range: { from: '6,082,465' }  // USDC deployment (2018)

// After: Recent data only
range: { from: '20,000,000' }  // Last 6 months

Impact:

  • Reduces 14M blocks to 4M blocks
  • Sync time: 60 min → 5-10 min (85% faster)

Guidance:

  • Last 2 weeks: Use fromBlock: 21,000,000 (1-5 min)
  • Last 6 months: Use fromBlock: 19,000,000 (10-30 min)
  • Last year: Use fromBlock: 17,000,000 (20-40 min)

Strategy 2: Reduce Contract List

When to use: Tracking many tokens but only few are relevant

Implementation:

// Before: Tracking 20+ tokens
const TRACKED_TOKENS = [
  '0x...', // Token 1
  '0x...', // Token 2
  // ... 18 more
]

// After: Only track high-volume tokens
const TRACKED_TOKENS = [
  '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', // USDC
  '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', // WETH
  '0x6b175474e89094c44da98b954eedeac495271d0f', // DAI
]

Impact: Proportional to number of tokens removed

Strategy 3: Replace Address Filtering with Contract Filtering

When to use: User is filtering by wallet address

Problem: Address filtering requires scanning ALL events from ALL contracts

// SLOW: Filter by address after fetching everything
.filter((t) => {
  const from = t.event.from.toLowerCase();
  const to = t.event.to.toLowerCase();
  return from === TARGET_ADDRESS || to === TARGET_ADDRESS;
})

Solution: If they know which contracts the address interacts with, track those specifically:

// FAST: Track specific contracts only
contracts: [
  '0xKnownContract1',
  '0xKnownContract2',
]

Impact: Can be 10-100x faster

If address filtering is required:

  • Warn user it will be slow (1-2+ hours)
  • Suggest starting from recent block (20M+)
  • Recommend limiting token list to 3-5 tokens

Strategy 4: Use Parameter Filtering (Server-Side)

When to use: Filtering by indexed event parameters

Implementation:

// Before: Client-side filtering (fetch all, filter locally)
events: {
  transfer: commonAbis.erc20.events.Transfer,
}
.pipe((transfers) =>
  transfers.filter(t => t.event.from === ADDRESS)
)

// After: Server-side filtering (only fetch relevant)
events: {
  transfer: {
    abi: commonAbis.erc20.events.Transfer,
    filter: { from: [ADDRESS] },  // Indexed parameter only
  },
}

Impact: Reduces bandwidth and processing time

Limitation: Only works for indexed event parameters (topic1, topic2, topic3)

Strategy 5: Testing Strategy

For initial development:

  1. Use small block range (1000-5000 blocks)
  2. Validate data correctness
  3. Expand range incrementally
  4. Final run with full range

Example:

// Phase 1: Test (5 seconds)
range: { from: '21,000,000', to: '21,005,000' }

// Phase 2: Validate (2 minutes)
range: { from: '21,000,000', to: '21,100,000' }

// Phase 3: Production (10 minutes)
range: { from: '20,000,000' }

Monitoring Running Indexers

If indexer is currently running, check:

# Check if indexer is running
ps aux | grep "npm run dev\|tsx src/index.ts"

# Monitor output (if running in background)
# Use BashOutput tool with the bash_id

Look for:

  • Current block number / Total blocks
  • Blocks per second
  • ETA
  • Any errors or warnings

Performance Benchmarks

Share these real-world benchmarks:

IndexerPatternBlocksSpeedTime
USDC swapsFactory (Uniswap V3)12M8-12k/sec15-20 min
Vitalik transfersAddress filtering7.3M9-13k/sec10-15 min
All Uniswap poolsFactory pattern12M8-12k/sec30-60 min

Key Insight: Address filtering is NOT slower in blocks/sec, but requires processing more events to find matches.

Optimization Workflow

  1. Read current config

- src/index.ts - Check range, contracts, filters - Calculate total blocks to process

  1. Identify bottlenecks

- Start block too early? - Too many contracts? - Address filtering? - No filters at all?

  1. Suggest optimizations

- Prioritize: Start block adjustment (biggest impact) - Secondary: Reduce contract list - Last resort: If address filtering is required, warn and optimize

  1. Provide implementation

- Show exact code changes - Estimate performance improvement - Give before/after sync times

  1. Testing plan

- Quick test with small range - Validate correctness - Full sync when confident

Output Format

Provide clear analysis:

## Performance Analysis

Current Configuration:
- Start block: 6,082,465 (USDC deployment, 2018)
- Total blocks: ~18M blocks
- Estimated sync time: 60-90 minutes

Bottlenecks Identified:
Start block is unnecessarily old
Contract filtering is efficient
No address filtering

Recommended Optimizations:
1. Adjust start block to 20,000,000 (last 6 months)
   - Reduces to 4M blocks
   - New sync time: 5-10 minutes
   - **85% faster**

2. Keep current contract list (efficient)

3. Test with small range first:
   range: { from: 21,000,000, to: 21,010,000 }

Implementation:
[Show exact code changes]

Expected Results:
Before: 60-90 minutes
After: 5-10 minutes
Improvement: 85% faster

When to NOT Optimize

Don't optimize if:

  • Sync is already fast (<10 minutes)
  • User needs full historical data
  • Current performance meets requirements
  • Optimization would lose required data

Related Skills

Related Documentation

  • PATTERNS.md - Performance optimization patterns and benchmarks

Official Subsquid Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.4%
按下载量换算26

Claude

29.4%
按下载量换算22

Cursor

19.2%
按下载量换算14

Gemini CLI

10.25%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills