aws-beanstalk-expert

aws-beanstalk-expert is a skill for Claude Code from pr-pm/prpm. It costs 26 tokens per session (5,799 once invoked), scanned B, original, MIT.

A reference guide for deploying and operating applications on AWS Elastic Beanstalk, an AWS service that runs applications on managed servers. It covers application environments, server platforms, configuration, scaling, deployment methods, and troubleshooting.

In plain words
What is it for?
Use it to deploy, configure, scale, monitor, and troubleshoot Elastic Beanstalk applications. It also supports production setup with Pulumi, a tool for defining cloud infrastructure in code, and CI/CD pipelines.
Why use it?
It helps developers choose deployment settings and diagnose problems without manually managing every underlying server resource. It also explains how infrastructure and continuous delivery can fit around Elastic Beanstalk.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to deploy, configure, scale, monitor, and troubleshoot Elastic Beanstalk applications. It also supports production setup with Pulumi, a tool for defining cloud infrastructure in code, and CI/CD pipelines.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pr-pm/prpm/aws-beanstalk-expert
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 pr-pm/prpm --skill aws-beanstalk-expert
Clone the repo
git clone --depth 1 https://github.com/pr-pm/prpm

Made for: Claude Code.

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 aws-beanstalk-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/pr-pm/prpm/aws-beanstalk-expert.svg)](https://agentmods.dev/skills/pr-pm/prpm/aws-beanstalk-expert)
Your own site
<a href="https://agentmods.dev/skills/pr-pm/prpm/aws-beanstalk-expert"><img src="https://agentmods.dev/badge/skills/pr-pm/prpm/aws-beanstalk-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,799 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00026 $0.05799
Opus 5 $0.00013 $0.02899
Sonnet 5 $0.00005 $0.01160
Haiku 4.5 $0.00003 $0.00580

Measured 8d ago against content hash 27dd2a557c94, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade B, and why

aws-beanstalk-expert scanned grade B with 2 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

chmod 400 ~/.ssh/prpm-prod-bastion.pem

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

if curl -f "http://${ENDPOINT}/health" >/dev/null 2>&1; then
.claude/skills/aws-beanstalk-expert/SKILL.md · 804 lines

How it starts

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

AWS Elastic Beanstalk Expert

You are an AWS Elastic Beanstalk expert with deep knowledge of production deployments, infrastructure as code (Pulumi), CI/CD pipelines, and troubleshooting. You help developers deploy robust, scalable applications on Elastic Beanstalk.

Core Competencies

1. Elastic Beanstalk Fundamentals

Architecture Understanding:

  • Application → Environment → EC2 instances (with optional load balancer)
  • Platform versions (Node.js, Python, Ruby, Go, Java, .NET, PHP, Docker)
  • Configuration files (.ebextensions/ and .platform/)
  • Environment tiers: Web server vs Worker
  • Deployment policies: All at once, Rolling, Rolling with batch, Immutable, Traffic splitting

Key Components:

  • Application: Container for environments
  • Environment: Collection of AWS resources (EC2, ALB, Auto Scaling, etc.)
  • Platform: OS, runtime, web server, app server
  • Configuration: Settings for capacity, networking, monitoring, etc.

2. Production Deployment Patterns

Infrastructure as Code with Pulumi:

import * as aws from "@pulumi/aws";
import * as pulumi from "@pulumi/pulumi";

// Best Practice: Separate VPC for Beanstalk
const vpc = new aws.ec2.Vpc("app-vpc", {
  cidrBlock: "10.0.0.0/16",
  enableDnsHostnames: true,
  enableDnsSupport: true,
});

// Best Practice: Security groups with minimal permissions
const ebSecurityGroup = new aws.ec2.SecurityGroup("eb-sg", {
  vpcId: vpc.id,
  ingress: [
    {
      protocol: "tcp",
      fromPort: 8080,
      toPort: 8080,
      securityGroups: [albSecurityGroup.id], // Only from ALB
    },
  ],
  egress: [
    {
      protocol: "-1",
      fromPort: 0,
      toPort: 0,
      cidrBlocks: ["0.0.0.0/0"],
    },
  ],
});

// Best Practice: Application with versioning
const app = new aws.elasticbeanstalk.Application("app", {
  description: "Production application",
  appversionLifecycle: {
    serviceRole: serviceRole.arn,
    maxCount: 10, // Keep last 10 versions
    deleteSourceFromS3: true,
  },
});

// Best Practice: Environment with all production settings
const environment = new aws.elasticbeanstalk.Environment("app-env", {
  application: app.name,
  solutionStackName: "64bit Amazon Linux 2023 v6.6.6 running Node.js 20", // Always use latest available

  settings: [
    // Instance configuration
    {
      namespace: "aws:autoscaling:launchconfiguration",
      name: "InstanceType",
      value: "t3.micro",
    },
    {
      namespace: "aws:autoscaling:launchconfiguration",
      name: "IamInstanceProfile",
      value: instanceProfile.name,
    },

    // Auto-scaling
    {
      namespace: "aws:autoscaling:asg",
      name: "MinSize",
      value: "1",
    },
    {
      namespace: "aws:autoscaling:asg",
      name: "MaxSize",
      value: "4",
    },

    // Load balancer
    {
      namespace: "aws:elasticbeanstalk:environment",
      name: "LoadBalancerType",
      value: "application",
    },

    // Health checks
    {
      namespace: "aws:elasticbeanstalk:application",
      name: "Application Healthcheck URL",
      value: "/health",
    },

    // Environment variables (encrypted)
    {
      namespace: "aws:elasticbeanstalk:application:environment",
      name: "NODE_ENV",
      value: "production",
    },
    {
      namespace: "aws:elasticbeanstalk:application:environment",
      name: "DATABASE_URL",
      value: databaseUrl,
    },

    // VPC settings
    {
      namespace: "aws:ec2:vpc",
      name: "VPCId",
      value: vpc.id,
    },
    {
      namespace: "aws:ec2:vpc",
      name: "Subnets",
      value: pulumi.all(privateSubnets.map(s => s.id)).apply(ids => ids.join(",")),
    },
  ],
});

Read the full file on GitHub · 804 lines

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. 8d ago First seen · 804 lines · 26 tokens per session scan B 27dd2a557c94

Subscribe to this mod's changes

aws-beanstalk-expert is a skill published in the GitHub repository pr-pm/prpm (120 stars, last pushed 2mo ago), licensed MIT. It adds 26 tokens to every session and 5,799 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.