| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
How the AI-Driven Dev Framework ships, and what to follow when you open a change. Weekly rolling releases, with a fast lane for urgent fixes.
For branch naming, commit format, and the release tooling, see aidd_docs/memory/vcs.md.
For who may merge and release, see GOVERNANCE.md.
Almost everything flows through next and ships in the weekly release. Only an urgent production fix takes the fast lane straight to main.
flowchart LR
work["feat/* · fix/* · docs/* · …"] -->|PR| next
next -->|weekly promotion PR| main
main -->|release-please PR, auto-merged| rel["tag + version bump"]
rel -->|back-merge, auto| next
hotfix["hotfix/*"] -->|PR| main
Two merges reach main: the weekly promotion PR from next, then the auto-merged Release PR that release-please raises.
The commit type drives the changelog section it lands under.
| Commit type | Changelog section |
|---|---|
| feat | Features |
| fix | Bug Fixes |
| perf | Performance |
| refactor | Refactoring |
| docs | Documentation |
| chore | Miscellaneous |
| revert | Reverts |
The version bump is release-please's call: feat → minor, fix → patch, a ! suffix or BREAKING CHANGE footer → major. The other types ride along in a release triggered by a feat or fix.
| Back | FazBrowse Home | New Git URL |