Files
settled-reach/tooling/atlas-systems-done
T
jpmschweitzerandClaude Opus 4.6 8a3c5af842 data(atlas): update systems.db + add atlas tooling scripts
systems.db: 43 North Reach body catalogs (hops 4-12)
tooling: atlas-verify, atlas-names, atlas-systems-done, atlas-helpers.sh

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 22:18:09 +01:00

8 lines
240 B
Bash
Executable File

#!/bin/bash
# List systems that already have bodies in the atlas DB
cd "$(dirname "$0")/.."
tooling/atlas list-bodies 2>/dev/null | python3 -c "
import sys,json
for s in sorted(set(b['system_id'] for b in json.load(sys.stdin))): print(s)
"