141 lines
3.1 KiB
Markdown
141 lines
3.1 KiB
Markdown
|
|
<gsd-version v="1.12.4" />
|
||
|
|
|
||
|
|
<gsd-arguments>
|
||
|
|
<settings><keep-extra-args /></settings>
|
||
|
|
<arg name="name" type="string" optional />
|
||
|
|
</gsd-arguments>
|
||
|
|
|
||
|
|
<gsd-execute>
|
||
|
|
<shell command="pi-gsd-tools">
|
||
|
|
<args>
|
||
|
|
<arg string="init" />
|
||
|
|
<arg string="remove-workspace" />
|
||
|
|
</args>
|
||
|
|
<outs>
|
||
|
|
<out type="string" name="workspace-data" />
|
||
|
|
</outs>
|
||
|
|
</shell>
|
||
|
|
<if>
|
||
|
|
<condition>
|
||
|
|
<starts-with>
|
||
|
|
<left name="workspace-data" />
|
||
|
|
<right type="string" value="@file:" />
|
||
|
|
</starts-with>
|
||
|
|
</condition>
|
||
|
|
<then>
|
||
|
|
<string-op op="split">
|
||
|
|
<args>
|
||
|
|
<arg name="workspace-data" />
|
||
|
|
<arg type="string" value="@file:" />
|
||
|
|
</args>
|
||
|
|
<outs>
|
||
|
|
<out type="string" name="workspace-data-file" />
|
||
|
|
</outs>
|
||
|
|
</string-op>
|
||
|
|
<shell command="cat">
|
||
|
|
<args>
|
||
|
|
<arg name="workspace-data-file" wrap='"' />
|
||
|
|
</args>
|
||
|
|
<outs>
|
||
|
|
<out type="string" name="workspace-data" />
|
||
|
|
</outs>
|
||
|
|
</shell>
|
||
|
|
</then>
|
||
|
|
</if>
|
||
|
|
</gsd-execute>
|
||
|
|
|
||
|
|
## Context (pre-injected)
|
||
|
|
|
||
|
|
**Workspace:** <gsd-paste name="name" />
|
||
|
|
|
||
|
|
**Data:**
|
||
|
|
<gsd-paste name="workspace-data" />
|
||
|
|
|
||
|
|
<purpose>
|
||
|
|
Remove a GSD workspace, cleaning up git worktrees and deleting the workspace directory.
|
||
|
|
</purpose>
|
||
|
|
|
||
|
|
<required_reading>
|
||
|
|
Read all files referenced by the invoking prompt's execution_context before starting.
|
||
|
|
</required_reading>
|
||
|
|
|
||
|
|
<process>
|
||
|
|
|
||
|
|
## 1. Setup
|
||
|
|
|
||
|
|
Extract workspace name from $ARGUMENTS.
|
||
|
|
|
||
|
|
<!-- Context pre-injected above via WXP - variables available via <gsd-paste name="..."> -->
|
||
|
|
|
||
|
|
Parse JSON for: `workspace_name`, `workspace_path`, `has_manifest`, `strategy`, `repos`, `repo_count`, `dirty_repos`, `has_dirty_repos`.
|
||
|
|
|
||
|
|
**If no workspace name provided:**
|
||
|
|
|
||
|
|
First run `/gsd-list-workspaces` to show available workspaces, then ask:
|
||
|
|
|
||
|
|
Use AskUserQuestion:
|
||
|
|
- header: "Remove Workspace"
|
||
|
|
- question: "Which workspace do you want to remove?"
|
||
|
|
- requireAnswer: true
|
||
|
|
|
||
|
|
Re-run init with the provided name.
|
||
|
|
|
||
|
|
## 2. Safety Checks
|
||
|
|
|
||
|
|
**If `has_dirty_repos` is true:**
|
||
|
|
|
||
|
|
```
|
||
|
|
Cannot remove workspace "$WORKSPACE_NAME" - the following repos have uncommitted changes:
|
||
|
|
|
||
|
|
- repo1
|
||
|
|
- repo2
|
||
|
|
|
||
|
|
Commit or stash changes in these repos before removing the workspace:
|
||
|
|
cd $WORKSPACE_PATH/repo1
|
||
|
|
git stash # or git commit
|
||
|
|
```
|
||
|
|
|
||
|
|
Exit. Do NOT proceed.
|
||
|
|
|
||
|
|
## 3. Confirm Removal
|
||
|
|
|
||
|
|
Use AskUserQuestion:
|
||
|
|
- header: "Confirm Removal"
|
||
|
|
- question: "Remove workspace '$WORKSPACE_NAME' at $WORKSPACE_PATH? This will delete all files in the workspace directory. Type the workspace name to confirm:"
|
||
|
|
- requireAnswer: true
|
||
|
|
|
||
|
|
**If answer does not match `$WORKSPACE_NAME`:** Exit with "Removal cancelled."
|
||
|
|
|
||
|
|
## 4. Clean Up Worktrees
|
||
|
|
|
||
|
|
**If strategy is `worktree`:**
|
||
|
|
|
||
|
|
For each repo in the workspace:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
cd "$SOURCE_REPO_PATH"
|
||
|
|
git worktree remove "$WORKSPACE_PATH/$REPO_NAME" 2>&1 || true
|
||
|
|
```
|
||
|
|
|
||
|
|
If `git worktree remove` fails, warn but continue:
|
||
|
|
```
|
||
|
|
Warning: Could not remove worktree for $REPO_NAME - source repo may have been moved or deleted.
|
||
|
|
```
|
||
|
|
|
||
|
|
## 5. Delete Workspace Directory
|
||
|
|
|
||
|
|
```bash
|
||
|
|
rm -rf "$WORKSPACE_PATH"
|
||
|
|
```
|
||
|
|
|
||
|
|
## 6. Report
|
||
|
|
|
||
|
|
```
|
||
|
|
Workspace "$WORKSPACE_NAME" removed.
|
||
|
|
|
||
|
|
Path: $WORKSPACE_PATH (deleted)
|
||
|
|
Repos: $REPO_COUNT worktrees cleaned up
|
||
|
|
```
|
||
|
|
|
||
|
|
</process>
|