Spaces:
Running
Running
| SYNC := .claude/skills/sync-nowai-leaderboard/sync.mjs | |
| LOG := $(HOME)/Library/Logs/nowai-sync.log | |
| ## Run full sync (commit + push to staging) | |
| sync: | |
| node $(SYNC) --push | |
| ## Dry-run: print diff, no writes | |
| check: | |
| node $(SYNC) --check | |
| ## Show last 50 lines of the sync log | |
| logs: | |
| tail -50 $(LOG) | |