From b36fbb1b5e1a6e10e186cacf4845e1831b571003 Mon Sep 17 00:00:00 2001 From: "J. Araujo" <21344963+jay-jlm@users.noreply.github.com> Date: Mon, 22 Dec 2025 12:01:46 -0300 Subject: [PATCH 1/2] Update README with installation command details for non Claude Code users Many people new to the Claude Code and Skills ecosystem will assume that installation is global because the cli install is usually global. Then when they navigate to project directory and try to update Agents.md they will get prompt with this error message: No skills installed. Install skills first: openskills install anthropics/skills --project ...which is not a helpful message for anyone that is not using Claude Code. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa7087c..8d9223a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ```bash npm i -g openskills -openskills install anthropics/skills +openskills install anthropics/skills # installs to locally by default openskills sync ``` From 6b8ffd11af24495929802df83e28de60fc41b8a8 Mon Sep 17 00:00:00 2001 From: "J. Araujo" <21344963+jay-jlm@users.noreply.github.com> Date: Mon, 22 Dec 2025 12:06:09 -0300 Subject: [PATCH 2/2] Update README.md fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d9223a..4e4ebd3 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ```bash npm i -g openskills -openskills install anthropics/skills # installs to locally by default +openskills install anthropics/skills # installs locally by default openskills sync ```