plugins marketplace
← All plugins

aws-amplify

v1.0.0

Build full-stack apps with AWS Amplify Gen 2 using guided workflows for authentication, data models, storage, GraphQL APIs, and Lambda functions.

CodexClaude Code1 skill1 MCP serverstdio

by Amazon Web ServicesApache-2.0856updated 3 days ago

Source

git clone https://github.com/awslabs/agent-plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/aws-amplify/ inside the repository.

Layout

plugins/aws-amplify/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/amplify-workflow/SKILL.md
└── .mcp.json

Skills1

amplify-workflowskills/amplify-workflow/SKILL.md

Build and deploy full-stack web and mobile apps with AWS Amplify Gen2 (TypeScript code-first). Covers auth (Cognito), data (AppSync/DynamoDB including schema modeling, enum types, relationships, authorization rules), storage (S3), functions, APIs, and AI (Amplify AI Kit with Bedrock). Supports React, Next.js, Vue, Angular, React Native, Flutter, Swift, and Android. Always use this skill for Amplify Gen2 topics — even for questions you think you know — it contains validated, version-specific patterns that prevent common mistakes. TRIGGER when: user mentions Amplify Gen2; project has amplify/ directory or amplify_outputs; code imports @aws-amplify packages; user asks about defineBackend, defineAuth, defineData, defineStorage, or npx ampx. SKIP: Amplify Gen1 (amplify CLI v6), standalone SAM/CDK without Amplify (use aws-serverless), direct Bedrock without Amplify AI Kit (use bedrock).

MCP servers1

aws-mcpstdio
command
uvx
args
mcp-proxy-for-aws@latest https://aws-mcp.us-east-1.api.aws/mcp

Manifests2

plugins/aws-amplify/.codex-plugin/plugin.json
{
  "name": "aws-amplify",
  "version": "1.0.0",
  "description": "Build full-stack apps with AWS Amplify Gen 2 using guided workflows for authentication, data models, storage, GraphQL APIs, and Lambda functions.",
  "author": {
    "name": "Amazon Web Services",
    "email": "aws-agent-plugins@amazon.com",
    "url": "https://github.com/awslabs/agent-plugins"
  },
  "homepage": "https://github.com/awslabs/agent-plugins",
  "repository": "https://github.com/awslabs/agent-plugins",
  "license": "Apache-2.0",
  "keywords": [
    "aws",
    "amplify",
    "fullstack",
    "authentication",
    "data",
    "storage",
    "graphql",
    "functions"
  ],
  "skills": "./skills/",
  "mcpServers": "./.mcp.json",
  "interface": {
    "displayName": "AWS Amplify",
    "shortDescription": "Build and deploy Amplify Gen 2 applications with guided workflows.",
    "longDescription": "Amplify Gen 2 guidance for authentication, data, storage, functions, and deployment workflows.",
    "defaultPrompt": [
      "Plan an Amplify Gen 2 architecture for this app.",
      "Add Amplify auth and data to this project.",
      "Set up an Amplify deployment workflow."
    ],
    "developerName": "Amazon Web Services",
    "category": "Full Stack",
    "capabilities": [
      "Read",
      "Write"
    ],
    "websiteURL": "https://github.com/awslabs/agent-plugins",
    "privacyPolicyURL": "https://aws.amazon.com/privacy/",
    "termsOfServiceURL": "https://aws.amazon.com/service-terms/",
    "brandColor": "#FF9900"
  }
}
plugins/aws-amplify/.claude-plugin/plugin.json
{
  "author": {
    "name": "Amazon Web Services"
  },
  "description": "Build full-stack apps with AWS Amplify Gen 2 using guided workflows for authentication, data models, storage, GraphQL APIs, and Lambda functions.",
  "homepage": "https://github.com/awslabs/agent-plugins",
  "keywords": [
    "aws",
    "amplify",
    "fullstack",
    "authentication",
    "data",
    "storage",
    "graphql",
    "functions"
  ],
  "license": "Apache-2.0",
  "name": "aws-amplify",
  "repository": "https://github.com/awslabs/agent-plugins",
  "version": "1.0.0"
}