NowAI-Bench / Makefile
bradnow's picture
Add Makefile and update SKILL.md with logging + heartbeat docs
0bc5d1a
Raw
History Blame Contribute Delete
322 Bytes
SYNC := .claude/skills/sync-nowai-leaderboard/sync.mjs
LOG := $(HOME)/Library/Logs/nowai-sync.log
.PHONY: sync check logs
## 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)