bullpen skill install¶
Last updated: May 29, 2026
Install the Bullpen CLI skill for AI agents (e.g., Claude Code)
Usage¶
Live Help¶
Install the Bullpen CLI skill for AI agents (e.g., Claude Code)
Usage: bullpen skill install [OPTIONS]
Options:
--output <OUTPUT>
Output format for command results
[possible values: table, json]
--project
Install into project-local directory instead of personal directory
--env <ENV>
Target environment to connect to (overrides config.toml)
[env: BULLPEN_ENV=]
[possible values: staging, production]
--path <PATH>
Install to a custom directory path (overrides platform flags)
--claude
Install 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
Install for OpenClaw only
--codex
Install for Codex (OpenAI) only
--gemini
Install for Gemini only
--read-only
Enable read-only mode: blocks all mutating commands
--dry-run
Show what would be installed without writing files
--non-interactive
Suppress interactive prompts; does NOT imply --yes for money-moving commands
[env: BULLPEN_NON_INTERACTIVE=]
--check
Validate the target against the embedded skill bundle without writing files
-h, --help
Print help (see a summary with '-h')
EXAMPLES:
bullpen skill install --help
Show options for this command without signing, submitting, or changing state.
Example Commands¶
bullpen skill install [OPTIONS]
bullpen skill install --help
bullpen skill install --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 |
|---|---|---|---|
status |
string | no | installed, or no_platforms when no supported platform is detected |
file_count |
integer | no | Number of skill files written; omitted for no_platforms |
locations |
array | no | Platform install targets, each with label and path; omitted when --path is used |
path |
string | no | Custom install path; present when --path is used |
message |
string | no | Human-readable detail; present for no_platforms |
Example¶
{
"status": "installed",
"file_count": 36,
"locations": [
{
"label": "Codex",
"path": "/Users/alice/.codex/skills/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.