Package your AI systems into versioned releases and deploy them to specific environments. Every release is an immutable snapshot, and every deployment is tracked with full audit history.
Each release is a snapshot of your app at a point in time. Releases move through a well-defined lifecycle from creation to retirement.
Release is being prepared. Changes can still be added.
Release is finalized and ready to be deployed.
Currently deployed to one or more environments.
Previously active but no longer deployed anywhere.
Retired. Kept for historical reference only.
Deploy releases to specific environments — dev, staging, and production. Each deployment is tracked with who deployed, when, and which release was involved.
Three distinct operations for managing what runs in each environment.
Push a release to a target environment. The release becomes the active version for that environment.
Revert an environment to a previous release. The platform tracks the rollback as a distinct deployment event.
Remove the active release from an environment entirely. The environment goes back to having no deployed release.
A single chronological feed showing commits, releases, and deployments together. Three event types with distinct visual treatment so you can track your app's full history at a glance.
Update system prompt for summarizer step
alice - 2 hours ago
Commits represent code and configuration changes tracked by the version control system.
v2.4.0 created
bob - 1 hour ago
Releases are version milestones that snapshot the app at a specific point in time.
v2.4.0 deployed to staging
bob - 45 min ago
Deployments push a release to an environment, with color coding by action type.
staging rolled back to v2.3.1
carol - 30 min ago
Rollbacks revert to a previous release and appear as orange deployment events.
v2.2.0 removed from dev
dave - 15 min ago
Undeploy events appear in red when a release is removed from an environment.
Each release shows its tag, current status, description, the number of endpoints included, and who created it.
Tag | Status | Description | Endpoints | Creator |
|---|---|---|---|---|
| v2.4.0 | Active | Add summarizer pipeline with multi-model support | 5 | bob |
| v2.3.1 | Inactive | Hotfix: rate limiting on inference endpoint | 5 | alice |
| v2.3.0 | Archived | Knowledge layer integration with namespace routing | 4 | carol |
| v2.2.0 | Archived | Initial tool execution framework | 3 | dave |