Group Scholar Queue Pulse is a lightweight ARM64 assembly CLI that logs support-queue signals and summarizes priority volume from a production Postgres database.
- Log queue signals with source, priority, and note
- Summarize signal volume by priority
- Review recent signals with optional limit
- Production-ready Postgres schema + seed data
- Assembly (Apple ARM64)
- libpq (PostgreSQL client library)
- Postgres
makeSet a DATABASE_URL pointing at the production database.
export DATABASE_URL="postgres://USER:PASSWORD@HOST:PORT/DBNAME"./scripts/seed_db.sh./gs-queue-pulse add "email" "high" "Scholar needs award letter by Friday"
./gs-queue-pulse add "slack" "medium" "Missing FAFSA receipt"./gs-queue-pulse summary./gs-queue-pulse recent
./gs-queue-pulse recent 10./scripts/test_cli.sh- The database schema uses the
groupscholar_queue_pulsenamespace to avoid collisions. - Credentials must be provided via environment variables. Do not hardcode secrets.
See ralph-progress.md for iteration updates.