/remove
Remove a deployed framework or addon from the current workspace
$ npx -y skills add jmagly/aiwg --skill remove --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/remove
Context preview
The summary Claude sees to decide when to auto-load this skill.
Remove a deployed framework or addon from the current workspace
SKILL.md
remove.SKILL.mdnamespace: aiwg
name: remove
platforms: [all]
description: Remove a deployed framework or addon from the current workspace
AIWG Remove
You remove a deployed framework or addon from the current workspace.
Triggers
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
- "tear down the marketing framework" → remove media-marketing-kit
- "clean up sdlc" → remove sdlc-complete
- "take out the ralph addon" → remove ralph
- "disable the ring methodology" → remove ring-methodology
Trigger Patterns Reference
| Pattern | Example | Action | |---------|---------|--------| | Remove framework | "remove sdlc" | Run `aiwg remove sdlc-complete` | | Uninstall addon | "uninstall ralph" | Run `aiwg remove ralph` | | Remove by full id | "remove media-marketing-kit" | Run `aiwg remove media-marketing-kit` |
Behavior
When triggered:
1. **Extract intent**:
- Which framework or addon is the target? Resolve shorthands the same way `use` does (e.g., "sdlc" → `sdlc-complete`, "marketing" → `media-marketing-kit`).
- Confirm the item is currently installed before proceeding (check registry).
2. **Run the command**:
# Remove a framework
aiwg remove sdlc-complete
# Remove an addon
aiwg remove ralph
3. **Report the result** inline — confirm what was removed and note that source files are not deleted (only deployed artifacts and the registry entry are affected).
Examples
Example 1: Remove a framework
**User**: "remove the sdlc framework"
**Extraction**: Framework `sdlc-complete`
**Action**:
aiwg remove sdlc-complete
**Response**: "Removed sdlc-complete. Deployed artifacts deleted from `.claude/agents/`, `.claude/commands/`, and `.claude/rules/`. Entry removed from `.aiwg/frameworks/registry.json`. Source files were not affected."
Example 2: Remove an addon
**User**: "uninstall the ralph addon"
**Extraction**: Addon `ralph`
**Action**:
aiwg remove ralph
**Response**: "Removed ralph addon. Deployed artifacts cleared from `.claude/`. Entry removed from registry."
Example 3: Remove something not installed
**User**: "remove the forensics framework"
**Extraction**: Framework `forensics-complete`, check registry first
**Action**:
aiwg remove forensics-complete
**Response**: "forensics-complete is not currently installed — nothing to remove."
Clarification Prompts
If the user's intent is ambiguous:
- "Which framework or addon would you like to remove? Installed: sdlc-complete, ralph."
- "Just to confirm: this removes the deployed artifacts but not the AIWG source. Proceed?"
References
- @$AIWG_ROOT/src/cli/handlers/subcommands.ts — Remove subcommand handler
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference
Read more
namespace: aiwg name: remove platforms: [all] description: Remove a deployed framework or addon from the current workspace
AIWG Remove
You remove a deployed framework or addon from the current workspace.
Triggers
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
- "tear down the marketing framework" → remove media-marketing-kit
- "clean up sdlc" → remove sdlc-complete
- "take out the ralph addon" → remove ralph
- "disable the ring methodology" → remove ring-methodology
Trigger Patterns Reference
| Pattern | Example | Action | |---------|---------|--------| | Remove framework | "remove sdlc" | Run `aiwg remove sdlc-complete` | | Uninstall addon | "uninstall ralph" | Run `aiwg remove ralph` | | Remove by full id | "remove media-marketing-kit" | Run `aiwg remove media-marketing-kit` |
Behavior
When triggered:
1. **Extract intent**:
- Which framework or addon is the target? Resolve shorthands the same way `use` does (e.g., "sdlc" → `sdlc-complete`, "marketing" → `media-marketing-kit`).
- Confirm the item is currently installed before proceeding (check registry).
2. **Run the command**:
# Remove a framework aiwg remove sdlc-complete # Remove an addon aiwg remove ralph
3. **Report the result** inline — confirm what was removed and note that source files are not deleted (only deployed artifacts and the registry entry are affected).
Examples
Example 1: Remove a framework
**User**: "remove the sdlc framework"
**Extraction**: Framework `sdlc-complete`
**Action**:
aiwg remove sdlc-complete
**Response**: "Removed sdlc-complete. Deployed artifacts deleted from `.claude/agents/`, `.claude/commands/`, and `.claude/rules/`. Entry removed from `.aiwg/frameworks/registry.json`. Source files were not affected."
Example 2: Remove an addon
**User**: "uninstall the ralph addon"
**Extraction**: Addon `ralph`
**Action**:
aiwg remove ralph
**Response**: "Removed ralph addon. Deployed artifacts cleared from `.claude/`. Entry removed from registry."
Example 3: Remove something not installed
**User**: "remove the forensics framework"
**Extraction**: Framework `forensics-complete`, check registry first
**Action**:
aiwg remove forensics-complete
**Response**: "forensics-complete is not currently installed — nothing to remove."
Clarification Prompts
If the user's intent is ambiguous:
- "Which framework or addon would you like to remove? Installed: sdlc-complete, ralph."
- "Just to confirm: this removes the deployed artifacts but not the AIWG source. Proceed?"
References
- @$AIWG_ROOT/src/cli/handlers/subcommands.ts — Remove subcommand handler
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference
Multi-agent AI framework for Claude Code, Copilot, Cursor, Warp, and 6 more platforms 200+ agents, 109+ CLI commands, 400+ deployable agent/skill/command/rule artifacts, 8 core frameworks, 32 addons, and a 40-plugin Claude Code marketplace.
Repo: jmagly/aiwg
Other skills on aiwg.
- /agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
Open skill - /agent-loop
Detect requests for iterative autonomous agent loops and route to the appropriate loop executor
Open skill - /auto-test-execution
Automatically execute tests when code-generating agents modify source files, enforcing the execute-before-return pattern
Open skill - /cross-task-learner
Enable agent loops to learn from similar past tasks and share patterns across loops
Open skill - /debug-memory
Query and manage the executable feedback debug memory
Open skill - /execute-feedback
Execute tests on generated code and iterate until passing
Open skill

