Skip to content

skillshub agents

The agents command scans your system for supported AI agents and reports which ones are detected, whether they are configured for use with skillshub, and where their configuration files are located.

Terminal window
skillshub agents
OptionDescription
--jsonOutput the agent list in JSON format.

Running skillshub agents displays a summary of detected agents:

Agent Status Config Path
claude configured ~/.claude/skills/
codex detected ~/.codex/config/
cursor configured ~/.cursor/skills/
aider not found -
opencode not found -
continue detected ~/.continue/config/
trae not found -
  • configured — The agent is installed and has been set up with skillshub.
  • detected — The agent is installed but has not yet been linked to any skills.
  • not found — The agent is not installed on the system.

Output agent information as JSON:

Terminal window
skillshub agents --json
[
{
"name": "claude",
"status": "configured",
"config_path": "~/.claude/skills/"
},
{
"name": "codex",
"status": "detected",
"config_path": "~/.codex/config/"
},
{
"name": "cursor",
"status": "configured",
"config_path": "~/.cursor/skills/"
},
{
"name": "aider",
"status": "not_found",
"config_path": null
}
]