Well-Architected Skills & Steering can be installed into any project without cloning the repository. Three installation methods are available depending on your workflow: theDocumentation 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.
skills.sh npx runner (recommended), a one-liner bootstrap script, or the local install script for teams that prefer to work from a clone.
Prerequisites
- Node.js (for the
npx skillsmethod) — or just a shell/PowerShell for the bootstrap and install script methods - An AI coding tool already configured in your project (Kiro, Claude Code, Cursor, Codex, Windsurf, GitHub Copilot, Gemini CLI, Antigravity, Junie, Amp, OpenClaw, Cline, or AWS DevOps Agent)
- No AWS credentials required — everything runs locally
Installation methods
Method 1: Via skills.sh (npx) — recommended
The fastest way to install. The This auto-detects your AI agent by looking for tool-specific directories (
npx skills runner auto-detects your AI tool, installs skills directly, and requires no clone..kiro/, .claude/, .cursor/, etc.) and installs the full skill set for every detected tool.Useful flags:Method 2: Via bootstrap script — no clone, no Node.js
The bootstrap script auto-detects your AI tools, installs for all of them, and cleans up after itself. No Node.js required.The bootstrap script detects installed tools by looking for their config directories (
.cursor/, .claude/, .kiro/, .junie/, .openclaw/, etc.) and installs for every match it finds.Install for a specific tool only:Method 3: Via install script — from a local clone
If you prefer to inspect the files before installing, or want to use symlinks for automatic updates, clone the repository and run the install script.Then run the install script with your target project directory:
Use
--symlink (bash) or -Symlink (PowerShell) to create symbolic links instead of copies. When the upstream repository updates, your project gets the changes automatically without reinstalling. On Windows, symlinks require elevated permissions.Global vs. project-level installs
Project-level install (the default) places WA skills and steering inside your project directory. They apply only to that project and are committed alongside your code — ideal when you want WA guidance scoped to a specific workload.Global install (
-g, --global, or -Global) places files in your home directory (~/CLAUDE.md, ~/.kiro/, ~/.cursor/, etc.). They apply to every project that doesn’t have its own WA config, making them a good baseline for your entire development environment.Existing files — the installer prompts before overwriting. Use --force to skip confirmation.Verify the installation
After installing, ask your AI coding agent:What gets installed
Depending on which tool you install for, the installer places different files into your project:| Tool | Files installed |
|---|---|
| Kiro | .kiro/steering/well-architected.md, .kiro/skills/*/SKILL.md |
| Claude Code | CLAUDE.md, .claude/commands/*.md (slash commands), .claude/skills/*/SKILL.md |
| Cursor | .cursor/rules/*.md, .cursor/skills/*/SKILL.md |
| Codex | AGENTS.md, skills/ directory |
| Windsurf | .windsurfrules, skills/*/SKILL.md |
| GitHub Copilot | .github/copilot-instructions.md |
| Cline | .clinerules, skills/*/SKILL.md |
| Gemini CLI | GEMINI.md, skills/ directory |
| Antigravity | .agents/rules/*.md, .agents/skills/*/SKILL.md |
| Junie | .junie/guidelines/well-architected.md, .junie/skills/*/SKILL.md |
| Amp | AGENTS.md, .agents/skills/*/SKILL.md |
| OpenClaw | AGENTS.md, .agents/skills/*/SKILL.md |
| AWS DevOps Agent | Packaged .zip files ready for upload to Agent Space |
Next steps
Once installation is verified, explore what the skills can do:- Run a full review — ask your agent to perform a Well-Architected review of your current project directory
- Scope to a pillar — ask for a security assessment or a cost optimization review to get targeted, deep analysis
- Try the wa-builder skill — ask your agent to produce an architecture diagram with WA pillar annotations
- Read How It Works — understand how skills, steering, adapters, and powers fit together
