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.
npx skills add vignesh2027/Claude-Agentic-Skills2.0-version --skill realtime-data-agentgit clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-versionWrote 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.
[](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/realtime-data-agent)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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 |
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.
- 8d ago First seen · 72 lines · 68 tokens per session scan A 6df3e5d684ec
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.
Other skills, from other repositories
theokit-gateways
Receiving messages from Telegram, WhatsApp, Slack and other platforms — handleChannelWebhook, the @theokit/gateway- adapters, signature validation, the onMessage seam.
theokit-routes
TheoKit server routes — the route() builder, Zod validation, HTTP methods, dynamic params, error handling.
api-designer
Design RESTful and RPC APIs — OpenAPI specs, request/response schemas, error codes, versioning, and documentation.
claude-api
Build apps with the Anthropic Claude API — chat completions, tool use, streaming, vision, and multi-turn conversations.
discord-bot
Create Discord bots — slash commands, embeds, voice, roles, threads, and Discord.js/Pycord implementations.
github-integration
Integrate with GitHub — Actions, Apps, webhooks, Octokit, and repository automation workflows.