Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

ecs-express-powerecs 快速电源

Agent Skill

ecs-express-power 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

465

周安装

19

GitHub Stars

公开资料未说明

下载量

149
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add jritsema/ecs-express-power --skill "ecs-express-power"

简介

发现并推荐适用于 Claude Code 生态系统的技能插件资源。

  • 适合在 Codex、Claude、Cursor 等宿主环境中快速增强自动化能力。
  • 通过 npx 命令一键安装社区贡献的各类实用技能模块。
  • 使用前请评估技能维护频率与安全审计情况,防范潜在风险。
  • 部分技能可能需要 API 密钥或其他认证配置,请参照 README 操作。

SKILL.md

ECS Express Mode Power

Overview

Assists with deploying a web app or API to AWS using Amazon ECS Express Mode. ECS Express Mode takes your container image and gives you back an HTTPS endpoint.

Key capabilities:

  • Builds your project into a container: Builds your Dockerfile into a container image using Docker
  • Deploys your project to AWS: Deploys your container to AWS using Amazon ECS Express Mode
  • Assists with troubleshooting: Assists with troubleshooting issues with your workload in AWS

Onboarding

Step 1: Validate tools

This skill requires the following tools to be installed:

AWS Credentials

If you have to use shell commands (for example, docker login) you may encounter aws credentials issues. If you do, ask the user if they'd like to use an aws profile, or prompt them to enter their credentials inside your shell.

Instructions

Your job is to help the user deploy their web app or API to AWS as an Amazon ECS Express Mode service.

Identify app-specific inputs

Search the user's codebase to identify the following input parameters that you'll need to create the ECS Express Mode service:

  • service name: use the current directory name
  • port: the port the web app/API server listens on
  • health check: the endpoint the web app/API server uses to signal health
  • envvars: any required environment variables

Before proceeding further, present these values to the user and explain that you'll use these values for the ECS Express Mode service.

Ask the user if they'd like to create a docker compose file (compose.yml) that can be used to test the container locally before deploying to AWS. This can help identify common issues first before deploying to the cloud. This can also be a place to source environment variables from. The compose file should look like this, using the variables above for app and ports:

services:
  app:
    build: .
    ports:
      - "8080:8080"
    environment:
      - PORT=8080

AWS Settings

Now ask the user if they would like to specify the amount of cpu and memory their container gets allocated.

Ask the user if they have any additional environment variables they want to include.

Ask the user if they'd like to specify the number of containers running behind the load balancer, or just use the default of 1.

Ask the user if they already have an image in ECR they'd like to deploy. If not, offer to create a new ECR repository (using the service name as the repo name) and then build and push the app image.

Do not proceed without stopping to get confirmation from the user on these things.

Note that ECS Express Mode currently only supports linux/amd64 images, so build for that architecture.

Generate a unique string to use as the image tag using the current datetime.

If they don't already exist, create the following IAM roles with the related attached policies:

  • ecsTaskExecutionRole - arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy
  • ecsInfrastructureRoleForExpressServices arn:aws:iam::aws:policy/service-role/AmazonECSInfrastructureRoleforExpressGatewayServices

When creating, updating, or deleting the ECS Express Mode service use only these APIs:

  • create-express-gateway-service
  • update-express-gateway-service
  • delete-express-gateway-service
  • describe-express-gateway-service

Here's an example of how to use the create-express-gateway-service API:

aws ecs create-express-gateway-service \
    --execution-role-arn arn:aws:iam::123456789012:role/ecsTaskExecutionRole \
    --infrastructure-role-arn arn:aws:iam::123456789012:role/ecsInfrastructureRoleForExpressServices \
    --primary-container '{
        "image": "123456789012.dkr.ecr.region.amazonaws.com/my-app:latest",
        "containerPort": 8080,
        "environment": [{
            "name": "ENV",
            "value": "Prod"
        },
        {
            "name": "DEBUG",
            "value": "false"
        }]
    }' \
    --service-name "my-web-app" \
    --cpu "1024" \
    --memory "2048" \
    --health-check-path "/health" \
    --scaling-target '{"minTaskCount":1,"maxTaskCount":10}'

After creating the ECS Express Mode service

  1. Monitor deployment - Check the ECS service status every 60 seconds using the ECS describe-services API until the rollout state is COMPLETED.
  2. Allow for ALB setup - Even after deployment completes, expect up to an additional minute for the ALB to configure target groups and register instances. You can use the describe-target-health API to check if the targets are healthy.
  3. Test the endpoint - Once the ALB is fully configured, curl the health check endpoint to verify it works. Note that you may see HTTP 503 statuses during this time, this is normal.

If the user asks for help with troubleshooting, you can use the ecs troubleshooting tools to check the status and troubleshoot any potential issues.

Performing updates

When making any changes to the deployment, re-build and push the container image, and be sure to always use the express mode update tool. Do not use the traditional ECS APIs like update-service.

After the initial deployment is complete, explain to the user that ECS Express Mode defaults to blue/green canary style deployments. The default deployment strategy can take up to 10 minutes for updates to allow for traffic shifting and plenty of bake time. Explain to the user that you can speed up deployments by reducing the bake time and traffic shifting. Confirm with the user that they want this, and if they do, so run the following command (substitute actual cluster and service arns).

aws ecs update-service \
  --cluster <cluster-name> \
  --service <service-name> \
  --deployment-configuration '{
    "bakeTimeInMinutes": 0,
    "canaryConfiguration": {
      "canaryPercent": 100.0,
      "canaryBakeTimeInMinutes": 0
    }
  }'

Cleaning up

If the user wants to delete the service use the express mode delete API. Offer to delete the ECR repo as well.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

OpenCode

34.28%
按下载量换算51

Cursor

28.36%
按下载量换算42

kiro-cli

18.65%
按下载量换算28

goose

11.01%
按下载量换算16

Claude Code

5.81%
按下载量换算9

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills