AWS架构技能 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
AWS架构技能 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
AWS架构技能 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/aws-samples/sample-well-architected-skills-and-steering
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"aws----": {
"command": "npx",
"args": ["-y", "sample-well-architected-skills-and-steering"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 AWS架构技能 执行以下任务... Claude: [自动调用 AWS架构技能 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"aws____": {
"command": "npx",
"args": ["-y", "sample-well-architected-skills-and-steering"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Reusable skills and steering that teach AI coding agents how to apply the AWS Well-Architected Framework. Works with Kiro, Claude Code, Cursor, Codex, Windsurf, GitHub Copilot, Gemini CLI, Antigravity, Cline and AWS DevOps Agent.
⚠️ Important: This sample is provided for educational and demonstrative purposes. It is not intended for production use without additional review and testing appropriate to your environment.
| Skill | Pillar(s) | Use when you need to... |
|---|---|---|
wa-review | All 6 | Run a full Well-Architected review |
reliability-improvement-plan | Reliability | Find and eliminate single points of failure |
security-assessment | Security | Assess IAM, detection, data protection, incident response |
cost-optimization-audit | Cost Optimization | Identify waste and right-sizing opportunities |
performance-efficiency | Performance Efficiency | Evaluate resource selection, scaling, and caching |
sustainability-optimization | Sustainability | Reduce carbon footprint and resource waste |
migration-readiness | All 6 | Assess readiness to migrate a workload to AWS |
operational-excellence | Operational Excellence | Assess CI/CD, observability, incident management, operational maturity |
architecture-decision-record | All 6 | Document a design decision with WA pillar impact |
steering/ Steering (Kiro) — always-on context
well-architected.md WA Framework pillars, design principles, review process
skills/ Skills — standalone step-by-step playbooks (tool-agnostic)
wa-review/ Full Well-Architected review across all 6 pillars
reliability-improvement-plan/ Identify SPOFs and produce a reliability remediation plan
security-assessment/ Deep-dive security posture assessment
cost-optimization-audit/ Find waste, right-sizing, pricing model improvements
performance-efficiency/ Resource selection, scaling, caching, optimization
sustainability-optimization/ Carbon footprint reduction via utilization and architecture
migration-readiness/ 7 Rs assessment with migration plan
operational-excellence/ CI/CD, observability, incident mgmt, operational maturity
architecture-decision-record/ WA-aligned ADRs with pillar impact analysis
assets/ Shared reference material (WA best practices, metrics, patterns)
v13/ Well-Architected Framework v13 best practices by ID
well-architected-best-practices.md Per-pillar best practices with investigation checklists
cloudwatch-metrics-reference.md Metric thresholds by service + composite alarm patterns
incident-investigation-patterns.md Triage, RCA, mitigation playbooks, post-mortem template
skill-authoring-guide.md Guide for writing effective DevOps Agent skills
adapters/ Tool-specific config files
claude-code/ CLAUDE.md + .claude/commands/*.md
cursor/ .cursor/rules/*.md
codex/ AGENTS.md
windsurf/ .windsurfrules
github-copilot/ .github/copilot-instructions.md
cline/ .clinerules
gemini-cli/ GEMINI.md
antigravity/ .agents/rules/*.md
devops-agent/ Assets + packaging for AWS DevOps Agent
install.sh Setup script for any tool
```bash
./install.sh ~/my-project --tool claude-code ./install.sh ~/my-project --tool cursor ./install.sh ~/my-project --tool kiro
./install.sh ~/my-project --tool kiro --tool claude-code --tool cursor
./install.sh ~/my-project --tool all
./install.sh --global --tool claude-code ```
Run ./install.sh --help for full usage.
Note on--global: Global installation places configuration files directly in your home directory (e.g.,~/CLAUDE.md,~/AGENTS.md,~/.clinerules,~/.windsurfrules) or in global tool-specific directories (e.g.,~/.kiro/,~/.claude/,~/.cursor/). These files apply to all projects that don't have their own project-level configuration. Use project-level installation (the default) if you only want Well-Architected guidance for specific projects. Note on existing files: The installer will prompt before overwriting any existing files. Use--forceto skip the prompt and overwrite without confirmation.
mkdir -p .kiro/steering .kiro/skills
cp path/to/this-repo/steering/well-architected.md .kiro/steering/
cp -r path/to/this-repo/skills/* .kiro/skills/
cp path/to/this-repo/adapters/claude-code/CLAUDE.md ./CLAUDE.md
cp -r path/to/this-repo/adapters/claude-code/commands .claude/commands
cp -r path/to/this-repo/adapters/cursor/rules .cursor/rules
cp path/to/this-repo/adapters/codex/AGENTS.md ./AGENTS.md
cp -r path/to/this-repo/skills ./skills
cp path/to/this-repo/adapters/windsurf/.windsurfrules ./.windsurfrules
mkdir -p .github
cp path/to/this-repo/adapters/github-copilot/.github/copilot-instructions.md .github/
cp path/to/this-repo/adapters/cline/.clinerules ./.clinerules
cp path/to/this-repo/adapters/gemini-cli/GEMINI.md ./GEMINI.md
cp -r path/to/this-repo/skills ./skills
mkdir -p .agents/rules .agents/skills
cp -r path/to/this-repo/adapters/antigravity/rules/* .agents/rules/
for skill_dir in path/to/this-repo/skills/*/; do
skill_name=$(basename "$skill_dir")
mkdir -p ".agents/skills/$skill_name"
cp "$skill_dir/SKILL.md" ".agents/skills/$skill_name/SKILL.md"
done
```bash
./install.sh ~/output-dir --tool devops-agent
高质量的AWS架构技能工具
该工具使用 MIT-0 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 MIT-0 — 请查阅原始协议条款了解具体使用限制。
经综合评估,AWS架构技能 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | sample-well-architected-skills-and-steering |
| 原始描述 | 开源MCP工具:Reusable skills and steering that teach AI coding agents how to apply the AWS We。⭐11 · Shell |
| Topics | awsai-coding-agentsmcp |
| GitHub | https://github.com/aws-samples/sample-well-architected-skills-and-steering |
| License | MIT-0 |
| 语言 | Shell |
收录时间:2026-05-25 · 更新时间:2026-05-30 · License:MIT-0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端