Both methods on this page require no local clone of the repository. They download only what they need, run the installer in a temporary directory, and clean up afterwards. Both also auto-detect which AI coding tools are configured in your current project — so if you haveDocumentation 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.
.cursor/, .claude/, .kiro/, and .junie/ present, all four tools are configured in one command.
skills.sh via npx
skills.sh is a registry and CLI for AI agent skills that follows the open Agent Skills specification. Runningnpx skills add pulls the skill package directly from the GitHub repository and installs it into your project without any global installation step.
Bootstrap script
The bootstrap script downloads the repository as an archive, extracts it to a temporary directory, runsinstall.sh (or install.ps1) with the arguments you pass, and removes the temporary directory on exit. With no arguments it defaults to --tool auto --force, which auto-detects every AI tool configured in the current directory and installs for each one, overwriting any existing files without prompting.
What the bootstrap script does
Download the repository archive
The script fetches the repository as a
.tar.gz (bash) or .zip (PowerShell) from GitHub and extracts it into a uniquely named temporary directory. No git installation is required.Auto-detect configured AI tools
When no
--tool flag is passed, the installer scans the current directory for tool configuration markers — .cursor/, .claude/ or CLAUDE.md, .kiro/, .junie/, .openclaw/, .agents/, .clinerules, .windsurfrules, .github/, GEMINI.md, and AGENTS.md — and installs for every tool it finds.Copy skills and steering files
For each detected tool, the installer copies the appropriate adapter files (steering instructions, rules, slash commands) and all skill
SKILL.md files into the tool’s expected directories within your project.