elastic-beanstalk

elastic-beanstalk is a skill for Claude Code, Codex from awslabs/agent-plugins. It costs 78 tokens per session (1,979 once invoked), scanned A, original, Apache-2.0.

A guide to deploying web applications and background workers with AWS Elastic Beanstalk, an AWS service that manages the underlying servers and application operations.

In plain words
What is it for?
Use it to deploy standard web apps, APIs, or workers on managed EC2 infrastructure, especially when moving from services such as Heroku, Render, or Railway.
Why use it?
It helps when you want AWS to handle deployment, scaling, patching, health checks, and rollbacks instead of managing servers yourself.

Skill for Claude CodeCodex

Part of the deploy-on-aws plugin — 3 skills shipped together

About the project

awslabs/agent-plugins is a collection of plugins, skills, instructions, an MCP server, a hook, and a setting that guide AI coding agents in architecting, deploying, and operating software on Amazon Web Services. It is for developers using coding agents such as Claude Code, Codex, and Cursor with AWS projects. The catalogue entries are the repository's own agent workflows and supporting components.

awslabs/agent-plugins · 886 stars · on GitHub

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.

agentmods
npx agentmods add skills/awslabs/agent-plugins/elastic-beanstalk
Any agent
npx skills add awslabs/agent-plugins --skill elastic-beanstalk
Clone the repo
git clone --depth 1 https://github.com/awslabs/agent-plugins

Made for: Claude Code, Codex.

Or install deploy-on-aws, the plugin that ships this one along with the rest of its 3 skills.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/awslabs/agent-plugins/elastic-beanstalk.svg)](https://agentmods.dev/skills/awslabs/agent-plugins/elastic-beanstalk)
Your own site
<a href="https://agentmods.dev/skills/awslabs/agent-plugins/elastic-beanstalk"><img src="https://agentmods.dev/badge/skills/awslabs/agent-plugins/elastic-beanstalk.svg" alt="Measured on agentmods" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,979 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00078 $0.01979
Opus 5 $0.00039 $0.00989
Sonnet 5 $0.00016 $0.00396
Haiku 4.5 $0.00008 $0.00198

Measured 5d ago against content hash bfdbdcd99da3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

elastic-beanstalk 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 5d 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.

plugins/deploy-on-aws/skills/elastic-beanstalk/SKILL.md · 185 lines

How it starts

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

Elastic Beanstalk

Deploy web and worker applications to production on AWS with full lifecycle management. Elastic Beanstalk is an application management service: the user provides application code, AWS manages everything underneath (deployment, scaling, patching, monitoring, health response).

When to Use

Elastic Beanstalk is the right choice when:

  • User explicitly asks for Elastic Beanstalk, EB, or a managed application platform
  • User says "don't want to manage servers", "managed patching", or "Heroku-like"
  • User is migrating from Heroku, Render, or Railway
  • User wants AWS to manage ongoing operational lifecycle (patching, scaling, health monitoring, rollback, deployments) after initial setup
  • App is a web framework, API, or background worker on a standard runtime and the user signals low infrastructure involvement

Elastic Beanstalk is NOT the right choice when:

  • User explicitly wants serverless/Lambda — this imposes a different programming model (event-driven functions, stateless, cold starts, 15-min max execution) rather than just eliminating server management
  • User wants fine-grained container orchestration control (use ECS)
  • User already has Kubernetes expertise and wants direct K8s access (use EKS)
  • App is a static site or SPA (use Amplify Hosting for the frontend; deploy the backend API separately if present)
  • User already has ECS task definitions or Fargate configuration

Key Distinction

ECS and EKS are infrastructure management services: the user defines and operates the deployment infrastructure (task definitions, services, clusters, scaling policies) and owns ongoing operational decisions. Elastic Beanstalk is an application management service: the user provides source code or a Docker image, and AWS provisions and operates the production environment on an ongoing basis. The result is the same reliability, but with lower ongoing maintenance cost because operational responsibility stays with the provider.

Both models support IaC (CDK, CloudFormation, Terraform). The distinction is not about tooling — it is about who manages the lifecycle after deployment.

Read the full file on GitHub · 185 lines

Files

What ships with it

2 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. 5d ago First seen · 185 lines · 78 tokens per session scan A bfdbdcd99da3

Subscribe to this mod's changes

elastic-beanstalk is a skill published in the GitHub repository awslabs/agent-plugins (886 stars, last pushed yesterday), licensed Apache-2.0. It adds 78 tokens to every session and 1,979 once invoked, about $0.0004 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-08-30.

Related

Other skills, from other repositories

deploy

Deploy, diff, or destroy the ABCA CDK stack. Handles pre-deployment validation, synthesis, and post-deployment verification. Use when the user says "deploy", "cdk deploy", "deploy the stack", "destroy", "cdk diff", "what changed", "redeploy", or "update the stack".

aws-samples/sample-autonomous-cloud-coding-agents · 69 tokens

aws-research

Research an AWS or Kiro question across community and first-party sources, then answer with citations. Use when a docs answer is missing or contradicts observed behaviour, when someone else has probably hit the same error, when the question is about Kiro itself (steering, hooks, specs, powers, MCP), when it concerns…

hey-iam-ryan/kiro-power-aws-knowledge-plus · 95 tokens

auditing-aws-s3-bucket-permissions

Systematically audit AWS S3 bucket permissions to identify publicly accessible buckets, overly permissive ACLs, misconfigured bucket policies, and missing encryption settings using AWS CLI, S3audit, and Prowler to enforce least-privilege data access controls.

autohandai/community-skills · 62 tokens

agentcore-investigation

Investigate Bedrock AgentCore runtime sessions via CloudWatch Logs Insights — resolve session/trace IDs, query OTEL spans, filter noise, build timelines. Use when debugging AgentCore agent sessions, tracing tool calls, or analyzing latency.

awslabs/mcp · 52 tokens

framework-compliance-triage

Make a cloud account compliant with a security or industry framework using Prowler Cloud.

prowler-cloud/prowler · 24 tokens

ec2

AWS EC2 virtual machine management — instances, security groups, key pairs, AMIs, EBS volumes, Auto Scaling Groups, Spot Instances, Session Manager, placement groups, and instance lifecycle automation. Trigger on ANY of these, even when EC2 isn't named explicitly: - Launching or provisioning: "spin up a server"…

itsmostafa/aws-agent-skills · 320 tokens