Consolidates all connector scripts under tooling/ per project structure conventions. Symlink at db/connectors → tooling/db/ preserves backwards compatibility (remove after Sprint 22). Updated references in CLAUDE.md, Makefile, DEVOPS.md, all skill files, agent files, rules, schema comments, and Sprint 21 briefings. Python scripts updated with correct SCHEMA_PATH (now relative to WORKTREE_ROOT/db/schema.sql). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
431 B
Bash
Executable File
9 lines
431 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Decision ID management — claim, query, and validate decision IDs.
|
|
# Usage:
|
|
# decision next [D|Q|R] Show next available ID
|
|
# decision claim <D|Q|R> <domain> [title] Claim next ID (reserves in DB)
|
|
# decision check-dupes Check for duplicate IDs in markdown
|
|
# decision sync Sync markdown -> DB
|
|
exec python3 "$(dirname "$0")/decisions_sync.py" "$@"
|