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 AlexK020908/infra-designer --skill sqs-queuegit clone --depth 1 https://github.com/AlexK020908/infra-designerWrote 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/alexk020908/infra-designer/sqs-queue)<a href="https://agentmods.dev/skills/alexk020908/infra-designer/sqs-queue"><img src="https://agentmods.dev/badge/skills/alexk020908/infra-designer/sqs-queue/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/alexk020908/infra-designer/sqs-queue"><img src="https://agentmods.dev/badge/skills/alexk020908/infra-designer/sqs-queue.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.00000 | $0.00494 |
| Opus 5 | $0.00000 | $0.00247 |
| Sonnet 5 | $0.00000 | $0.00099 |
| Haiku 4.5 | $0.00000 | $0.00049 |
Grade A, and why
sqs-queue 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 9d 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 — 17 lines — stays where its author put it; the contents beside it link to each section on GitHub.
aws.sqs.queue
Managed message queue; the catalog's only queue node. Config knobs: fifo (false), visibilityTimeoutSec (30), retentionDays (4), dlqEnabled (true). Use it for async work handoff — see long-running-tasks.md for the job pattern, scaling-writes.md for write buffering, multi-step-processes.md for workflow chains.
SQS semantics
- Delivery is at-least-once: duplicates WILL occur (redelivery after consumer crash, visibility expiry, network retry). Consumers must be idempotent — dedupe on a message/business ID, or make the operation naturally safe to repeat.
visibilityTimeoutSec: after a receive, the message is hidden for this long; if not deleted in time it reappears and another consumer gets it. Set it above worst-case processing time (a 2-6x margin is sane). For jobs that occasionally run long, have the worker heartbeat withChangeMessageVisibilityto extend the timeout rather than setting a huge static value.dlqEnabled: trueattaches a dead-letter queue: aftermaxReceiveCountfailed receives (poison message), SQS moves it to the DLQ for inspection/replay instead of retrying forever. Keep it on; alarm on DLQ depth.retentionDays: how long an undelivered/unprocessed message survives before SQS deletes it (default 4, max 14). This is a safety buffer for consumer outages, not a replayable log — once a consumer deletes a message, it is gone.fifo: true: strict ordering within amessageGroupId, plus 5-minute content/ID-based deduplication on the producer side. Throughput is capped (~300 msgs/sec per API action, ~3,000/sec with batching) — orders of magnitude below standard SQS. Default tofifo: falseunless ordering is a real requirement.- Scaling consumers: queue depth (ApproximateNumberOfMessagesVisible) is the natural autoscaling signal. Producers and consumers scale independently — that decoupling is the point.
Edges
- Edge kind: iam from producer/consumer compute → queue (IAM role grants send/receive).
- For fan-out (multiple independent consumer groups), put an
aws.sns.topicin front with one queue subscribed per consumer type.
What ships with it
5 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.
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.
- 9d ago First seen · 17 lines · 0 tokens per session scan A 0ced26fb7afe
sqs-queue 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 494 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.
Other skills, from other repositories
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…
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…
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…
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…
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…
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…