sqs-queue

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

A managed Amazon SQS message queue for passing work to background workers. SQS is a service that temporarily holds messages until a worker processes them.

In plain words
What is it for?
Use it to hand off jobs, buffer writes, or connect several stages of a workflow. Workers must safely handle duplicate deliveries.
Why use it?
It separates slow or asynchronous work from the request that starts it, while providing retries and a dead-letter queue for messages that keep failing.

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 to hand off jobs, buffer writes, or connect several stages of a workflow. Workers must safely handle duplicate deliveries.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alexk020908/infra-designer/sqs-queue
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 sqs-queue
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 sqs-queue

README.md
[![agentmods](https://agentmods.dev/badge/skills/alexk020908/infra-designer/sqs-queue/github.svg)](https://agentmods.dev/skills/alexk020908/infra-designer/sqs-queue)
Your own site
<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.

agentmods 80×15 button for sqs-queue

Your own site · 80×15
<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>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 494 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.00494
Opus 5 $0.00000 $0.00247
Sonnet 5 $0.00000 $0.00099
Haiku 4.5 $0.00000 $0.00049

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

Security

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.

infra-plugin/components/aws/sqs-queue/SKILL.md · 17 lines

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 with ChangeMessageVisibility to extend the timeout rather than setting a huge static value.
  • dlqEnabled: true attaches a dead-letter queue: after maxReceiveCount failed 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 a messageGroupId, 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 to fifo: false unless 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.topic in front with one queue subscribed per consumer type.

Read the full file on GitHub · 17 lines

Files

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.

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. 9d ago First seen · 17 lines · 0 tokens per session scan A 0ced26fb7afe

Subscribe to this mod's changes

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.

Related

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…

MicrosoftDocs/Agent-Skills · 121 tokens

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