Skip to main content
Trinity
Announcements/April 24, 2026
April 24, 2026

Trinity dev workflow — dev is now the default base branch

Day-to-day work merges into dev. main is release-only.

What changes

  • Branch feature work off dev git checkout dev && git checkout -b feature/<issue>-<slug>
  • Open PRs against dev, not main
  • Both main and dev are protected; direct pushes blocked

Releases

  • New /release skill cuts a release: pre-release checklist → version bump → release notes → devmainmerge → tag push
  • CLI publish (PyPI/Homebrew) and docs sync still fire on push to main — so main stays releasable at all times

Docs

  • docs/DEVELOPMENT_WORKFLOW.md§4b — release cut flow
  • CONTRIBUTING.md— updated branching instructions
  • Skills /review, /sprint, /autoplan now default to dev as base

In-flight feature branches cut from maincan still merge normally — no forced migration.