Skip to main content

Overview

Goldsky provides Agent Skills—workflow-based skills that guide AI assistants through complex blockchain data tasks like deploying pipelines, managing secrets, and debugging issues. These skills work with AI coding assistants including Claude Code, Cursor, Windsurf, and other tools that support skill files.

Available skills

SkillPurpose
goldsky-auth-setupInstall CLI, login, and project setup. Handles token-based authentication and project configuration.
goldsky-datasetsDiscover available blockchain datasets and chains (Ethereum, Base, Polygon, Arbitrum, Solana, etc.) with dataset types like erc20_transfers, logs, blocks.
goldsky-secretsManage credentials for pipeline sinks (PostgreSQL, ClickHouse, Kafka, S3, webhooks, etc.). Includes JSON schemas for each secret type.
turbo-pipelinesCreate, configure, and deploy Turbo pipelines. Includes YAML templates for common patterns (ERC-20 filtering, multi-chain, Solana transfers, PostgreSQL output).
turbo-lifecycleList and delete pipelines, manage pipeline state.
turbo-monitor-debugMonitor pipeline health, view logs, inspect live data, troubleshoot issues with error pattern matching.

Key features

  • Templates for common pipeline patterns (minimal blackhole, filtered transfers, multi-chain, multi-sink)
  • JSON schemas for all secret types (PostgreSQL, ClickHouse, Kafka, S3, etc.)
  • Error pattern database with causes and solutions
  • Helper scripts for connection string parsing and log analysis

Installation

Copy skills to your AI tool’s skills directory:
git clone https://github.com/goldsky-io/agent-skills.git
cp -r agent-skills/skills/* .claude/skills/
Skills are automatically discovered by the AI assistant when placed in the appropriate directory.

Example usage

Once installed, you can ask your AI assistant to help with tasks like:
  • “Set up Goldsky CLI and authenticate”
  • “Create a Turbo pipeline to track USDC transfers on Base”
  • “Show me available datasets for Ethereum”
  • “Debug why my pipeline isn’t receiving data”
  • “Configure a PostgreSQL secret for my pipeline sink”
The AI will use the appropriate skill to guide you through each task with the correct commands and configurations.