Out Plane
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

FlagTypeDescription
--agentstringWhich coding tool to act on. Defaults to every one detected on this machine. One of claude-code, cursor, codex, opencode.
--projectboolAct 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

FieldTypeDescription
agentstring
pathstring
changedboolFalse when there was nothing there, and for a dry run.

Examples

See what would be removed

outplane skills remove --dry-run --json

Remove it everywhere

outplane skills remove

Remove it from one tool

outplane skills remove --agent codex

What 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:

ExitKindMeaning
1internalAn unexpected failure in the CLI itself.
2usageInvalid 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.

On this page