用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/WenJunDuan/Rlues --skill worktrees命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | worktrees |
| description | Git worktree isolation for Path C/D development with branch strategy |
| 工具 | 类型 | 用法 | 调用方式 |
|---|---|---|---|
| git CLI | Shell | worktree 操作 | git worktree add/remove/list |
| commit-commands | Plugin | 提交规范 | 自动: git commit 时 |
| Path | 方式 |
|---|---|
| A/B | 不激活 (普通分支或直接 commit) |
| C | E 阶段开始前自动创建 worktree |
| D | Lead worktree + teammate 子分支 |
| --worktree | 任意 Path 强制激活 |
1. git status → 确认 main 干净
2. git worktree add ../project-feature feature/vibe-{id}-{desc}
3. cd worktree → RIPER-7 E 阶段开发
4. 提交 → commit-commands plugin (Conventional Commits)
5. V 阶段完成 → merge 或 PR → git worktree remove
Lead: feature/vibe-{id}-main
├─ Teammate: feature/vibe-{id}-frontend
├─ Teammate: feature/vibe-{id}-backend
└─ Teammate: feature/vibe-{id}-tests
合并顺序: tests → backend → frontend → main
git worktree 不支持 → git checkout -b 普通分支。