feat(release)!: rename plugin and repo from coord to repo-mailbox

The old name said that something was coordinated, but not what the thing
was. The new one names what it is, reusing the vocabulary the code and
docs already use throughout: mailbox, inbox, archive, broadcast.

Renamed: Forgejo repo (open/coord -> open/repo-mailbox, old URL
redirects), plugin manifest name, package name, README title and badge,
CLAUDE.md heading and release command.

BREAKING CHANGE: the skill is invoked as /repo-mailbox:coord-send rather
than /coord:coord-send, and the plugin must be reinstalled under its new
name.

Deliberately unchanged: the CLI (coord-send.sh, coord-inbox.sh,
coord-done.sh, coord-selftest.sh), the skill name coord-send, the mailbox
root ~/.claude/coord/, and CLAUDE_COORD_DIR. Those name the transport
protocol, not the product; renaming them would migrate live mailbox data
and break message history in every participating repo for no gain.

Selftest unchanged at 70/70 -- the engine was not touched.
This commit is contained in:
Kjell Tore Guttormsen 2026-07-25 07:00:17 +02:00
commit c27b20fc62
6 changed files with 46 additions and 11 deletions

View file

@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.3.0] - 2026-07-25
### Changed
- **Renamed the plugin and repository from `coord` to `repo-mailbox`.** The old
name said that something was coordinated but not what the thing was; the new
one names what it is, using the same vocabulary the code and docs already use
throughout (mailbox, inbox, archive, broadcast). The Forgejo repository moved
from `open/coord` to `open/repo-mailbox` (the old URL redirects), and the
marketplace entry, plugin manifest and package name follow.
**This is breaking for installed users:** the skill is now invoked as
`/repo-mailbox:coord-send` rather than `/coord:coord-send`, and the plugin
must be reinstalled under its new name.
**Deliberately unchanged:** the CLI (`coord-send.sh`, `coord-inbox.sh`,
`coord-done.sh`, `coord-selftest.sh`), the skill name `coord-send`, the
mailbox root `~/.claude/coord/`, and the `CLAUDE_COORD_DIR` override. Those
name the transport protocol, not the product — renaming them would migrate
live mailbox data and break message history in every participating repo for
no gain in clarity.
### Fixed
- Catalog README listed `48 selftest checks` for this plugin; the actual count
has been 70 since v0.2.2.
## [0.2.2] - 2026-07-25
### Changed