Standardized YAML frontmatter on all 115 sprint briefing files across sprints 1-26 with title, description, type, status, sprint number, and team fields. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2.3 KiB
2.3 KiB
title, description, type, status, sprint, team
| title | description | type | status | sprint | team |
|---|---|---|---|---|---|
| Sprint 22 — CI Briefing | Remove db/connectors symlink housekeeping | sprint | archived | 22 | ci |
Sprint 22: Wire — CI Tasks
Goal: Fix the fog regression, wire the authored Sova content into a production population and triangle set, and activate the contamination pacing layer that gives the vertical slice its 30-minute shape.
Branch: ci
Agents: Justine (build/deploy)
New Tickets
| # | Title | Blocked by |
|---|---|---|
| #568 | Remove db/connectors symlink (Sprint 22) | — |
Use tooling/db/ticket show <id> for full details.
Key Decisions
No decision files are directly relevant. This is housekeeping: the symlink was marked "remove after Sprint 22" when it was added in PR #274 (#274 ticket: #274).
Notes
#568 — Remove db/connectors symlink
- The
db/connectors → tooling/db/backwards-compat symlink was added in #274 to avoid breaking references during the connector migration. The PR note says "remove after Sprint 22." - Before removing the symlink:
- Grep all worktree branches for
db/connectors/references and update them. The main branch is the reference — checkCLAUDE.md, any skill files, and briefing templates that may reference the old path. - Check
whatsinagame/templates (kit templates) that usedb/connectors/as a canonical path — these need their own path config updated. - Run
grep -r "db/connectors" .from the repo root before removing.
- Grep all worktree branches for
- Removal:
git rm db/connectors(if tracked) orrm db/connectors(if untracked symlink). The target directorytooling/db/stays — only the symlink goes. - After removal: Run
make cito confirm nothing is broken by the removal. Themaketargets all usetooling/db/paths directly, so CI should be unaffected. - Acceptance:
make cipasses.ls db/no longer shows aconnectorsentry. Nodb/connectors/references remain in the repo (verified by grep).
Dependency Chain
#568 (symlink removal) — standalone
PR Workflow
When ready to submit, create a PR with tea CLI:
tea pr create --repo jpmschweitzer/settled-reach --login schweitz --title "chore(ci): remove db/connectors backwards-compat symlink" --description "body" --base main --head ci