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

ecs-expressecs 快递

Agent Skill

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

总安装

466

周安装

20

GitHub Stars

2

下载量

163
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/jritsema/ecs-express-power --skill ecs-express

简介

用于查找、检索和筛选相关信息,支持在多种宿主环境中快速定位候选结果。

  • 适合根据关键词、任务场景或来源线索进行信息聚合与初步筛选。
  • 可通过原始 README 和安装命令进一步核验具体用法和功能边界。
  • 安装方式:通过 npx skills add 命令从指定 GitHub 仓库安装。
  • 建议确认权限范围、维护状态及是否涉及联网、命令执行或文件读写。

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

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

能力 5

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

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

平台分布

Claude Code

29.59%
按下载量换算48

OpenCode

24.24%
按下载量换算40

Cursor

19.19%
按下载量换算31

kiro-cli

12.73%
按下载量换算21

goose

8.26%
按下载量换算13

Codex

2.98%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills