braid install
Install prompt artifacts from a profile, project, or public source to your local AI coding agents.
Usage
braid install [source] [options]Arguments
| Argument | Description |
|---|---|
source | Public source to install from (for example @handle/slug or @handle/slug@3) |
If no source is provided, installs from your configured scope (profile or projects).
Options
| Option | Description |
|---|---|
--locked | Install exact versions from braid.lock |
-p, --profile <name> | Profile name to install from |
--org-projects <ids> | Comma-separated organization project IDs |
--personal-projects <ids> | Comma-separated personal project IDs |
--include-user-globals | Include personal global prompts |
--no-include-user-globals | Exclude personal global prompts |
--include-org-globals | Include organization global prompts |
--no-include-org-globals | Exclude organization global prompts |
-a, --agents <list> | Target specific agents (e.g., claude-code,cursor) |
-g, --global | Install to global agent directories |
-y, --yes | Skip confirmation prompts |
-l, --list | Preview what would be installed without writing files |
-s, --server <url> | Custom server URL |
Examples
Install from your default profile:
braid installInstall from a specific profile:
braid install --profile coding-standardsInstall a public pack from the marketplace:
braid install @acme/react-standardsInstall exact pinned versions from braid.lock:
braid install --locked
Install to specific agents only:
braid install --agents claude-code,cursorPreview without installing:
braid install --listSkip confirmation prompts (useful in CI):
braid install --yesInstall to global directories (all projects):
braid install --globalAliases
braid add is an alias for braid install.