bullpen skill update¶
Last updated: May 29, 2026
Update installed skill files to the current CLI version
Usage¶
Live Help¶
Update installed skill files to the current CLI version
Usage: bullpen skill update [OPTIONS]
Options:
--output <OUTPUT>
Output format for command results
[possible values: table, json]
--project
Update project-local directory
--env <ENV>
Target environment to connect to (overrides config.toml)
[env: BULLPEN_ENV=]
[possible values: staging, production]
--path <PATH>
Update at a custom directory path
--claude
Update for Claude Code only
--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.
--openclaw
Update for OpenClaw only
--codex
Update for Codex (OpenAI) only
--gemini
Update for Gemini only
--read-only
Enable read-only mode: blocks all mutating commands
--dry-run
Show what would be updated without writing files
--non-interactive
Suppress interactive prompts; does NOT imply --yes for money-moving commands
[env: BULLPEN_NON_INTERACTIVE=]
--check
Validate installed files against the embedded bundle without writing files
-h, --help
Print help (see a summary with '-h')
EXAMPLES:
bullpen skill update --help
Show options for this command without signing, submitting, or changing state.
Example Commands¶
bullpen skill update [OPTIONS]
bullpen skill update --help
bullpen skill update --codex --output json
JSON Output¶
Contract: JSON Output Contract.
Successful output is a single JSON document. This command emits the payload directly.
Top-level Keys¶
| key | type | nullable | notes |
|---|---|---|---|
file_count |
integer | no | Number of skill files written; omitted for no_platforms |
locations |
array | no | Platform update targets, each with label, path, and status; omitted when --path is used |
status |
string | no | Top-level for --path or no_platforms; per-location for platform targets. Values are updated, installed, or no_platforms |
path |
string | no | Custom update path; present when --path is used |
message |
string | no | Human-readable detail; present for no_platforms |
Example¶
{
"file_count": 36,
"locations": [
{
"label": "Codex",
"path": "/Users/alice/.codex/skills/bullpen-cli",
"status": "updated"
}
]
}
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.