Skip to content

Commit 5c16ade

Browse files
authored
Merge pull request #2937 from sakshamarora-arch/fix/kane-cli-skill-urls-testmucom
Fix Kane CLI skill install URLs and add npx installer
2 parents bfce368 + cb4a500 commit 5c16ade

1 file changed

Lines changed: 18 additions & 6 deletions

File tree

docs/kane-cli-skills.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
7284
mkdir -p ~/.claude/skills/kane-cli
7385
curl -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
8092
mkdir -p .claude/skills/kane-cli
8193
curl -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

8597
After 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
113125
curl -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)
117129
cat /tmp/kane-cli-agents.md >> ~/.codex/AGENTS.md
@@ -121,7 +133,7 @@ cat /tmp/kane-cli-agents.md >> ~/.codex/AGENTS.md
121133

122134
```bash
123135
curl -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

126138
cat /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
152164
mkdir -p ~/.gemini/skills/kane-cli
153165
curl -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
160172
mkdir -p .gemini/skills/kane-cli
161173
curl -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

Comments
 (0)