bullpen skill list¶
Last updated: May 29, 2026
List installed AI agent skills and Bullpen-managed update status
Usage¶
Live Help¶
List installed AI agent skills and Bullpen-managed update status
Usage: bullpen skill list [OPTIONS]
Options:
--output <OUTPUT>
Output format for command results
[possible values: table, json]
--env <ENV>
Target environment to connect to (overrides config.toml)
[env: BULLPEN_ENV=]
[possible values: staging, production]
--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.
--read-only
Enable read-only mode: blocks all mutating commands
--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 list --help
Show options for this command without signing, submitting, or changing state.
Example Commands¶
JSON Output¶
Contract: JSON Output Contract.
Successful output is a top-level JSON array. Empty results are emitted as [].
Entry Keys¶
| key | type | nullable | notes |
|---|---|---|---|
name |
string | no | Skill directory name |
scope |
string | no | Location scope, such as Codex (personal) or agents (project) |
description |
string | no | Skill frontmatter description, or an empty string |
version |
string | yes | Skill frontmatter version, or null when absent |
managed_by_bullpen |
boolean | no | Whether Bullpen CLI owns update/freshness checks for this skill |
update_supported |
boolean | no | Whether bullpen skill update can update this skill |
latest |
string | yes | Current CLI skill version for Bullpen-managed skills, otherwise null |
outdated |
boolean | no | Whether a Bullpen-managed version is older than latest; false for local/third-party skills |
path |
string | no | Skill directory path |
Example¶
[
{
"name": "bullpen-cli",
"scope": "Codex (personal)",
"description": "Use the Bullpen CLI to trade Polymarket prediction markets, manage Solana swaps and token reads, use Hyperliquid, discover events, manage portfolios, and automate trading workflows.",
"version": "1.3.0",
"managed_by_bullpen": true,
"update_supported": true,
"latest": "1.3.0",
"outdated": false,
"path": "/Users/alice/.codex/skills/bullpen-cli"
},
{
"name": "local-research-skill",
"scope": "Codex (personal)",
"description": "Local research workflow",
"version": "0.4.0",
"managed_by_bullpen": false,
"update_supported": false,
"latest": null,
"outdated": false,
"path": "/Users/alice/.codex/skills/local-research-skill"
}
]
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.