@@ -58,6 +58,18 @@ Skills are plain markdown files. Review and customize them by editing the instal
5858
5959---
6060
61+ ## Install
62+
63+ The quickest way to install the Kane CLI skill globally for all supported agents (Claude Code, Codex CLI, and Gemini CLI) in one command:
64+
65+ ``` bash
66+ npx @testmuai/kane-cli-skill
67+ ```
68+
69+ If you prefer to install manually for a specific agent, follow the instructions below.
70+
71+ ---
72+
6173## Install by Agent
6274
6375<Tabs groupId =" agent-platform " >
@@ -71,15 +83,15 @@ The Kane CLI skill for Claude Code is a `SKILL.md` file placed in your skills di
7183``` bash
7284mkdir -p ~ /.claude/skills/kane-cli
7385curl -o ~ /.claude/skills/kane-cli/SKILL.md \
74- https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/claude /SKILL.md
86+ https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills /SKILL.md
7587```
7688
7789** Project-level install** (available only in this project):
7890
7991``` bash
8092mkdir -p .claude/skills/kane-cli
8193curl -o .claude/skills/kane-cli/SKILL.md \
82- https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/claude /SKILL.md
94+ https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills /SKILL.md
8395```
8496
8597After installing, Claude Code automatically loads the skill. No restart required.
@@ -111,7 +123,7 @@ The Kane CLI skill for Codex CLI is appended to your `AGENTS.md` file. Codex rea
111123
112124``` bash
113125curl -o /tmp/kane-cli-agents.md \
114- https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/codex/AGENTS .md
126+ https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/ skills/SKILL .md
115127
116128# Append to global AGENTS.md (creates the file if it doesn't exist)
117129cat /tmp/kane-cli-agents.md >> ~ /.codex/AGENTS.md
@@ -121,7 +133,7 @@ cat /tmp/kane-cli-agents.md >> ~/.codex/AGENTS.md
121133
122134``` bash
123135curl -o /tmp/kane-cli-agents.md \
124- https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/codex/AGENTS .md
136+ https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/ skills/SKILL .md
125137
126138cat /tmp/kane-cli-agents.md >> AGENTS.md
127139```
@@ -151,15 +163,15 @@ The Kane CLI skill for Gemini CLI is a `SKILL.md` file placed in your Gemini ski
151163``` bash
152164mkdir -p ~ /.gemini/skills/kane-cli
153165curl -o ~ /.gemini/skills/kane-cli/SKILL.md \
154- https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/gemini /SKILL.md
166+ https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills /SKILL.md
155167```
156168
157169** Project-level install** :
158170
159171``` bash
160172mkdir -p .gemini/skills/kane-cli
161173curl -o .gemini/skills/kane-cli/SKILL.md \
162- https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/gemini /SKILL.md
174+ https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills /SKILL.md
163175```
164176
165177** What Gemini can do with this skill:**
0 commit comments