Out Plane
skills

skills list

Show where the agent skill is installed, and which version.

read onlyrepeatableno sign-in

Which coding tools are on this machine, whether each has the skill, and which version.

It reads local files only and never asks what the newest release is, so it works with no network and cannot tell you whether an installed skill is out of date. It reports a skill installed through a plugin marketplace exactly as it reports one installed here, because the version is read from the skill's own file rather than from a record this command keeps.

Usage

outplane skills list [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
pathstringWhere its skills live.
installedbool
versionstring | nullNull when it is not installed.

Examples

What is installed where

outplane skills list

Read it in a script

outplane skills list --json --fields agent,installed,version

Just this repository's copy

outplane skills list --project --json

What to Know

  • Local only. It reports what is on disk and never asks the repository what the newest release is, so it cannot say whether an installed skill is out of date.
  • A tool with no configuration directory on this machine is left out entirely rather than reported as not installed.
  • The version is read from the installed skill's own frontmatter, so a skill installed by a plugin marketplace is reported the same way as one installed here.

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.
5not_foundThe named resource does not exist, or is not visible to this credential.

The code on the error object is one of skills.no_agent_found, skills.agent_unknown, skills.no_project_dir. Branch on that, or on the exit status. The message is prose and changes.

On this page