braid docs

braid agents

Create, manage, and install sub-agent configurations from the CLI.

Subcommands

SubcommandDescription
createCreate a new sub-agent
installInstall a sub-agent to local coding tools
listList saved sub-agents
getGet a sub-agent by ID
updateUpdate a sub-agent
removeDelete a sub-agent

Create options

OptionDescription
--name <name>Sub-agent name (required)
--description <text>Sub-agent description (required)
--prompt <text>System prompt (required)
--scope <scope>global or project
--project-id <id>Project ID for project-scoped sub-agents
--mode <mode>primary, subagent, or all
--model <model>LLM model override
--skills <list>Comma-separated skill names to link

Examples

Create a sub-agent:

braid agents create \
  --name "code-reviewer" \
  --description "Security-focused code reviewer" \
  --prompt "You are a senior code reviewer..." \
  --mode primary \
  --skills "security-audit,api-error-handling"

Install a sub-agent to your local tools:

braid agents install --id <agent-id> --agents claude-code,cursor

Install globally:

braid agents install --id <agent-id> --global

List all sub-agents:

braid agents list