kinesis-stream

kinesis-stream is a skill for Claude Code from AlexK020908/infra-designer. It costs 0 tokens per session (485 once invoked), scanned A, original, MIT.

A managed AWS Kinesis event stream: a durable ordered record of events that keeps data for later reading. Different consumers can read independently and replay old records.

In plain words
What is it for?
Use it for event-sourcing systems, activity or click streams, many producers feeding many consumers, and other workloads needing ordering, retention, and replay.
Why use it?
It supports multiple processing pipelines and recovery or reprocessing after a bug, unlike a work queue where each message is normally handled once.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the infra-designer plugin — 19 skills, 5 commands shipped together

Good fit Use it for event-sourcing systems, activity or click streams, many producers feeding many consumers, and other workloads needing ordering, retention, and replay.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alexk020908/infra-designer/kinesis-stream
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 AlexK020908/infra-designer --skill kinesis-stream
Clone the repo
git clone --depth 1 https://github.com/AlexK020908/infra-designer

Made for: Claude Code.

Or install infra-designer, the plugin that ships this one along with the rest of its 19 skills, 5 commands.

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 kinesis-stream

README.md
[![agentmods](https://agentmods.dev/badge/skills/alexk020908/infra-designer/kinesis-stream/github.svg)](https://agentmods.dev/skills/alexk020908/infra-designer/kinesis-stream)
Your own site
<a href="https://agentmods.dev/skills/alexk020908/infra-designer/kinesis-stream"><img src="https://agentmods.dev/badge/skills/alexk020908/infra-designer/kinesis-stream/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 kinesis-stream

Your own site · 80×15
<a href="https://agentmods.dev/skills/alexk020908/infra-designer/kinesis-stream"><img src="https://agentmods.dev/badge/skills/alexk020908/infra-designer/kinesis-stream.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 485 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.00000 $0.00485
Opus 5 $0.00000 $0.00243
Sonnet 5 $0.00000 $0.00097
Haiku 4.5 $0.00000 $0.00049

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

Security

Grade A, and why

kinesis-stream 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 11d 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.

infra-plugin/components/aws/kinesis-stream/SKILL.md · 20 lines

How it starts

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

aws.kinesis.stream (Kinesis Data Stream)

Managed, ordered, replayable event stream — the deployable streaming primitive. Records are retained (default 24h, up to 365 days) and each consumer reads independently at its own offset, so the same events can feed many pipelines and be re-read after a bug fix. Config knobs: streamMode, retentionHours.

When to use

  • Event sourcing, activity/clickstream firehoses, fan-in from many producers to many independent consumers, or any "durable log I can replay" need. Pairs with Lambda (event-source mapping) or ECS consumers.

vs other messaging primitives

  • vs aws.sqs.queue: SQS is a work queue — one consumer deletes each message, no replay. Kinesis is a log — many consumers, ordered per shard, replayable. Use SQS for task distribution; Kinesis when you need ordering + replay + multiple independent readers.
  • vs aws.sns.topic: SNS fans out a message to subscribers at publish time with no retention. Kinesis retains, so a consumer added later (or recovering) can read history.
  • vs aws.msk.cluster (Kafka, design-only): Kinesis covers most streaming needs and deploys today. Reach for MSK only when the app specifically needs Kafka API/client compatibility or Kafka-only semantics — and note that MSK isn't deployable yet. Prefer Kinesis over design-only MSK.

Config

  • streamMode ON_DEMAND (default — no capacity planning, scales automatically) or PROVISIONED; retentionHours (raise it when consumers need a longer replay window). Encrypted at rest by default (KMS).

In our catalog

  • v1 limitation: PROVISIONED mode ships a single shard (~1MB/s in, 2MB/s out); raise it in the template for higher throughput.
  • Edge kinds: iam producer/consumer → kinesis (compute gets kinesis:PutRecord* / kinesis:GetRecords + {PREFIX}_STREAM_NAME env). Lambda consumers also use an event-source mapping (wire queue→lambda-style intent in agentNotes).
  • agentNotes: pick a good partition key (even distribution, preserves per-key ordering); consumers must checkpoint their position and handle reprocessing idempotently.

Read the full file on GitHub · 20 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 20 lines · 0 tokens per session scan A 249cebdb8883

Subscribe to this mod's changes

kinesis-stream is a skill published in the GitHub repository AlexK020908/infra-designer (2 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 485 tokens. 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-08-31.

Related

Other skills, from other repositories

azure-functions

Expert knowledge for Azure Functions development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when wiring Functions to triggers/bindings, Cosmos/SQL/Service Bus, VNet/private…

MicrosoftDocs/Agent-Skills · 122 tokens

azure-api-management

Expert knowledge for Azure API Management development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when integrating APIM with AI backends, VNet/domains, OAuth/Entra ID…

MicrosoftDocs/Agent-Skills · 121 tokens

azure-logic-apps

Expert knowledge for Azure Logic Apps development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when building Logic Apps with Azure/OpenAI, SAP/B2B, on-prem connectors, CI/CD…

MicrosoftDocs/Agent-Skills · 116 tokens

azure-event-grid

Expert knowledge for Azure Event Grid development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, and integrations & coding patterns. Use when configuring Event Grid/MQTT namespaces, securing endpoints, routing events, integrating…

MicrosoftDocs/Agent-Skills · 121 tokens

azure-spring-apps

Expert knowledge for Azure Spring Apps development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when configuring ASA networking/security, Tanzu tools, observability/APM, CI/CD…

MicrosoftDocs/Agent-Skills · 120 tokens

azure-files

Expert knowledge for Azure Files development including best practices, decision making, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when using Azure File Sync, SMB/NFS shares, Storage Mover/Data Box, Kerberos/AD auth, or RAG with Azure Files, and other Azure Files…

MicrosoftDocs/Agent-Skills · 105 tokens