skills
skills remove
Remove the Out Plane agent skill from your coding tools.
writesrepeatable--dry-runno sign-in
Deletes the skill from the tools that have it.
Only the Out Plane skill directory goes; other skills in the same folder are untouched.
Removing something that is not there reports changed: false and exits 0, so a
teardown script can run it unconditionally.
Usage
outplane skills remove [flags]Flags
| Flag | Type | Description |
|---|---|---|
--agent | string | Which coding tool to act on. Defaults to every one detected on this machine. One of claude-code, cursor, codex, opencode. |
--project | bool | Act on this directory's skills folder rather than the home one, so the skill can be committed with the repository. |
This command does not accept --team. Every other global flag applies.
Output
| Field | Type | Description |
|---|---|---|
agent | string | |
path | string | |
changed | bool | False when there was nothing there, and for a dry run. |
Examples
See what would be removed
outplane skills remove --dry-run --jsonRemove it everywhere
outplane skills removeRemove it from one tool
outplane skills remove --agent codexWhat to Know
- Removing something that is not there reports changed false and exits 0, so a teardown script can run this unconditionally.
- Only the Out Plane skill directory is deleted. Other skills in the same folder are left alone.
Errors
Beyond 0 for success, this command exits with:
| Exit | Kind | Meaning |
|---|---|---|
1 | internal | An unexpected failure in the CLI itself. |
2 | usage | Invalid arguments, unknown flag, or client-side validation failure. |
The code on the error object is one of skills.agent_unknown, skills.no_project_dir, skills.write_failed. Branch on that, or on the exit status. The message is prose and changes.