用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vamseeachanta/workspace-hub --skill git-worktree-workflow-pattern-1-feature-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | git-worktree-workflow-pattern-1-feature-review |
| description | Sub-skill of git-worktree-workflow: Pattern 1: Feature + Review (+3). |
| version | 1.1.0 |
| category | development |
| type | reference |
| scripts_exempt | true |
Run development and review in parallel:
# Terminal 1: Development Codex
cd /project-feature
Codex "Implement the new authentication module"
# Terminal 2: Review Codex
cd /project
Codex "Review the authentication changes in feature-auth branch"
Work on multiple features simultaneously:
# Setup worktrees
git worktree add -b feature-api ../project-api main
git worktree add -b feature-ui ../project-ui main
git worktree add -b feature-tests ../project-tests main
# Run Codex in each (separate terminals)
cd ../project-api && Codex "Build REST API endpoints"
cd ../project-ui && Codex "Create React components"
cd ../project-tests && Codex "Write integration tests"
Main Codex spawns verification in separate worktree:
# Main Codex working in /project
# Creates verification worktree:
git worktree add --detach ../project-verify HEAD
# Spawns subagent to verify:
cd ../project-verify && Codex -p "Verify the implementation works correctly"
Compare two approaches:
# Create two worktrees from same point
git worktree add -b approach-a ../project-a main
git worktree add -b approach-b ../project-b main
# Different Codex instances try different solutions
cd ../project-a && Codex "Implement caching using Redis"
cd ../project-b && Codex "Implement caching using Memcached"
# Compare results
diff -r ../project-a/src ../project-b/src