Skip to content

bullpen skill uninstall

Last updated: May 29, 2026

Remove installed skill files

Usage

bullpen skill uninstall [OPTIONS]

Live Help

Remove installed skill files

Usage: bullpen skill uninstall [OPTIONS]

Options:
      --output <OUTPUT>
          Output format for command results

          [possible values: table, json]

      --project
          Remove from project-local directory

      --env <ENV>
          Target environment to connect to (overrides config.toml)

          [env: BULLPEN_ENV=]
          [possible values: staging, production]

      --path <PATH>
          Remove from a custom directory path

      --config <CONFIG>
          Path to a custom config.toml file (overrides $BULLPEN_CONFIG and the default location).

          Explicit --config and BULLPEN_CONFIG paths fail closed: if the file is missing, the CLI exits validation instead of silently loading defaults. Credentials still resolve via BULLPEN_HOME, so set BULLPEN_HOME too when isolating a session.

      --yes
          Skip confirmation prompt

      --claude
          Target Claude Code only

      --openclaw
          Target OpenClaw only

      --codex
          Target Codex (OpenAI) only

      --read-only
          Enable read-only mode: blocks all mutating commands

      --gemini
          Target Gemini only

      --non-interactive
          Suppress interactive prompts; does NOT imply --yes for money-moving commands

          [env: BULLPEN_NON_INTERACTIVE=]

  -h, --help
          Print help (see a summary with '-h')

EXAMPLES:
  bullpen skill uninstall --help
      Show options for this command without signing, submitting, or changing state.

Example Commands

bullpen skill uninstall [OPTIONS]
bullpen skill uninstall --help
bullpen skill uninstall --path /tmp/bullpen-cli --yes --output json

JSON Output

Contract: JSON Output Contract.

Use --yes with --output json to skip the confirmation prompt. This command emits the payload directly.

With --path, successful output is a single JSON document. With platform targets, the command emits one JSON document per target.

Top-level Keys

key type nullable notes
status string no uninstalled, not_found, or no_platforms
label string no Target label, such as Codex or custom path; omitted for no_platforms
path string no Removed or missing skill path; omitted for no_platforms
message string no Human-readable detail; present for no_platforms

Example

bullpen skill uninstall --path /tmp/bullpen-cli --yes --output json
{
  "status": "uninstalled",
  "label": "custom path",
  "path": "/tmp/bullpen-cli"
}

Stability

Patch releases may add nullable or optional fields. Minor releases may add required fields or increment schema_version. Major releases may remove or rename fields.