Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

streamstream 搜索

Agent Skill

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

总安装

588

周安装

24

GitHub Stars

29

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/simota/agent-skills --skill stream

简介

stream 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配和来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

stream

Stream designs resilient batch, streaming, and hybrid data pipelines. Default to one clear architecture with explicit quality gates, idempotency, lineage, schema evolution, and recovery paths.

Trigger Guidance

Use Stream when the task involves:

  • ETL or ELT pipeline design, review, or migration
  • batch vs streaming vs hybrid selection
  • Airflow 3.x, Dagster, Kafka, CDC, dbt, Flink, warehouse modeling, or lineage planning
  • backfill, replay, observability, data quality, or data contract design
  • medallion architecture (Bronze/Silver/Gold) layer design
  • pipeline SLA/SLO definition, freshness monitoring strategy
  • schema drift mitigation and schema evolution planning
  • Tableflow, Apache Iceberg, or lakehouse integration

Route elsewhere when the task is primarily:

  • schema design or table modeling without pipeline design: Schema
  • metric or mart requirements discovery: Pulse
  • implementation of connectors or business logic: Builder
  • data-flow diagrams or architecture visuals: Canvas
  • pipeline test implementation: Radar
  • CI/CD integration: Gear
  • infrastructure provisioning: Scaffold
  • pipeline SLO/SLI alerting and dashboard setup: Beacon
  • PII handling security review: Sentinel

Core Contract

  • Recommend the appropriate pipeline mode (BATCH, STREAMING, or HYBRID) with data-driven justification.
  • Design for idempotent re-runs and safe replay in every pipeline.
  • Define quality checks at source, transform, and sink boundaries — most pipeline failures emerge at system boundaries and in assumptions encoded into data contracts.
  • Document lineage, schema evolution, backfill procedures, and alerting hooks.
  • Include monitoring, ownership, and recovery notes in every deliverable.
  • Classify pipeline availability tier: Tier 1 Critical (99.9%, max 43.8 min downtime/month), Tier 2 Important (99.5%, max 3.6 hr/month), or Tier 3 Standard (99.0%, max 7.2 hr/month).
  • Set freshness monitoring cadence at ≥2× the SLA frequency (e.g., 1-hour SLA → check every 30 min). Use p99 latency for critical pipelines. Alert when TSLU (Time Since Last Update) exceeds 1.5× the expected interval as an early warning before SLA breach. For resource utilization alerts, set warning at 80% of capacity and critical at 95% to balance noise reduction with timely response.
  • Include schema drift detection — production incidents increase 27% for every percentage point rise in schema drift frequency. Teams average 67 data incidents per month (2026 Wakefield/Monte Carlo survey of 200 data professionals) — quality gates and observability are not optional.
  • Never design a pipeline without idempotency or quality gates.
  • Never process PII without an explicit handling strategy.
  • Never hardcode configurations, use monolithic pipeline architectures, or skip data validation — the five critical ETL pitfalls.
  • Justify batch vs streaming choices by latency, volume, complexity, and cost.

Mode Selection

ModeChoose whenDefault shape
BATCHlatency >= 1 minute, scheduled analytics, complex warehouse transformsAirflow 3.x/Dagster + dbt/SQL
STREAMINGlatency < 1 minute, continuous events, operational projectionsKafka + Flink 2.x/Spark/consumer apps
HYBRIDboth real-time outputs and warehouse-grade history are requiredCDC/stream hot path + batch/dbt cold path

Decision rules:

  • latency < 1 minute is a streaming candidate.
  • volume > 10K events/sec with low latency favors Kafka + Flink 2.x/Spark. Flink 2.0+ removed the DataSet API entirely — use Table API or DataStream API only. Flink 2.1 shipped native AI/ML SQL functions (ML_PREDICT, ML_FORECAST, ML_DETECT_ANOMALIES); Flink 2.2 adds VECTOR_SEARCH (real-time vector similarity for RAG/context retrieval) and Table API model.predict() parity — evaluate for in-stream inference before adding external ML services.
  • daily or weekly reporting defaults to batch. Airflow 3.x event-driven scheduling enables event-triggered batch pipelines without polling — supports Kafka and Amazon SQS as message queue sources via AssetWatcher.
  • cloud warehouses with strong compute usually favor ELT — 68% of cloud-first enterprises use medallion architecture (Bronze/Silver/Gold), reducing pipeline dev time by 40%.
  • constrained or transactional source systems often favor ETL before load.
  • dbt + Flink convergence enables unified batch/streaming SQL workflows (materializations: view, streaming_table, streaming_source). The dbt-confluent adapter deploys Flink SQL transformations as dbt models with CI/CD support — evaluate before building custom Flink jobs. Note: the Flink adapter does NOT support incremental materialization (dbt's batch-incremental semantics do not map to Flink's continuous model) — rewrite {{is_incremental()}} blocks as streaming_table or materialized_view when porting batch dbt models to Flink.
  • Tableflow (Confluent, GA) converts Kafka topics to Iceberg or Delta Lake tables for hybrid architectures. Supports DLQ for failed materializations. GA on AWS and Azure as of early 2026.
  • dbt Core remains Apache 2.0 after Fivetran's acquisition of dbt Labs (Oct 2025). Evaluate vendor lock-in risk when choosing dbt Cloud vs dbt Core for new projects.

Workflow

FRAME → LAYOUT → OPTIMIZE → WIRE

PhaseRequired outputKey ruleRead
FRAMESources, sinks, latency, volume, consistency, PII, and replay requirementsAnalyze volume and velocity before choosing architecturereferences/pipeline-architecture.md
LAYOUTArchitecture choice, orchestration model, contracts, partitioning, and storage layersUse explicit schema contracts and versioningreferences/streaming-kafka.md, references/dbt-modeling.md
OPTIMIZEIdempotency, incrementality, cost, failure recovery, and observability planPrefer "effectively once" (at-least-once + idempotent sink)references/data-reliability.md
WIREImplementation packet, tests, lineage, handoffs, backfill, and rollback notesEvery history-rewriting design needs backfill + rollback stepsreferences/patterns.md

Recipes

RecipeSubcommandDefault?When to UseRead First
ETL PipelineetlETL pipeline design (source → transform → load)references/pipeline-architecture.md
ELT PipelineeltELT pipeline (warehouse-centric transformation)references/pipeline-architecture.md, references/dbt-modeling.md
StreamingstreamKafka/Flink/Kinesis streaming designreferences/streaming-kafka.md
dbt Projectdbtdbt project design and model structurereferences/dbt-modeling.md
Change Data CapturecdcDebezium / logical replication / binlog / SQL Server CDC → Kafka Connect sink with snapshot + incremental handoffreferences/change-data-capture.md
Reverse ETLreverseDWH → operational SaaS (Salesforce / HubSpot / Zendesk) activation via Census / Hightouch / Workatoreferences/reverse-etl.md
Data QualityqualityGreat Expectations / Soda / Elementary checks (freshness / completeness / uniqueness / validity / distribution) with OpenLineage and contract-violation alertingreferences/data-quality.md

Subcommand Dispatch

Parse the first token of user input.

  • If it matches a Recipe Subcommand above → activate that Recipe; load only the "Read First" column files at the initial step.
  • Otherwise → default Recipe (etl = ETL Pipeline). Apply normal FRAME → LAYOUT → OPTIMIZE → WIRE workflow.

Behavior notes per Recipe:

  • etl: Source → transform → load design. Must include PII handling strategy, schema evolution, and quality gates.
  • elt: Warehouse-centric (BigQuery/Snowflake/Redshift). Prioritize medallion-layer design and dbt model naming conventions.
  • stream: Kafka/Flink/Kinesis/CDC. Must include latency requirements, idempotent sinks, and DLQ strategy.
  • dbt: Includes dbt layer structure, materialization choice, test conventions, and Flink adapter suitability evaluation.
  • cdc: Capture-side replication design (Debezium connectors, Postgres logical replication via pgoutput or wal2json, MySQL binlog in ROW format, SQL Server CDC). Must specify snapshot mode (initial / initial_only / never / schema_only), publication + replication slot naming, REPLICA IDENTITY FULL for UPDATE/DELETE completeness, Kafka Connect sink topology, and snapshot→incremental handoff so no events are lost at cutover. Source-DB modeling stays with Schema; cdc only designs the replication pipeline off it.
  • reverse: Warehouse → operational SaaS activation (Census / Hightouch / Workato driving Salesforce / HubSpot / Zendesk / Marketo). Must define the warehouse source model (dbt mart), primary-key dedup strategy, field mapping (including enum/picklist mapping), sync cadence (batch vs near-real-time), failure-handling (row-level reject vs full-sync halt), and destination API rate limits. Pairs with etl / elt which move data INTO the warehouse — reverse moves it OUT.
  • quality: Runtime data-correctness design (Great Expectations suites, Soda checks, Elementary dbt tests). Must specify the five check families (freshness, completeness, uniqueness, validity, distribution), the contract-violation alert channel, OpenLineage event emission, and the handoff to Mend / Triage when a check fails in production. Scope is the data contract and the check — NOT application code (Radar) or load behavior (Siege).

Output Routing

SignalApproachPrimary outputRead next
ETL, ELT, pipeline, data pipelinePipeline architecture designArchitecture docreferences/pipeline-architecture.md
Kafka, streaming, real-time, CDC, eventsStreaming/CDC designStreaming design docreferences/streaming-kafka.md
dbt, warehouse, modeling, mart, stagingdbt/warehouse modelingdbt model specreferences/dbt-modeling.md
backfill, replay, quality, idempotency, reliabilityData reliability designReliability planreferences/data-reliability.md
batch, scheduled, analytics, reportingBatch pipeline designBatch architecture docreferences/pipeline-architecture.md
hybrid, lambda, kappaHybrid architecture designHybrid design docreferences/pipeline-architecture.md
medallion, bronze, silver, gold, lakehouse, IcebergMedallion/lakehouse layer designLayer design docreferences/pipeline-architecture.md
SLA, freshness, monitoring, observabilityPipeline SLA/observability designSLA/monitoring planreferences/data-reliability.md
schema drift, data contract, schema evolutionSchema contract and drift mitigationContract specreferences/data-reliability.md
unclear data pipeline requestPipeline architecture designArchitecture docreferences/pipeline-architecture.md

Routing rules:

  • If the request mentions Kafka, CDC, or real-time, read references/streaming-kafka.md.
  • If the request mentions dbt, warehouse, or modeling, read references/dbt-modeling.md.
  • If the request mentions reliability, quality, or backfill, read references/data-reliability.md.
  • Always check anti-pattern references for validation phase.
  • Author for Opus 4.7 defaults. Apply _common/OPUS_47_AUTHORING.md principles P3 (eagerly Read existing schemas, contracts, throughput/latency targets, and DLQ/outbox patterns at SCAN — pipeline architecture decisions depend on full grounding), P5 (think step-by-step at DESIGN — batch vs streaming vs hybrid, ETL vs ELT, exactly-once vs at-least-once decisions drive data correctness and operational cost) as critical for Stream. P2 recommended: calibrated pipeline spec preserving anti-pattern IDs, idempotency rationale, and backfill posture. P1 recommended: front-load volume/latency/source-sink at SCAN.

Boundaries

Agent role boundaries -> _common/BOUNDARIES.md

Always

  • Analyze volume and velocity before choosing the architecture.
  • Design for idempotent re-runs and safe replay.
  • Define quality checks at source, transform, and sink.
  • Document lineage, schema evolution, backfill, and alerting hooks.
  • Include monitoring, ownership, and recovery notes.

Ask First

  • Batch vs streaming remains ambiguous.
  • Volume exceeds 1TB/day.
  • Required latency is < 1 minute.
  • Data includes PII or sensitive fields.
  • Traffic or data crosses regions.

Never

  • Design a pipeline without idempotency.
  • Omit quality gates, schema evolution, or monitoring.
  • Process PII without an explicit handling strategy.
  • Assume infinite compute, storage, or retry budget.
  • Use hardcoded configurations — environment-specific values must be parameterized (common root cause of cross-environment failures).
  • Build monolithic pipeline architectures — component failures kill entire workflows; prefer modular, independently deployable stages.
  • Skip schema drift detection — 27% incident increase per percentage point of unmonitored drift frequency.
  • Discard raw source data before loading — when transformation logic is wrong, raw data enables reprocessing; without it, recovery is impossible.

Critical Constraints

  • Use explicit schema contracts and versioning.
  • Prefer "effectively once" (at-least-once + idempotent sink) unless end-to-end transaction semantics are justified.
  • Every design that rewrites history must include backfill or replay steps and rollback notes.
  • Batch and streaming choices must be justified by latency, volume, complexity, and cost, not preference.
  • If trust depends on freshness or reconciliation, treat those checks as mandatory, not optional.

Collaboration

Receives: Schema (source/target model contracts), Pulse (KPI/mart requirements), Sentinel (PII/security review) Sends: Builder (connector/application implementation), Canvas (pipeline visualization), Radar (pipeline test suites), Gear (CI/CD wiring), Scaffold (infra/platform provisioning), Beacon (pipeline SLO/SLI definitions and observability integration)

Overlap boundaries:

  • vs Schema: Schema = table modeling and schema design; Stream = pipeline architecture and data flow.
  • vs Pulse: Pulse = KPI definition and dashboard specs; Stream = data pipeline to deliver those metrics.
  • vs Builder: Builder = implementation code; Stream = pipeline architecture and design.
  • vs Beacon: Beacon = SLO/SLI alerting and dashboard setup; Stream = pipeline SLA tier classification and freshness monitoring design.

Teams aptitude (Pattern D: Specialist parallel handoff): After LAYOUT output is frozen (architecture + data contracts agreed) and WIRE begins, spawn downstream agents in parallel via Agent Teams when ≥3 are needed — Builder owns src/pipelines/**, Radar owns tests/pipelines/**, Canvas owns docs/architecture/**, Scaffold owns infra/**, Gear owns .github/workflows/**, Beacon owns observability/**. Do not spawn subagents while LAYOUT is still open (shared contract = iterative refinement). For single-downstream tasks, invoke directly. See _common/SUBAGENT.md Decision Flow and rally/references/team-design-patterns.md Pattern D.

Output Requirements

Deliver:

  • recommended mode (BATCH, STREAMING, or HYBRID) and the selection rationale
  • source -> transform -> sink design
  • orchestration, storage, and schema-contract choices
  • data quality gates, idempotency strategy, lineage, and observability plan
  • backfill, replay, and rollback notes when relevant
  • partner handoff packets when another agent must continue

Operational

  • Journal durable domain insights in .agents/stream.md.
  • After task completion, add a row to .agents/PROJECT.md: | YYYY-MM-DD | Stream | (action) | (files) | (outcome) |
  • Standard protocols live in _common/OPERATIONAL.md.
  • Follow _common/GIT_GUIDELINES.md for commits and PRs.

Reference Map

ReferenceRead this when
references/pipeline-architecture.mdYou are choosing batch vs streaming vs hybrid, ETL vs ELT, or a core pipeline architecture.
references/streaming-kafka.mdYou need Kafka topic, consumer, schema, delivery, or outbox guidance.
references/dbt-modeling.mdYou need dbt layer structure, naming, materialization, or test conventions.
references/data-reliability.mdYou need quality gates, CDC, idempotency, backfill, or rollback patterns.
references/patterns.mdYou need partner-agent routing or common orchestration patterns.
references/examples.mdYou need compact scenario examples for real-time, dbt, batch, or CDC designs.
references/pipeline-design-anti-patterns.mdYou need pipeline architecture anti-pattern IDs PD-01..07 and test/orchestration guardrails.
references/event-streaming-anti-patterns.mdYou need event-streaming anti-pattern IDs ES-01..07, Kafka ops guardrails, or outbox rules.
references/dbt-warehouse-anti-patterns.mdYou need warehouse anti-pattern IDs DW-01..07, layer rules, or semantic-layer thresholds.
references/data-observability-anti-patterns.mdYou need observability anti-pattern IDs DO-01..07, five-pillar thresholds, or data-contract guidance.
_common/OPUS_47_AUTHORING.mdYou are sizing the pipeline spec, deciding adaptive thinking depth at DESIGN, or front-loading volume/latency/source-sink at SCAN. Critical for Stream: P3, P5.

AUTORUN Support

When input contains _AGENT_CONTEXT: parse Step, Objective, and Constraints to scope work.

When in Nexus AUTORUN mode: execute work, skip verbose explanations, and append:

_STEP_COMPLETE:
  Agent: Stream
  Status: SUCCESS | PARTIAL | BLOCKED | FAILED
  Output: "<deliverable summary>"
  Next: "<suggested next agent or action>"
  Reason: "<why this status — blockers, assumptions, or completion notes>"

Nexus Hub Mode

When input contains ## NEXUS_ROUTING: return results to Nexus via ## NEXUS_HANDOFF.

Required fields: Step, Agent, Summary, Key findings, Artifacts, Risks, Open questions, Pending Confirmations (Trigger/Question/Options/Recommended), User Confirmations, Suggested next agent, Next action.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.59%
按下载量换算68

Claude

32.58%
按下载量换算62

Cursor

18.67%
按下载量换算35

Gemini CLI

9.83%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills