Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

turbo-pipelines涡轮管道

Agent Skill

turbo-pipelines 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

808

周安装

33

GitHub Stars

公开资料未说明

下载量

261
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/goldsky-io/goldsky-agent --skill turbo-pipelines

简介

turbo-pipelines 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它能自动提取 GitHub 仓库的 Issue、PR 及协作动态,辅助代码审查与项目进度跟踪。
  • 安装命令:npx skills add https://github.com/goldsky-io/goldsky-agent --skill turbo-pipelines。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Turbo Pipeline Configuration & Architecture

YAML configuration reference and architecture guide for Turbo pipelines. For interactive pipeline building, use /turbo-builder. For troubleshooting, use /turbo-doctor. For transform implementation, use /turbo-transforms.

CRITICAL: Always validate YAML with goldsky turbo validate <file.yaml> before showing complete pipeline YAML to the user or deploying.

Quick Start

name: my-first-pipeline
resource_size: s
sources:
  transfers:
    type: dataset
    dataset_name: base.erc20_transfers
    version: 1.2.0
    start_at: latest
transforms: {}
sinks:
  output:
    type: blackhole
    from: transfers
goldsky turbo validate pipeline.yaml   # Validate first
goldsky turbo apply pipeline.yaml -i   # Deploy + inspect

Prerequisites

  • Goldsky CLIcurl https://goldsky.com | sh
  • Turbo extension (separate binary) — curl https://install-turbo.goldsky.com | sh
  • Logged ingoldsky login
  • Secrets created for sinks if using PostgreSQL, ClickHouse, Kafka, etc. (see /secrets)

Architecture Decisions

Source Type Selection

ScenarioSource TypeWhy
Decode contract events from logsdatasetNeed raw_logs + _gs_log_decode()
Track token transfersdataseterc20_transfers has structured data
Historical backfill + livedatasetstart_at: earliest processes history
Live token balanceskafkalatest_balances_v2 is a streaming topic
Real-time state snapshotskafkaKafka delivers latest state continuously
Only need new data going forwardEitherDataset with start_at: latest or Kafka
Note: Kafka sources are used in production but are not documented in official Goldsky docs. Contact Goldsky support for topic names.

Data Flow Patterns

PatternWhen to UseTemplate
LinearSingle source, single destination, simple processingtemplates/linear-pipeline.yaml
Fan-outOne source → multiple sinks (different views/subsets)templates/fan-out-pipeline.yaml
Fan-inMultiple event types → UNION ALL → one tabletemplates/fan-in-pipeline.yaml
Multi-chainSame logic across chains (separate pipelines)templates/multi-chain-templated.yaml

For detailed pattern diagrams, YAML examples, and multi-chain deployment guidance, read references/architecture-patterns.md.

Resource Sizing

SizeWorkersCPUMemoryWhen to Use
xs0.40.5 GiSmall datasets, light testing
s10.81.0 GiSimple filters, single source/sink, low volume (default)
m41.62.0 GiMultiple sinks, Kafka streaming, moderate transform complexity
l103.24.0 GiMulti-event decoding + UNION ALL, high-volume backfill
xl206.48.0 GiLarge chain backfills, complex JOINs
xxl4012.816.0 GiHighest throughput; up to 6.3M rows/min

Start small and scale up — defensive sizing avoids wasted resources.

Sink Selection

DestinationSink TypeBest For
Application DBpostgresRow-level lookups, joins, application serving
Real-time aggregatespostgres_aggregateBalances, counters, running totals via triggers
Analytics queriesclickhouseLarge-scale aggregations, time-series data
Event processingkafkaDownstream consumers, event-driven systems
Serverless streamings2_sinkS2.dev streams, alternative to Kafka
NotificationswebhookLambda functions, API callbacks, alerts
Data lakes3_sinkLong-term archival, batch processing
TestingblackholeValidate pipeline without writing data

For full sink field specifications, read references/sink-reference.md.

Streaming vs Job Mode

ScenarioModeWhy
Real-time dashboardStreamingContinuous updates needed
Backfill 6 months of historyJobOne-time, stops when done
Real-time + catch-up on deployStreamingstart_at: earliest does backfill then streams
Export data to S3 onceJobNo need for continuous processing
Webhook notifications on eventsStreamingNeeds to react as events happen
Load test with historical dataJobProcess and inspect, then discard

Job mode rules: Runs to completion, auto-deletes ~1hr after finishing. Must delete before redeploying. Cannot pause/resume/restart.

Pipeline Splitting

Default to one pipeline with multiple sinks when the user wants the same source data sent to multiple destinations. A single Turbo pipeline supports multiple sinks natively — each sink has a from: field pointing at a source or transform by name, and sinks run independently (one failing does not block the others, and each can have its own batch_size / batch_flush_interval).

Do NOT split into separate pipelines just because there are multiple destinations. Generating one pipeline per sink duplicates the source ingestion, wastes resources, and decouples deployments that should be atomic.

Split into multiple pipelines only when: sources are fundamentally different (different chains with independent lifecycles), the destinations need different resource sizes, or the user explicitly asks for separate pipelines.

See references/architecture-patterns.md for fan-out (one source → multiple sinks) and fan-in (UNION ALL) YAML examples, and templates/multi-sink-pipeline.yaml / templates/fan-out-pipeline.yaml / templates/fan-in-pipeline.yaml for ready-to-adapt configs.


Configuration Reference

Pipeline Structure

name: my-pipeline          # Required: unique identifier (lowercase, hyphens)
resource_size: s            # Required: xs/s/m/l/xl/xxl
job: true                   # Optional: one-time batch (default: false = streaming)

sources:
  source_name:
    type: dataset           # or: kafka
    # ... source config

transforms:                 # Optional
  transform_name:
    type: sql               # or: script, handler, dynamic_table
    # ... transform config

sinks:
  sink_name:
    type: postgres           # or: clickhouse, kafka, webhook, s3_sink, etc.
    # ... sink config

Source Configuration

Dataset Source

sources:
  my_source:
    type: dataset
    dataset_name: <chain>.<dataset_type>
    version: <version>
    start_at: latest | earliest    # EVM chains
    # start_block: <slot_number>   # Solana only
    # end_block: <block_number>    # Optional: for bounded backfills
    # filter: >-                   # Optional: SQL WHERE for source-level pre-filtering
    #   address = '0x...' AND block_number >= 10000000
FieldRequiredDescription
typeYesdataset for blockchain data
dataset_nameYesFormat: <chain>.<dataset_type>
versionYesDataset version (e.g., 1.2.0)
start_atEVMlatest or earliest
start_blockSolanaSpecific slot number (omit for latest)
end_blockNoStop at this block (for bounded backfills)
filterNoSQL WHERE clause — pre-filters at ingestion (efficient)

Use filter for contract addresses and block ranges (coarse pre-filtering). Use transform WHERE for fine-grained filtering.

For chain prefixes and dataset types, see /datasets.

Kafka Source

sources:
  my_source:
    type: kafka
    topic: base.raw.latest_balances_v2

No start_at or version fields. Optional: filter, include_metadata, starting_offsets.

Transform Configuration

TypeUse Case
sqlFiltering, projections, SQL functions
scriptCustom TypeScript/WASM logic
handlerCall external HTTP APIs to enrich
dynamic_tableLookup tables backed by a database

SQL Transform

transforms:
  filtered:
    type: sql
    primary_key: id
    sql: |
      SELECT id, sender, recipient, amount
      FROM source_name
      WHERE amount > 1000
FieldRequiredDescription
typeYessql
primary_keyYesColumn for uniqueness/ordering
sqlYesSQL query (reference sources by name)
fromNoOverride default source (for chaining)

Transform Chaining

Chain transforms using from:

transforms:
  step1:
    type: sql
    primary_key: id
    sql: SELECT * FROM source WHERE amount > 100
  step2:
    type: sql
    primary_key: id
    from: step1
    sql: SELECT *, 'processed' as status FROM step1

For TypeScript, handler, and dynamic table transforms, see /turbo-transforms.

Sink Configuration

Quick examples for common sinks. For full field specs of all sink types, read references/sink-reference.md.

PostgreSQL

sinks:
  output:
    type: postgres
    from: my_transform
    schema: public
    table: my_table
    secret_name: MY_POSTGRES_SECRET
    primary_key: id

ClickHouse

sinks:
  output:
    type: clickhouse
    from: my_transform
    table: my_table
    secret_name: MY_CLICKHOUSE_SECRET
    primary_key: id

Blackhole (Testing)

sinks:
  output:
    type: blackhole
    from: my_transform

Checkpoint Behavior

  • Preserved by default when updating a pipeline
  • Tied to source names — renaming a source resets its checkpoint
  • Tied to pipeline names — renaming the pipeline resets all checkpoints

To reset checkpoints: rename the source or pipeline. Warning: this reprocesses all historical data.


Starter Templates

TemplateDescriptionUse Case
minimal-erc20-blackhole.yamlSimplest pipeline, no credentialsQuick testing
filtered-transfers-sql.yamlFilter by contract addressUSDC, specific tokens
postgres-output.yamlWrite to PostgreSQLProduction data storage
multi-chain-pipeline.yamlCombine multiple chainsCross-chain analytics
solana-transfers.yamlSolana SPL tokensNon-EVM chains
multi-sink-pipeline.yamlMultiple outputsArchive + alerts + streaming
linear-pipeline.yamlSimple decode → filter → sinkBasic linear flow
fan-out-pipeline.yamlOne source → multiple sinksMulti-destination
fan-in-pipeline.yamlMultiple events → UNION ALLActivity feeds
multi-chain-templated.yamlPer-chain pipeline patternIndependent chain deploys

Template location: templates/ (relative to this skill's directory)


CLI Quick Reference

ActionCommand
Install Goldsky CLI`curl https://goldsky.com \sh`
Install Turbo extension`curl https://install-turbo.goldsky.com \sh`
Validate (REQUIRED)goldsky turbo validate pipeline.yaml
Deploy/Updategoldsky turbo apply pipeline.yaml
Deploy + Inspectgoldsky turbo apply pipeline.yaml -i
List pipelinesgoldsky turbo list
List datasetsgoldsky dataset list (slow, 30-60s)
List secretsgoldsky secret list

For lifecycle commands (pause/resume/restart/delete) and monitoring (inspect/logs), see /turbo-operations.


Troubleshooting

See references/troubleshooting.md for CLI hanging, validation errors, and runtime errors.


Related

  • /turbo-builder — Interactive wizard to build pipelines step-by-step
  • /turbo-doctor — Diagnose and fix pipeline issues
  • /turbo-operations — Lifecycle commands and monitoring reference
  • /turbo-transforms — SQL, TypeScript, and dynamic table transform reference
  • /datasets — Dataset names and chain prefixes
  • /secrets — Sink credential management

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.37%
按下载量换算90

Claude

33.11%
按下载量换算86

Cursor

17.46%
按下载量换算46

Gemini CLI

9.21%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills