Add BreadClient::command (unsourced bread.command.<app>.<verb> emit) plus health/api_version, and a clap-free screenshot_cli helper for the next pin. get.sh now dies if minisign or .minisig is missing — checksum-only is not enough to install. Generate the README products table from the registry, and refresh release-channels/CONTRIBUTING/CLAUDE.md to match.
1.8 KiB
1.8 KiB
CLAUDE.md — Repo hygiene
Scope: this file covers repo hygiene — branching, remotes, CI, cleanup. It is not project documentation.
Follow CONTRIBUTING.md for any git, branch, or release work. Channel/track policy lives in docs/release-channels.md. The product list is registry/bread-ecosystem.toml — regenerate the README table with scripts/gen-readme-products.sh after editing it. Don't invent a second long-lived branch; there is only main.
Remotes
origin— Forgejo (git.breadway.devvia Hestia, SSH) — authoritative.github— GitHub mirror. Push both when publishing.
CI
.forgejo/workflows/package.yml,release-bakery.yml,release-bread-theme.ymlall trigger onpush: tags: ['v*'], gated to skip any tag containing-rc.— pushing tomaindoesn't run these. Tag a release to trigger packaging.dev-bakery.yml/dev-bread-theme.ymltrigger onpush: branches: ['main'];rc-bakery.yml/rc-bread-theme.ymltrigger onpush: tags: ['v*']gated to only run for-rc.tags — both auto-publish a signed, auto-versioned build todl.breadway.dev/{dev,beta}/. Seedocs/release-channels.mdfor the full track (stable/beta/dev) policy.- No build/lint/test CI runs on ordinary commits or PRs to
mainbeyond the dev-track workflow above — there's no separate lint/PR-check pipeline.
Cleanup
- Delete feature/fix branches (local + remote) once merged. Check with
git branch --merged main. - A
fix/audit-findingsbranch and a mergedcopilot/create-readme-mdbranch (both local and onorigin/github) were found stale and fully merged here on 2026-07-21 and removed.
Don't
- Don't embed credentials in remote URLs — SSH or a credential helper only.