From 84134873aa59cd45fdf8a3f6ef37df88e93f36dc Mon Sep 17 00:00:00 2001 From: Kris Schultz Date: Thu, 11 Jun 2026 14:47:43 -0700 Subject: [PATCH] Fix installation command for non-Claude coding tools The previous command installed all skills for *all* coding agents, resulting in many irrelevant dot directories being created and populated with skill copies (.claude, .aider-desk, .kode, etc.) Signed-off-by: Kris Schultz --- plugins/sagemaker-ai/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sagemaker-ai/README.md b/plugins/sagemaker-ai/README.md index d5e02ef2..4fdebe78 100644 --- a/plugins/sagemaker-ai/README.md +++ b/plugins/sagemaker-ai/README.md @@ -68,7 +68,7 @@ For other agents (Kiro, etc.), install the skills and MCP server manually. **Install skills** using the [Skills CLI](https://github.com/vercel-labs/skills). For example, to install for Kiro: ``` -npx skills add https://github.com/awslabs/agent-plugins/tree/main/plugins/sagemaker-ai/skills --all --agent kiro-cli --copy +npx skills add https://github.com/awslabs/agent-plugins/tree/main/plugins/sagemaker-ai/skills --skill '*' --agent kiro-cli --copy ``` Replace `kiro-cli` with your agent if different. See [Skills supported agents](https://github.com/vercel-labs/skills#supported-agents).