agentstack bundle
Synopsis
Section titled “Synopsis”agentstack bundle export --profile-file <path> --output <path> [--include-assets]Description
Section titled “Description”The bundle command creates a deterministic, portable archive of your profile. The bundle includes the canonical agentstack.yaml and translated configs for all enabled providers. Secret values are never included — only secret name references appear in the bundle.
Bundles are safe to share publicly or with your team.
Subcommands
Section titled “Subcommands”export
Section titled “export”Export a profile to a bundle file.
| Flag | Type | Required | Description |
|---|---|---|---|
--profile-file <path> | string | Yes | Path to the canonical agentstack.yaml |
--output <path> | string | Yes | Output path for the bundle archive |
--include-assets | boolean | No | Include referenced local asset files (e.g., skill Markdown files) |
Examples
Section titled “Examples”Export a profile to a bundle:
agentstack bundle export \ --profile-file ~/.agentstack/profiles/main/agentstack.yaml \ --output ./my-profile.bundle.zipExport with local skill files included:
agentstack bundle export \ --profile-file ~/.agentstack/profiles/main/agentstack.yaml \ --output ./my-profile.bundle.zip \ --include-assets