fix: rename skill to create-colleague and clarify install location

- SKILL.md name: colleague-creator → create-colleague (matches /create-colleague command)
- README/INSTALL: add warning that skill must be in git repo root's .claude/skills/
- Clone target dir: colleague-creator → create-colleague

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
titanwings
2026-03-30 15:52:26 +08:00
parent 4051ef183b
commit 3115f88884
3 changed files with 17 additions and 9 deletions

View File

@@ -102,13 +102,18 @@
### 1. 安装
> **注意**Claude Code 从 **git 仓库根目录** 的 `.claude/skills/` 查找 skill。请确保在正确的位置安装。
```bash
# 先 cd 到你的 git 仓库根目录
cd $(git rev-parse --show-toplevel)
# 安装到当前项目
mkdir -p .claude/skills
git clone https://github.com/titanwings/colleague-skill .claude/skills/colleague-creator
git clone https://github.com/titanwings/colleague-skill .claude/skills/create-colleague
# 或安装到全局(所有项目用)
git clone https://github.com/titanwings/colleague-skill ~/.claude/skills/colleague-creator
# 或安装到全局(所有项目都能用)
git clone https://github.com/titanwings/colleague-skill ~/.claude/skills/create-colleague
```
> OpenClaw 用户请参考 [INSTALL.md](INSTALL.md)