Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

amplify-workflow扩大工作流程

Agent Skill

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

总安装

1,236

周安装

50

GitHub Stars

634

下载量

388
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/awslabs/agent-plugins --skill amplify-workflow

简介

amplify-workflow 提供对 AWS Amplify Gen 2 开发的编排支持,涵盖后端、前端及部署阶段的标准操作流程。

  • 适用于需要按固定顺序执行本地测试、环境映射和自动化部署流程的开发任务。
  • 通过 npx skills add 命令安装,依赖 Node.js、AWS CLI 及有效凭证完成预检。
  • 默认按 Backend→Sandbox→Frontend→Production 顺序执行,仅包含适用阶段。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Amplify Workflow

Orchestrated workflow for AWS Amplify Gen 2 development.

Available references

  • references/backend.md -- Backend phase: SOP retrieval, constraints, error handling
  • references/frontend.md -- Frontend & testing phase: SOP retrieval, local testing
  • references/deploy.md -- Deploy phase: SOP retrieval, deployment type mapping

Available scripts

  • scripts/prereq-check.sh -- Validates Node.js, npm, AWS CLI, and AWS credentials

Defaults

  • Phase ordering: Backend → Sandbox → Frontend → Production (only applicable phases are included)
  • Deployment target: sandbox for development/testing, cicd for production

Step 1: Validate Prerequisites

Run the prerequisite check script:

bash scripts/prereq-check.sh

The script checks Node.js >= 18, npm, and AWS credentials in one pass and reports a clear PASS/FAIL summary.

If the AWS credentials check fails, STOP and present this message to the user:

## AWS Credentials Required

I can't proceed without AWS credentials configured. Please set up your credentials first:

**Setup Guide:** https://docs.amplify.aws/react/start/account-setup/

**Quick options:**
- Run `aws configure` to set up access keys
- Run `aws sso login` if using AWS IAM Identity Center

Once your credentials are configured, let me know and I'll re-run the prerequisite check to verify.

Do NOT proceed with Amplify work until credentials are configured. After the user confirms credentials are set up, re-run scripts/prereq-check.sh to verify before continuing.


Step 2: Understand the Project

Once all prerequisites pass:

  1. Read all necessary project files (e.g., amplify/, package.json, existing code) to understand the current state
  2. If unsure about Amplify capabilities or best practices, use documentation tools to search and read AWS Amplify docs

Do this BEFORE proposing a plan.


Step 3: Determine Applicable Phases

Based on the user's request and project state, determine which phases apply:

PhaseApplies whenReference
1: BackendUser needs to create or modify Amplify backend resourcesreferences/backend.md
2: SandboxDeploy to sandbox for testingreferences/deploy.md
3: Frontend & TestFrontend needs to connect to Amplify backendreferences/frontend.md
4: ProductionDeploy to productionreferences/deploy.md

Common patterns:

  • New full-stack app: 1 -> 2 -> 3 -> 4
  • Backend only (no frontend): 1 -> 2
  • Add feature to existing backend: 1 -> 2
  • Redeploy after changes: 2 only
  • Connect existing frontend: 3 only
  • Deploy to production: 4 only

IMPORTANT: Only include phases that the user actually needs. If the user asks for backend work only (e.g., "add auth", "create a data model", "add storage"), do NOT include Phase 3 (Frontend & Test). Frontend phases should only be included when the user explicitly asks for frontend work, a full-stack app, or to connect a frontend to Amplify.


Step 4: Present Plan and Confirm

Present to the user:

## Plan

### What I understood
- [Brief summary of what the user wants]

### Features
[list features if applicable]

### Framework
[framework if known]

### Phases I'll execute
1. [Phase name] - [one-line description] -> SOP: [sop-name]
2. [Phase name] - [one-line description] -> SOP: [sop-name]
...
(Include SOP name for phases 1 and 3. Phases 2 and 4 use the amplify-deployment-guide SOP.)

Ready to get started?

WAIT for user confirmation before proceeding.

Once the user approves the plan, you MUST stick to it. Do not deviate from the planned phases or SOPs unless the user explicitly asks for changes.


Step 5: Execute Phases

After the user confirms the plan, read ONLY the first phase's reference file (from the table in Step 3).

Do NOT read any other phase reference files yet.

Phase Execution

When starting a phase, announce it as a header:

## Phase 1: Backend
[Next: Phase 2: Sandbox Deployment]

Omit "[Next:...]" if it's the last phase in your plan.

Resuming After a Phase Completes

When a phase completes (the reference file will indicate the phase is done), the orchestrator takes over:

  1. Summarize what the phase accomplished
  2. If there are more phases in the plan, ask: "Phase [N] complete. Ready to proceed to Phase [N+1]: [next phase name]?"
  3. WAIT for the user to confirm before proceeding.
  4. After the user confirms, read the next phase's reference file.

Do NOT re-run prerequisites or re-present the plan. Simply execute the next phase.


Phase 1: Backend

Read references/backend.md and follow its instructions completely.


Phase 2: Sandbox Deployment

Read references/deploy.md and follow its instructions. The deployment type is sandbox (deployment_type: sandbox).


Phase 3: Frontend & Test

Prerequisite: amplify_outputs.json must exist. If not, run Phase 2 first.

Read references/frontend.md and follow its instructions completely.


Phase 4: Production Deployment

Read references/deploy.md and follow its instructions. The deployment type is production (deployment_type: cicd).

After completion:

## You're live!

### Production URL
[url from deployment output]

### Amplify Console
https://console.aws.amazon.com/amplify/home

Your app is now deployed! Future updates: just push to your repo and it auto-deploys.

This is the final phase. The workflow is complete.


Critical Rules

  1. Always follow SOPs completely -- Do not improvise or skip steps
  2. Never use Gen 1 patterns -- This is for Amplify Gen 2 only (TypeScript code-first, defineAuth/defineData/defineStorage/defineFunction)
  3. Wait for confirmation between phases -- After each phase completes, ask the user to confirm before executing the next phase. Do not proceed until the user confirms.
  4. If you encounter an error or get sidetracked:

- Fix the immediate issue - Return to the SOP and continue from where you left off - Do NOT abandon the SOP or start improvising

  1. If you lose track of where you were in the SOP:

- Use the SOP retrieval tool to get the SOP again - Identify which step you completed last - Continue from the next step


Troubleshooting

If issues occur during any phase:

  1. Check the SOP's troubleshooting section first
  2. Use documentation tools to search AWS Amplify docs for the error message
  3. Read the relevant documentation page

After resolving the issue, immediately return to the SOP and continue from where you left off. Do not abandon the workflow.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.39%
按下载量换算126

Claude

31.09%
按下载量换算121

Cursor

17.21%
按下载量换算67

Gemini CLI

9.31%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills