agentstack profile
Synopsis
Section titled “Synopsis”agentstack profile install <repo-spec> --profile <name> [--target-profile <name>] [--ref <branch|tag>]Description
Section titled “Description”The profile command lets you install shared profile templates from git or GitHub repositories.
This is useful when a team maintains a standard AgentStack setup (MCP servers, skills, providers) and you want to bootstrap your local profile from that source.
Subcommands
Section titled “Subcommands”install
Section titled “install”Install a shared profile template.
| Flag | Type | Required | Description |
|---|---|---|---|
--profile <name> | string | Yes | Name of the source profile inside the repository |
--target-profile <name> | string | No | Local destination profile name (defaults to source profile name) |
--ref <branch|tag> | string | No | Git ref to install from (branch or tag) |
Examples
Section titled “Examples”Install from GitHub URL spec:
agentstack profile install \ url:https://github.com/acme/agentstack-profiles \ --profile mobile-defaultInstall using a specific branch/tag:
agentstack profile install \ url:https://github.com/acme/agentstack-profiles \ --profile backend-team \ --ref mainInstall and rename locally:
agentstack profile install \ url:https://github.com/acme/agentstack-profiles \ --profile mobile-default \ --target-profile my-mobile