Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/aws-samples/sample-well-architected-skills-and-steering/llms.txt

Use this file to discover all available pages before exploring further.

Amp reads AGENTS.md from your project root as persistent steering context and discovers structured skills from the .agents/skills/ directory. Installing both gives Amp always-on Well-Architected awareness plus 11 step-by-step assessment playbooks it can follow on request.

What gets installed

AGENTS.md

Steering context that applies the six Well-Architected pillars to every architecture conversation, surfaces trade-offs, and routes structured assessment requests to the correct skill.

.agents/skills/ directory

Eleven skill subdirectories, each containing a SKILL.md playbook. Amp reads these when you invoke a specific review or plan.

Installation

1

Clone or download the source repo

If you haven’t already, clone the sample repository to a local path you can reference:
git clone https://github.com/aws-samples/sample-well-architected-skills-and-steering.git
2

Copy files into your project

Run the commands below from the root of your project directory, substituting path/to/this-repo with the actual clone location.
cp path/to/this-repo/adapters/amp/AGENTS.md ./AGENTS.md
mkdir -p .agents/skills
cp -r path/to/this-repo/skills/* .agents/skills/
3

Verify the layout

Your project should now contain:
AGENTS.md
.agents/
  skills/
    wa-review/SKILL.md
    security-assessment/SKILL.md
    reliability-improvement-plan/SKILL.md
    cost-optimization-review/SKILL.md
    performance-efficiency/SKILL.md
    sustainability-optimization/SKILL.md
    operational-excellence/SKILL.md
    migration-readiness/SKILL.md
    architecture-decision-record/SKILL.md
    wa-builder/SKILL.md
    wa-guardrails/SKILL.md

Install via script

If you prefer the one-command approach from a local clone, the install script handles directory creation and copying automatically:
./install.sh ~/my-project --tool amp

Usage

With AGENTS.md present, Amp applies Well-Architected principles automatically whenever architecture topics come up. Invoke a specific skill by name or description:
Run a Well-Architected review of this architecture.
Amp reads AGENTS.md at session start and loads the matching .agents/skills/{skill-name}/SKILL.md when a structured assessment is requested.
The steering in AGENTS.md instructs Amp to group findings by pillar and apply severity labels (🔴 High Risk, 🟡 Medium Risk, 🟢 Best Practice). Start with a quick review to identify which pillars have gaps, then request a deeper dive on specific areas.

Available skills

SkillWhat it does
wa-reviewFull 6-pillar review with prioritized findings report
security-assessmentDeep-dive into IAM, detection, data protection, incident response
reliability-improvement-planFind SPOFs, assess recovery, produce remediation plan
cost-optimization-reviewIdentify waste, right-sizing, pricing model improvements
performance-efficiencyResource selection, scaling, caching, optimization
sustainability-optimizationUtilization, architecture efficiency, carbon reduction
operational-excellenceCI/CD, observability, incident management, operational maturity
migration-readiness7 Rs assessment, dependency analysis, migration plan
architecture-decision-recordADR with WA pillar impact analysis
wa-builderLearn WA for your workload and generate visual artifacts
wa-guardrailsGenerate preventive controls (Config rules, SCPs, CI checks)

Build docs developers (and LLMs) love