-
Notifications
You must be signed in to change notification settings - Fork 0
Versioning and Releases
ADEPT uses Calendar Versioning (CalVer) to provide clear temporal context for each release. Two packages are published in lockstep: agentic-framework-pkg (platform services) and agentic-framework-sdk (client SDK). Their versions are always kept in sync.
MAJOR.MINOR.YYYYMMDD
| Component | Meaning | Example |
|---|---|---|
| MAJOR | Breaking API changes | 2.0.20260529 |
| MINOR | Feature additions (backward-compatible) | 1.1.20260529 |
| YYYYMMDD | Calendar date of the release | 1.0.20260529 |
The release pipeline follows a strict 9-step sequence:
-
Version bump -- update both packages with matching
YYYYMMDDdate. -
Squash-merge -- merge the parent feature branch into
main. -
Tag -- create
v<version>tag on the merge commit. -
Stage -- run
make stageto produce a clean release tree viagit archive+rsync. - ASOPB scan -- run the 7-pass security scanner against the staged tree (Pipeline ASPI >= 95 publish gate).
-
Dry-run -- execute
--dry-runpublish to validate artifact structure. - Publish -- manual-only step; never automated.
-
Tag released -- create
released-<version>tag after successful publish. - GitHub Release -- attach release notes and changelog.
Publish is never automated: Step 7 requires explicit human approval. The
/prepare-releaseskill walks steps 4-6 but never executes publish.
The .publish-exclude file contains 231 rsync exclusion rules that strip internal-only content from the staged release tree. Categories of excluded content include:
- Development documentation and session reports
- Internal deployment configurations
- Test fixtures and log files
- Credential templates and secrets infrastructure
- CI/CD pipeline definitions
Every release must pass the ASPI (Agentic Security Posture Index) gate with a composite score of 95 or higher. The scan runs in an air-gapped Docker container against the staged tree.
If the Pipeline ASPI score falls below 95, the release is blocked until findings are remediated or excluded via .publish-exclude.
| Tag Pattern | Meaning |
|---|---|
v1.0.20260529 |
Version tag on squash-merge commit |
released-1.0.20260529 |
Confirms successful publication |
Getting Started
Architecture
- Overview
- MCP Tool System
- Slurm HPC Integration
- Multi-Agent Orchestration
- A2A Federation
- Security Model
Deployment
User Guides
Developer Tools
CI/CD
Testing
Contributing
Reference