winget install ARCA.CLIDownload the latest arca.exe from the GitHub Releases and add it to your PATH.
brew install arca-cli/tap/arcago install github.com/adryledo/arca-cli/cmd/arca@latestUse the install command to create the .arca-assets.yaml file in your project root
# Add an asset from a GitHub repository
arca install https://github.com/org/assets my-asset --target .github/instructions/my-asset.mdIf you've cloned a project that already has an ARCA configuration:
# Downloads missed assets and restores symlinks
arca syncMap an asset to specific AI assistants:
# Map to both Copilot and Cursor locations
arca install https://github.com/org/assets my-asset --name cursor --target .cursor/rules/my-asset.md# List assets in a remote manifest
arca list-remote https://github.com/org/assets
# List currently installed assets in the project
arca list
# Output in JSON for tool integration
arca list --json# Add a new version of an asset to the local arca-manifest.yaml
arca publish my-asset 1.2.0 instruction instructions/my-asset.mdPrevious: Purpose & Benefits | Documentation Index | Next: Protocol Deep-Dive