From 6d2b221fae6a045529f37c723556de75b8e814e3 Mon Sep 17 00:00:00 2001 From: Saksham Arora Date: Thu, 14 May 2026 17:00:53 +0530 Subject: [PATCH] Fix Kane CLI skill install URLs and add npx one-liner Updated skill download URLs from incorrect paths (skills/claude/, skills/codex/, skills/gemini/) to the correct path (skill-installer/skills/SKILL.md). Added npx @testmuai/kane-cli-skill as the recommended global install method. Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/kane-cli-skills.md | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/docs/kane-cli-skills.md b/docs/kane-cli-skills.md index fc7522669..f0e94cddb 100644 --- a/docs/kane-cli-skills.md +++ b/docs/kane-cli-skills.md @@ -58,6 +58,18 @@ Skills are plain markdown files. Review and customize them by editing the instal --- +## Install + +The quickest way to install the Kane CLI skill globally for all supported agents (Claude Code, Codex CLI, and Gemini CLI) in one command: + +```bash +npx @testmuai/kane-cli-skill +``` + +If you prefer to install manually for a specific agent, follow the instructions below. + +--- + ## Install by Agent @@ -71,7 +83,7 @@ The Kane CLI skill for Claude Code is a `SKILL.md` file placed in your skills di ```bash mkdir -p ~/.claude/skills/kane-cli curl -o ~/.claude/skills/kane-cli/SKILL.md \ - https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/claude/SKILL.md + https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills/SKILL.md ``` **Project-level install** (available only in this project): @@ -79,7 +91,7 @@ curl -o ~/.claude/skills/kane-cli/SKILL.md \ ```bash mkdir -p .claude/skills/kane-cli curl -o .claude/skills/kane-cli/SKILL.md \ - https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/claude/SKILL.md + https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills/SKILL.md ``` 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 ```bash curl -o /tmp/kane-cli-agents.md \ - https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/codex/AGENTS.md + https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills/SKILL.md # Append to global AGENTS.md (creates the file if it doesn't exist) cat /tmp/kane-cli-agents.md >> ~/.codex/AGENTS.md @@ -121,7 +133,7 @@ cat /tmp/kane-cli-agents.md >> ~/.codex/AGENTS.md ```bash curl -o /tmp/kane-cli-agents.md \ - https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/codex/AGENTS.md + https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills/SKILL.md cat /tmp/kane-cli-agents.md >> AGENTS.md ``` @@ -151,7 +163,7 @@ The Kane CLI skill for Gemini CLI is a `SKILL.md` file placed in your Gemini ski ```bash mkdir -p ~/.gemini/skills/kane-cli curl -o ~/.gemini/skills/kane-cli/SKILL.md \ - https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/gemini/SKILL.md + https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills/SKILL.md ``` **Project-level install**: @@ -159,7 +171,7 @@ curl -o ~/.gemini/skills/kane-cli/SKILL.md \ ```bash mkdir -p .gemini/skills/kane-cli curl -o .gemini/skills/kane-cli/SKILL.md \ - https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skills/gemini/SKILL.md + https://raw.githubusercontent.com/LambdaTest/kane-cli/main/skill-installer/skills/SKILL.md ``` **What Gemini can do with this skill:**