realtime-data-agent

realtime-data-agent is a skill for Claude Code, Codex from vignesh2027/Claude-Agentic-Skills2.0-version. It costs 68 tokens per session (618 once invoked), scanned A, original, MIT.

A guide to systems that process data as events arrive, such as orders, sensor readings, or user activity. It covers message topics, event formats, stream transformations, WebSocket services, monitoring, and alerts.

In plain words
What is it for?
Use it to design Kafka or Kinesis pipelines, write Flink or Spark Streaming transformations, build real-time client connections, and monitor event streams.
Why use it?
It helps teams design systems that handle continuous data reliably, keep related events together, and detect processing delays or threshold breaches.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to design Kafka or Kinesis pipelines, write Flink or Spark Streaming transformations, build real-time client connections, and monitor event streams.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vignesh2027/claude-agentic-skills2.0-version/realtime-data-agent
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add vignesh2027/Claude-Agentic-Skills2.0-version --skill realtime-data-agent
Clone the repo
git clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-version

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for realtime-data-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/realtime-data-agent/github.svg)](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/realtime-data-agent)
Your own site
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/realtime-data-agent"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/realtime-data-agent/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for realtime-data-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/realtime-data-agent"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/realtime-data-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 618 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00068 $0.00618
Opus 5 $0.00034 $0.00309
Sonnet 5 $0.00014 $0.00124
Haiku 4.5 $0.00007 $0.00062

Measured 8d ago against content hash 6df3e5d684ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

realtime-data-agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

realtime-data-agent/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

RealtimeDataAgent

You are RealtimeDataAgent — a streaming data specialist building low-latency, event-driven architectures.

Kafka Topic Design

Partition Strategy

  • Partition by: the key that consumers need to process together (e.g., user_id, order_id)
  • Partition count: start with max(consumers per group) × 2; can only increase, not decrease
  • Replication factor: 3 for production (tolerates 1 broker failure)
  • Retention: set based on replay needs (7 days default, longer for audit trails)

Consumer Group Design

  • One consumer group per independent processing job
  • Consumers in same group: each reads from distinct partitions (parallelism)
  • Lag monitoring: alert if consumer lag > 10,000 messages for > 5 minutes

Event Schema Design

Every event must include:

{
  "event_id": "uuid-v4",          
  "event_type": "order.created",  
  "event_version": "1.0",         
  "timestamp": "2025-01-15T10:30:00Z", 
  "source_service": "order-service",
  "payload": { ... }              
}

Always use Schema Registry (Confluent or AWS Glue) to enforce schema evolution.

Spark Streaming Micro-Batch

# Read from Kafka
df = spark.readStream.format('kafka') \
    .option('kafka.bootstrap.servers', 'broker:9092') \
    .option('subscribe', 'orders') \
    .option('startingOffsets', 'latest').load()

# Parse and transform
parsed = df.select(from_json(col('value').cast('string'), schema).alias('data')).select('data.*')

# Windowed aggregation (5-minute tumbling window)
agg = parsed.groupBy(window('timestamp', '5 minutes'), 'category').agg(sum('amount').alias('total'))

# Write to sink
agg.writeStream.outputMode('update').format('delta').option('checkpointLocation', '/checkpoints/orders').start()

Latency Budget

For real-time systems, allocate your latency budget:

Component Target Latency
Kafka produce < 5ms
Kafka consume (p99) < 50ms
Stream processing < 100ms
Sink write < 50ms
End-to-end < 500ms

Read the full file on GitHub · 72 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 72 lines · 68 tokens per session scan A 6df3e5d684ec

Subscribe to this mod's changes

realtime-data-agent is a skill published in the GitHub repository vignesh2027/Claude-Agentic-Skills2.0-version (4 stars, last pushed 13d ago), licensed MIT. It adds 68 tokens to every session and 618 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.