Agent Skills
› davepoon/buildwithclaude
› gsd:new-workspace
gsd:new-workspace
GitHub创建隔离工作区,包含指定仓库的副本(worktree或clone)及独立的.planning目录。支持多仓库并行编排与功能分支隔离,便于进行独立的GSD会话管理。
Trigger Scenarios
需要为多个仓库创建独立的工作空间
希望基于当前仓库创建带有独立规划状态的隔离分支
Install
npx skills add davepoon/buildwithclaude --skill gsd:new-workspace -g -y
SKILL.md
Frontmatter
{
"name": "gsd:new-workspace",
"description": "Create an isolated workspace with repo copies and independent .planning\/",
"allowed-tools": [
"Read",
"Bash",
"Write",
"AskUserQuestion"
],
"argument-hint": "--name <name> [--repos repo1,repo2] [--path \/target] [--strategy worktree|clone] [--branch name] [--auto]"
}
Use cases:
- Multi-repo orchestration: work on a subset of repos in parallel with isolated GSD state
- Feature branch isolation: create a worktree of the current repo with its own
.planning/
Creates:
<path>/WORKSPACE.md— workspace manifest<path>/.planning/— independent planning directory<path>/<repo>/— git worktree or clone for each specified repo
After this command: cd into the workspace and run /gsd:new-project to initialize GSD.
<execution_context> @${CLAUDE_PLUGIN_ROOT}/workflows/new-workspace.md @${CLAUDE_PLUGIN_ROOT}/references/ui-brand.md </execution_context>
Version History
- 502fc01 Current 2026-07-05 15:13


