Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

aws-limitsAWS limits 搜索

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

349

周安装

14

GitHub Stars

12

下载量

113
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:aws-limits(AWS limits 搜索)
来源仓库:https://github.com/walletconnect/skills
仓库路径:skills/aws-limits
安装命令:
npx skills add https://github.com/walletconnect/skills --skill aws-limits
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/walletconnect/skills --skill aws-limits

简介

用于在基础设施代码变更前检测 AWS 服务限额与配额违规风险。

  • 它适合让 Agent 扫描 Terraform、CloudFormation 等资源定义文件,识别潜在超限配置。
  • 使用时需提供具体服务名称和资源数量参数,系统将返回当前账户可用额度信息。
  • 安装需通过 npx skills add 命令从 walletconnect/skills 仓库添加 aws-limits 技能。
  • 仅适用于 AWS 云平台,不支持多云环境下的统一限额检查,且无法替代人工复核关键资源配置。

SKILL.md

AWS Limits Review

Goal

Catch AWS service limit/quota violations in infrastructure code before they cause production issues.

When to use

  • Reviewing Terraform, CloudFormation, CDK, or Pulumi code
  • Code that provisions or configures AWS resources
  • PR reviews involving AWS infrastructure changes
  • Before deploying infrastructure changes to production

When not to use

  • Non-AWS cloud providers (future skills: cloudflare-limits, gcp-limits)
  • Application code without infrastructure components
  • AWS SDK usage for read-only operations

Inputs

  • Infrastructure code files (.tf, .json, .yaml, .yml, .ts, .py)
  • Context about expected scale/traffic patterns (if available)

Outputs

  • List of potential limit violations with severity
  • Links to official AWS documentation
  • Recommended mitigations

Default workflow

  1. Identify AWS services in the code:

- Scan for resource types (e.g., aws_lambda_function, AWS::Lambda::Function) - Note service patterns in SDK calls

  1. Check against known limits in REFERENCE.md:

- Hard limits (cannot be increased) - Soft limits at default values - Limits that commonly cause production issues

  1. Flag violations with context:

- Quote the specific code - Explain the limit and why it matters - Link to AWS documentation - Suggest mitigation if applicable

  1. Prioritize by severity:

- Critical: Hard limits that will fail immediately - High: Default limits likely to be hit at moderate scale - Medium: Limits that may cause issues at high scale - Low: Informational, worth noting for awareness

Key patterns to watch

Lambda

  • Functions with >15 min expected runtime (hard limit: 15 min)
  • Synchronous payloads >6MB
  • VPC-connected functions without sufficient ENI capacity
  • High concurrency without reserved/provisioned concurrency

API Gateway

  • Integrations expecting >29s response time (default timeout)
  • Missing throttling configuration for public APIs
  • WebSocket connections without connection management

S3

  • Single-prefix designs with high throughput expectations
  • Missing retry logic for 503 responses

DynamoDB

  • Items approaching 400KB
  • Single-table designs without GSI capacity planning
  • On-demand tables without understanding burst limits

Step Functions

  • Long-running workflows approaching 25,000 event limit
  • Map states without concurrency limits
  • Large payloads (>256KB state data)

Load Balancing

  • Multiple load balancers sharing target groups (limit: 5 LBs per target group)
  • Target groups with many targets without health check tuning
  • Weighted routing with many target groups per action

Cognito

  • Auth flows without rate limit handling (default: 120 RPS)
  • Bulk user imports without throttling

Validation checklist

  • All identified AWS services checked against REFERENCE.md
  • Hard limits flagged as Critical
  • Soft limits noted with current defaults
  • Links to AWS docs included for each finding
  • Mitigations suggested where applicable

Output format

## AWS Limits Review

### Critical
- **[Service]: [Limit name]**
  - File: `path/to/file.tf:42`
  - Issue: [Description]
  - Limit: [Value] ([hard/soft])
  - Docs: [AWS link]
  - Mitigation: [Suggestion]

### High
...

### Medium
...

### Low / Informational
...

### No Issues Found
- [List of services reviewed with no concerns]

Examples

Example 1: Lambda timeout

Input: Terraform defining Lambda with Step Functions integration

resource "aws_lambda_function" "processor" {
  timeout = 900  # 15 minutes
}

Output:

High: Lambda timeout at maximum - File: lambda.tf:12 - Issue: Lambda timeout set to maximum (900s). Any operation exceeding this will fail. - Limit: 900 seconds (hard) - Docs: https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html - Mitigation: For longer processes, use Step Functions with Lambda iterations or switch to Fargate.

Example 2: Multiple LBs per target group

Input: Terraform with shared target groups

resource "aws_lb_target_group" "shared" {
  name = "shared-targets"
}

resource "aws_lb_listener" "lb1" {
  default_action {
    target_group_arn = aws_lb_target_group.shared.arn
  }
}
# ... repeated for 6 load balancers

Output:

Critical: Target group shared across too many load balancers - File: alb.tf:15-45 - Issue: Target group "shared-targets" referenced by 6 load balancers. Maximum is 5. - Limit: 5 load balancers per target group (hard) - Docs: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-limits.html - Mitigation: Create separate target groups for additional load balancers.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.9%
按下载量换算44

Claude

28.39%
按下载量换算32

Cursor

19.68%
按下载量换算22

Gemini CLI

10.13%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills