Skip to main content
ClaudeWave
Skill0 repo starsupdated yesterday

mindforge-remove-workspace

This Claude Code skill removes a specified MindForge workspace by executing a structured workflow that deletes the workspace directory and cleans up associated git worktrees. Use it when decommissioning a workspace, after confirming the workspace name and ensuring all member repositories have committed changes to prevent data loss.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/sairam0424/MindForge /tmp/mindforge-remove-workspace && cp -r /tmp/mindforge-remove-workspace/.agent/skills/mindforge-remove-workspace ~/.claude/skills/mindforge-remove-workspace
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

<context>
**Arguments:**
- `<workspace-name>` (required) — Name of the workspace to remove
</context>

<objective>
Remove a workspace directory after confirmation. For worktree strategy, runs `git worktree remove` for each member repo first. Refuses if any repo has uncommitted changes.
</objective>

<execution_context>
@.agent/workflows/mindforge-remove-workspace.md
@.agent/references/ui-brand.md
</execution_context>

<process>
Execute the remove-workspace workflow from @.agent/workflows/mindforge-remove-workspace.md end-to-end.
</process>