Agent Skills for Substreams development - open-source expertise packages for AI assistants.
This is a Claude Code Plugin that provides AI assistants with expert knowledge about Substreams - a high-performance blockchain data indexing and transformation technology.
When installed, Claude gains deep expertise in:
- Building Substreams projects with
substreams.yamlmanifests - Writing Rust modules (map, store, index types)
- Creating protobuf schemas for blockchain data
- Performance optimization and debugging
Expert knowledge for developing, building, and debugging Substreams projects on any blockchain. Comprehensive guidance on:
- Creating and configuring
substreams.yamlmanifests - Writing efficient Rust modules (map, store, index types)
- Protobuf schema design and code generation
- Performance optimization and avoiding excessive cloning
- Debugging and troubleshooting common issues
Expert knowledge for building SQL database sinks from Substreams data. Covers both approaches:
- Database Changes (CDC) - Stream individual row changes for real-time consistency
- Relational Mappings - Transform data into normalized tables with proper relationships
- PostgreSQL - Advanced patterns, indexing strategies, and performance optimization
- ClickHouse - Analytics-optimized schemas, materialized views, and time-series patterns
- Schema Design - Best practices for blockchain data modeling
Expert knowledge for testing Substreams applications at all levels. Complete testing strategy:
- Unit Testing - Testing individual functions with real blockchain data
- Integration Testing - End-to-end workflows with real block processing
- Performance Testing - Benchmarking, memory profiling, and production mode validation
- FireCore Tools - Using Firehose, StreamingFast API, and testing utilities
- CI/CD Integration - Automated testing pipelines and regression detection
To install the plugin (which pulls the skills):
claude plugin marketplace add https://github.com/streamingfast/substreams-skills
claude plugin install substreams-devOr use the /plugin interactive flow directly within claude.
Validate that everything works properly by running /skills within claude, see example output:
...
Plugin skills (plugin)
substreams-dev · ~58 description tokens
substreams-sink · ~57 description tokens
substreams-sql · ~48 description tokens
substreams-testing · ~43 description tokens
Alternative: Local Development
Clone and load directly without installing:
git clone https://github.com/streamingfast/substreams-skills.git
claude --plugin-dir ./substreams-skillsAdd the skill directory path in Cursor settings:
~/substreams-skills/skills/substreams-dev
VS Code 1.107+ supports Claude Skills (experimental feature):
- Enable the experimental feature in settings
- Add skill paths to your configuration
- Skills will be available to Claude in VS Code
See VS Code 1.107 release notes for details.
substreams-skills/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
└── skills/
├── substreams-dev/
│ ├── SKILL.md # Main skill content
│ └── references/ # Additional reference materials
│ ├── manifest-spec.md
│ ├── module-types.md
│ ├── networks.md
│ └── patterns.md
├── substreams-sql/
│ ├── SKILL.md
│ └── references/
│ ├── clickhouse-patterns.md
│ └── database-changes.md
└── substreams-testing/
├── SKILL.md
└── references/
├── firecore-tools.md
└── integration-testing.md
See SKILL_DEVELOPMENT.md for guidelines on creating new skills.
Validate all skills against the specification:
npm run validateApache 2.0 - See LICENSE