Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

streaming-data流数据

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

724

周安装

29

GitHub Stars

350

下载量

234
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ancoleman/ai-design-components --skill streaming-data

简介

用于辅助数据整理、CSV/Excel 分析和图表准备,适合清洗字段与汇总指标。

  • 支持发现数据异常、生成统计口径或转成可读说明。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 涉及敏感数据或批量写回时,需先确认脱敏边界与权限。
  • streaming-data 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Streaming Data Processing

Build production-ready event streaming systems and real-time data pipelines using modern message brokers and stream processors.

When to Use This Skill

Use this skill when:

  • Building event-driven architectures and microservices communication
  • Processing real-time analytics, monitoring, or alerting systems
  • Implementing data integration pipelines (CDC, ETL/ELT)
  • Creating log or metrics aggregation systems
  • Developing IoT platforms or high-frequency trading systems

Core Concepts

Message Brokers vs Stream Processors

Message Brokers (Kafka, Pulsar, Redpanda):

  • Store and distribute event streams
  • Provide durability, replay capability, partitioning
  • Handle producer/consumer coordination

Stream Processors (Flink, Spark, Kafka Streams):

  • Transform and aggregate streaming data
  • Provide windowing, joins, stateful operations
  • Execute complex event processing (CEP)

Delivery Guarantees

At-Most-Once:

  • Messages may be lost, no duplicates
  • Lowest overhead
  • Use for: Metrics, logs where loss is acceptable

At-Least-Once:

  • Messages never lost, may have duplicates
  • Moderate overhead, requires idempotent consumers
  • Use for: Most applications (default choice)

Exactly-Once:

  • Messages never lost or duplicated
  • Highest overhead, requires transactional processing
  • Use for: Financial transactions, critical state updates

Quick Start Guide

Step 1: Choose a Message Broker

See references/broker-selection.md for detailed comparison.

Quick decision:

  • Apache Kafka: Mature ecosystem, enterprise features, event sourcing
  • Redpanda: Low latency, Kafka-compatible, simpler operations (no ZooKeeper)
  • Apache Pulsar: Multi-tenancy, geo-replication, tiered storage
  • RabbitMQ: Traditional message queues, RPC patterns

Step 2: Choose a Stream Processor (if needed)

See references/processor-selection.md for detailed comparison.

Quick decision:

  • Apache Flink: Millisecond latency, real-time analytics, CEP
  • Apache Spark: Batch + stream hybrid, ML integration, analytics
  • Kafka Streams: Embedded in microservices, no separate cluster
  • ksqlDB: SQL interface for stream processing

Step 3: Implement Producer/Consumer Patterns

Choose language-specific guide:

  • TypeScript/Node.js: references/typescript-patterns.md (KafkaJS)
  • Python: references/python-patterns.md (confluent-kafka-python)
  • Go: references/go-patterns.md (kafka-go)
  • Java/Scala: references/java-patterns.md (Apache Kafka Java Client)

Common Patterns

Basic Producer Pattern

Send events to a topic with error handling:

1. Create producer with broker addresses
2. Configure delivery guarantees (acks, retries, idempotence)
3. Send messages with key (for partitioning) and value
4. Handle delivery callbacks or errors
5. Flush and close producer on shutdown

Basic Consumer Pattern

Process events from topics with offset management:

1. Create consumer with broker addresses and group ID
2. Subscribe to topics
3. Poll for messages
4. Process each message
5. Commit offsets (auto or manual)
6. Handle errors (retry, DLQ, skip)
7. Close consumer gracefully

Error Handling Strategy

For production systems, implement:

  • Dead Letter Queue (DLQ): Send failed messages to separate topic
  • Retry Logic: Configurable retry attempts with backoff
  • Graceful Shutdown: Finish processing, commit offsets, close connections
  • Monitoring: Track consumer lag, error rates, throughput

Decision Frameworks

Framework: Message Broker Selection

START: What are requirements?

1. Need Kafka API compatibility?
   YES → Kafka or Redpanda
   NO → Continue

2. Is multi-tenancy critical?
   YES → Apache Pulsar
   NO → Continue

3. Operational simplicity priority?
   YES → Redpanda (single binary, no ZooKeeper)
   NO → Continue

4. Mature ecosystem needed?
   YES → Apache Kafka
   NO → Redpanda (better performance)

5. Task queues (not event streams)?
   YES → RabbitMQ or message-queues skill
   NO → Kafka/Redpanda/Pulsar

Framework: Stream Processor Selection

START: What is latency requirement?

1. Millisecond-level latency needed?
   YES → Apache Flink
   NO → Continue

2. Batch + stream in same pipeline?
   YES → Apache Spark Streaming
   NO → Continue

3. Embedded in microservice?
   YES → Kafka Streams
   NO → Continue

4. SQL interface for analysts?
   YES → ksqlDB
   NO → Flink or Spark

5. Python primary language?
   YES → Spark (PySpark) or Faust
   NO → Flink (Java/Scala)

Framework: Language Selection

TypeScript/Node.js:

  • API gateways, web services, real-time dashboards
  • KafkaJS library (827 code snippets, high reputation)

Python:

  • Data science, ML pipelines, analytics
  • confluent-kafka-python (192 snippets, score 68.8)

Go:

  • High-performance microservices, infrastructure tools
  • kafka-go (42 snippets, idiomatic Go)

Java/Scala:

  • Enterprise applications, Kafka Streams, Flink, Spark
  • Apache Kafka Java Client (683 snippets, score 76.9)

Advanced Patterns

Event Sourcing

Store state changes as immutable events. See references/event-sourcing.md for:

  • Event store design patterns
  • Event schema evolution
  • Snapshot strategies
  • Temporal queries and audit trails

Change Data Capture (CDC)

Capture database changes as events. See references/cdc-patterns.md for:

  • Debezium integration (MySQL, PostgreSQL, MongoDB)
  • Real-time data synchronization
  • Microservices data integration patterns

Exactly-Once Processing

Implement transactional guarantees. See references/exactly-once.md for:

  • Idempotent producers
  • Transactional consumers
  • End-to-end exactly-once pipelines

Error Handling

Production-grade error management. See references/error-handling.md for:

  • Dead letter queue patterns
  • Retry strategies with exponential backoff
  • Backpressure handling
  • Circuit breakers for downstream failures

Reference Files

Decision Guides

  • references/broker-selection.md - Kafka vs Pulsar vs Redpanda comparison
  • references/processor-selection.md - Flink vs Spark vs Kafka Streams
  • references/delivery-guarantees.md - At-least-once, exactly-once patterns

Language-Specific Implementation

  • references/typescript-patterns.md - KafkaJS patterns (producer, consumer, error handling)
  • references/python-patterns.md - confluent-kafka-python patterns
  • references/go-patterns.md - kafka-go patterns
  • references/java-patterns.md - Apache Kafka Java client patterns

Advanced Topics

  • references/event-sourcing.md - Event sourcing architecture
  • references/cdc-patterns.md - Change Data Capture with Debezium
  • references/exactly-once.md - Transactional processing
  • references/error-handling.md - DLQ, retries, backpressure
  • references/performance-tuning.md - Throughput optimization, partitioning strategies

Validation Scripts

Run these scripts for token-free validation and generation:

Validate Kafka Configuration

python scripts/validate-kafka-config.py --config producer.yaml
python scripts/validate-kafka-config.py --config consumer.yaml

Checks: broker connectivity, configuration validity, serialization format

Generate Schema Registry Templates

python scripts/generate-schema.py --type avro --entity User
python scripts/generate-schema.py --type protobuf --entity Event

Creates: Avro/Protobuf schema definitions for Schema Registry

Benchmark Throughput

bash scripts/benchmark-throughput.sh --broker localhost:9092 --topic test

Tests: Producer/consumer throughput, latency percentiles

Code Examples

TypeScript Example (KafkaJS)

See examples/typescript/ for:

  • basic-producer.ts - Simple event producer with error handling
  • basic-consumer.ts - Consumer with manual offset commits
  • transactional-producer.ts - Exactly-once producer pattern
  • consumer-with-dlq.ts - Dead letter queue implementation

Python Example (confluent-kafka-python)

See examples/python/ for:

  • basic_producer.py - Producer with delivery callbacks
  • basic_consumer.py - Consumer with error handling
  • async_producer.py - AsyncIO producer (aiokafka)
  • schema_registry.py - Avro serialization with Schema Registry

Go Example (kafka-go)

See examples/go/ for:

  • basic_producer.go - Idiomatic Go producer
  • basic_consumer.go - Consumer with manual commits
  • high_perf_consumer.go - Concurrent processing pattern
  • batch_producer.go - Batch message sending

Java Example (Apache Kafka)

See examples/java/ for:

  • BasicProducer.java - Producer with idempotence
  • BasicConsumer.java - Consumer with error recovery
  • TransactionalProducer.java - Exactly-once transactions
  • StreamsAggregation.java - Kafka Streams aggregation

Technology Comparison

Message Broker Comparison

FeatureKafkaPulsarRedpandaRabbitMQ
ThroughputVery HighHighVery HighMedium
LatencyMediumMediumLowLow
Event ReplayYesYesYesNo
Multi-TenancyManualNativeManualManual
Operational ComplexityMediumHighLowLow
Best ForEnterprise, big dataSaaS, IoTPerformance-criticalTask queues

Stream Processor Comparison

FeatureFlinkSparkKafka StreamsksqlDB
Processing ModelTrue streamingMicro-batchLibrarySQL engine
LatencyMillisecondSecondMillisecondSecond
DeploymentClusterClusterEmbeddedServer
Best ForReal-time analyticsBatch + streamMicroservicesAnalysts

Client Library Recommendations

LanguageLibraryTrust ScoreSnippetsUse Case
TypeScriptKafkaJSHigh827Web services, APIs
Pythonconfluent-kafka-pythonHigh (68.8)192Data pipelines, ML
Gokafka-goHigh42High-perf services
JavaKafka Java ClientHigh (76.9)683Enterprise, Flink/Spark

Related Skills

For authentication and security patterns, see the auth-security skill. For infrastructure deployment (Kubernetes operators, Terraform), see the infrastructure-as-code skill. For monitoring metrics and tracing, see the observability skill. For API design patterns, see the api-design-principles skill. For data architecture and warehousing, see the data-architecture skill.

Troubleshooting

Consumer Lag Issues

  • Check partition count vs consumer count (match for parallelism)
  • Increase consumer instances or reduce processing time
  • Monitor with Kafka consumer lag metrics

Message Loss

  • Verify producer acks=all configuration
  • Check broker replication factor (>1)
  • Ensure consumers commit offsets after processing

Duplicate Messages

  • Implement idempotent consumers (track message IDs)
  • Use exactly-once semantics (transactions)
  • Design for at-least-once delivery

Performance Bottlenecks

  • Increase partition count for parallelism
  • Tune batch size and linger time
  • Enable compression (GZIP, LZ4, Snappy)
  • See references/performance-tuning.md for details

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.25%
按下载量换算78

Claude

29.18%
按下载量换算68

Cursor

18.75%
按下载量换算44

Gemini CLI

9.8%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills