Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 755 Bytes

File metadata and controls

35 lines (26 loc) · 755 Bytes

Versioning

AI-OS uses Semantic Versioning for public releases.

Version format

vMAJOR.MINOR.PATCH

Meaning

  • MAJOR: breaking change to the operating model, prompt contract, or public structure
  • MINOR: new loops, prompts, verifiers, examples, or diagrams
  • PATCH: corrections, clarifications, small documentation fixes

Release loop

stateDiagram-v2
    [*] --> ScopeFreeze
    ScopeFreeze --> Verify
    Verify --> HumanApproval
    HumanApproval --> Tag: approved
    HumanApproval --> Rework: rejected
    Rework --> Verify
    Tag --> ReleaseNotes
    ReleaseNotes --> Publish
    Publish --> PostReleaseCheck
    PostReleaseCheck --> [*]
Loading

Human approval

All releases require explicit maintainer approval.