From bf6abf6286868675dbb54525580ac74b634c9c26 Mon Sep 17 00:00:00 2001 From: Netraj Patel Date: Thu, 9 Jul 2026 20:05:52 +0530 Subject: [PATCH 1/2] docs: replace placeholder install commands with real repo references Fill in the placeholder across Claude Code, Gemini CLI, and skills-CLI install snippets so they're directly copy-pasteable, expand the skills-CLI section to cover whole-bundle/single-skill/multi-skill installs, and delink the "skills CLI" reference to anthropics/skills since that repo documents the SKILL.md format, not this command. Co-Authored-By: Claude Sonnet 5 --- README.md | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a6cbbbd..47895c4 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The same skills are packaged in five formats so you can use whichever tool fits - **Cursor** — rule files (`cursor/rules/`) - **Codex / OpenAI agents** — markdown tree (`codex/`) - **Gemini CLI** — extension manifest (`gemini-extension.json`) -- **[skills](https://github.com/anthropics/skills) CLI** — pulls any single skill on demand +- **`skills` CLI** — pulls any single skill on demand You only need to install one. Pick the section below that matches your tool. @@ -21,7 +21,7 @@ You only need to install one. Pick the section below that matches your tool. ### Claude Code ``` -/plugin marketplace add +/plugin marketplace add contentstack/contentstack-agent-skills /plugin install contentstack-skills ``` @@ -38,13 +38,33 @@ Point your agent at this repo or copy the `codex/` directory into your project. ### Gemini CLI ``` -gemini extensions install +gemini extensions install https://github.com/contentstack/contentstack-agent-skills ``` -### skills CLI (single skill on demand) +### skills CLI + +Install the whole bundle: + +``` +npx skills add contentstack/contentstack-agent-skills +``` + +Install a single skill: + +``` +npx skills add contentstack/contentstack-agent-skills@ +``` + +or, using the full repo URL and the `--skill` flag: + +``` +npx skills add https://github.com/contentstack/contentstack-agent-skills --skill +``` + +Install several specific skills in one command by repeating `--skill`: ``` -npx skills add @ +npx skills add contentstack/contentstack-agent-skills --skill --skill ``` ## Skills included From 5b65006beaa4b835ed1241538561d79b17a2e628 Mon Sep 17 00:00:00 2001 From: Dhaval Jain Date: Sat, 11 Jul 2026 10:49:09 +0530 Subject: [PATCH 2/2] Update README.md