Coord Installed Baseline #

This file records the sha256 of the canonical tracked scripts/coord at the time its in-repo tracking was formalized. The tracked copy in scripts/coord is the source of truth; ~/.claude/bin/coord is a local install artifact derived from it via make install-coord.

FieldValue
Canonical locationscripts/coord (in-repo)
Install target~/.claude/bin/coord
sha256 (tracked)38d8aa937530a5371c073543d5bbe7506d08f99008c81ac9a1ab2f39a5027419
Captured2026-04-07
TicketTOD-446
Schemascripts/coord-schema-v0.json (schema v1)

History #

Verifying #

# Check the tracked file matches the recorded baseline:
sha256sum scripts/coord
# expected: 38d8aa937530a5371c073543d5bbe7506d08f99008c81ac9a1ab2f39a5027419

# Check what's installed vs what's tracked:
sha256sum scripts/coord ~/.claude/bin/coord

If the two hashes differ, the install target is out of date:

make install-coord

Installation #

make install-coord

See the top-level Makefile for details. The target is idempotent, copies (not symlinks, for mkdir-based test fixture safety), and prints the installed sha256 for verification.

Drift detection #

.github/workflows/coord-docs-sync.yml enforces that every subcommand in scripts/coord is documented in docs/coord/protocol-v0.md and vice versa. The pre-commit hooks (post-TOD-458) skip scripts/coord for trailing-whitespace and end-of-file-fixer to preserve the byte-identical invariant this baseline depends on.