name: gsd-new-workspace description: "Create an isolated workspace with repo copies and independent .planning/" argument-hint: "--name <name> [--repos repo1,repo2] [--path /target] [--strategy worktree|clone] [--branch name] [--auto]" allowed-tools:
- Read
- Bash
- Write
- AskUserQuestion
<context> **Flags:** - `--name` (required) — Workspace name - `--repos` — Comma-separated repo paths or names. If omitted, interactive selection from child git repos in cwd - `--path` — Target directory. Defaults to `~/gsd-workspaces/<name>` - `--strategy` — `worktree` (default, lightweight) or `clone` (fully independent) - `--branch` — Branch to checkout. Defaults to `workspace/<name>` - `--auto` — Skip interactive questions, use defaults </context> <objective> Create a physical workspace directory containing copies of specified git repos (as worktrees or clones) with an independent `.planning/` directory for isolated GSD sessions.
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.
</objective>
<required_reading> Read the skill content below before starting. </required_reading>
<process>1. Setup
MANDATORY FIRST STEP — Execute init command:
INIT=$(node "$GSD_TOOLS" init new-workspace)
if [[ "$INIT" == @file:* ]]; then INIT=$(cat "${INIT#@file:}"); fi
Parse JSON for: default_workspace_base, child_repos, child_repo_count, worktree_available, is_git_repo, cwd_repo_name, project_root.
2. Parse Arguments
Extract from $ARGUMENTS:
--name→WORKSPACE_NAME(required)--repos→REPO_LIST(comma-separated paths or names)--path→TARGET_PATH(defaults to$default_workspace_base/$WORKSPACE_NAME)--strategy→STRATEGY(defaults toworktree)--branch→BRANCH_NAME(defaults toworkspace/$WORKSPACE_NAME)--auto→ skip interactive questions
If --name is missing and not --auto:
Use AskUserQuestion:
- header: "Workspace Name"
- question: "What should this workspace be called?"
- requireAnswer: true
3. Select Repos
If --repos is provided: Parse comma-separated values. For each value:
- If it's an absolute path, use it directly
- If it's a relative path or name, resolve against
$project_root - Special case:
.means current repo (use$project_root, name it$cwd_repo_name)
If --repos is NOT provided and not --auto:
If child_repo_count > 0:
Present child repos for selection:
Use AskUserQuestion:
- header: "Select Repos"
- question: "Which repos should be included in the workspace?"
- options: List each child repo from
child_reposarray by name - multiSelect: true
If child_repo_count is 0 and is_git_repo is true:
Use AskUserQuestion:
- header: "Current Repo"
- question: "No child repos found. Create a workspace with the current repo?"
- options:
- "Yes — create workspace with current repo" → use current repo
- "Cancel" → exit
If child_repo_count is 0 and is_git_repo is false:
Error:
No git repos found in the current directory and this is not a git repo.
Run this command from a directory containing git repos, or specify repos explicitly:
/gsd-new-workspace --name my-workspace --repos /path/to/repo1,/path/to/repo2
Exit.
If --auto and --repos is NOT provided:
Error:
Error: --auto requires --repos to specify which repos to include.
Usage:
/gsd-new-workspace --name my-workspace --repos repo1,repo2 --auto
Exit.
4. Select Strategy
If --strategy is provided: Use it (validate: must be worktree or clone).
If --strategy is NOT provided and not --auto:
Use AskUserQuestion:
- header: "Strategy"
- question: "How should repos be copied into the workspace?"
- options:
- "Worktree (recommended) — lightweight, shares .git objects with source repo" →
worktree - "Clone — fully independent copy, no connection to source repo" →
clone
- "Worktree (recommended) — lightweight, shares .git objects with source repo" →
If --auto: Default to worktree.
5. Validate
Before creating anything, validate:
- Target path — must not exist or must be empty:
if [ -d "$TARGET_PATH" ] && [ "$(ls -A "$TARGET_PATH" 2>/dev/null)" ]; then
echo "Error: Target path already exists and is not empty: $TARGET_PATH"
echo "Choose a different --name or --path."
exit 1
fi
- Source repos exist and are git repos — for each repo path:
if [ ! -d "$REPO_PATH/.git" ]; then
echo "Error: Not a git repo: $REPO_PATH"
exit 1
fi
- Worktree availability — if strategy is
worktreeandworktree_availableis false:
Error: git is not available. Install git or use --strategy clone.
Report all validation errors at once, not one at a time.
6. Create Workspace
mkdir -p "$TARGET_PATH"
For each repo:
Worktree strategy:
cd "$SOURCE_REPO_PATH"
git worktree add "$TARGET_PATH/$REPO_NAME" -b "$BRANCH_NAME" 2>&1
If git worktree add fails because the branch already exists, try with a timestamped branch:
TIMESTAMP=$(date +%Y%m%d%H%M%S)
git worktree add "$TARGET_PATH/$REPO_NAME" -b "${BRANCH_NAME}-${TIMESTAMP}" 2>&1
If that also fails, report the error and continue with remaining repos.
Clone strategy:
git clone "$SOURCE_REPO_PATH" "$TARGET_PATH/$REPO_NAME" 2>&1
cd "$TARGET_PATH/$REPO_NAME"
git checkout -b "$BRANCH_NAME" 2>&1
Track results: which repos succeeded, which failed, what branch was used.
7. Write WORKSPACE.md
Write the workspace manifest at $TARGET_PATH/WORKSPACE.md:
# Workspace: $WORKSPACE_NAME
Created: $DATE
Strategy: $STRATEGY
## Member Repos
| Repo | Source | Branch | Strategy |
|------|--------|--------|----------|
| $REPO_NAME | $SOURCE_PATH | $BRANCH | $STRATEGY |
...for each repo...
## Notes
[Add context about what this workspace is for]
8. Initialize .planning/
mkdir -p "$TARGET_PATH/.planning"
9. Report and Next Steps
If all repos succeeded:
Workspace created: $TARGET_PATH
Repos: $REPO_COUNT
Strategy: $STRATEGY
Branch: $BRANCH_NAME
Next steps:
cd $TARGET_PATH
/gsd-new-project # Initialize GSD in the workspace
If some repos failed:
Workspace created with $SUCCESS_COUNT of $TOTAL_COUNT repos: $TARGET_PATH
Succeeded: repo1, repo2
Failed: repo3 (branch already exists), repo4 (not a git repo)
Next steps:
cd $TARGET_PATH
/gsd-new-project # Initialize GSD in the workspace
Offer to initialize GSD (if not --auto):
Use AskUserQuestion:
- header: "Initialize GSD"
- question: "Would you like to initialize a GSD project in the new workspace?"
- options:
- "Yes — run /gsd-new-project" → tell user to
cd $TARGET_PATHfirst, then run/gsd-new-project - "No — I'll set it up later" → done
- "Yes — run /gsd-new-project" → tell user to
<success_criteria>
- Workspace directory created at target path
- All specified repos copied (worktree or clone) into workspace
- WORKSPACE.md manifest written with correct repo table
-
.planning/directory initialized at workspace root - User informed of workspace path and next steps </success_criteria>