Check the Hoardinator intelligence pipeline status. Shows recent classifications, queued dispatch items, topic segments, and pipeline health. Use for "/pipeline", "pipeline status", "what's in the queue", "show recent classifications", "hoardinator status".
From hoardinatornpx claudepluginhub jabberlockie/the-human-stack-plugins-public --plugin hoardinatorThis skill uses the workspace's default tool permissions.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Designs, audits, and improves analytics tracking systems using Signal Quality Index for reliable, decision-ready data in marketing, product, and growth.
Enforces A/B test setup with gates for hypothesis locking, metrics definition, sample size calculation, assumptions checks, and execution readiness before implementation.
Query The Hoardinator's intelligence pipeline to show what has been processed, what's queued, and the overall health of the system.
SUPABASE_PROJECT_REF environment variable set (hdhmwaldvzxwhimoemap)SUPABASE_ACCESS_TOKEN environment variable setRun all queries in parallel for speed.
curl -s -X POST \
"https://api.supabase.com/v1/projects/${SUPABASE_PROJECT_REF}/database/query" \
-H "Authorization: Bearer ${SUPABASE_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"query": "SELECT id, type, created_at, data->'\''flags'\'' as flags, data->'\''summary'\'' as summary FROM classified ORDER BY created_at DESC LIMIT 5"
}'
curl -s -X POST \
"https://api.supabase.com/v1/projects/${SUPABASE_PROJECT_REF}/database/query" \
-H "Authorization: Bearer ${SUPABASE_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"query": "SELECT type, status, COUNT(*) as count FROM dispatch_queue GROUP BY type, status ORDER BY count DESC LIMIT 15"
}'
curl -s -X POST \
"https://api.supabase.com/v1/projects/${SUPABASE_PROJECT_REF}/database/query" \
-H "Authorization: Bearer ${SUPABASE_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"query": "SELECT status, COUNT(*) as count FROM inputs GROUP BY status"
}'
curl -s -X POST \
"https://api.supabase.com/v1/projects/${SUPABASE_PROJECT_REF}/database/query" \
-H "Authorization: Bearer ${SUPABASE_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"query": "SELECT COUNT(*) as count, MAX(created_at) as last_created FROM topics WHERE created_at > NOW() - INTERVAL '\''24 hours'\''"
}'
Present results in this format:
## Hoardinator Pipeline Status
**Inputs:** X ingested, Y classified, Z pending
**Topics:** N segments created (last: <timestamp>)
**Dispatch Queue:** A queued, B delivered, C failed
**Recent Classifications:**
1. [<type>] <summary> — flags: jtbd, story (+N)
2. ...
**Queue by Type:**
| Flag/Type | Queued | Delivered |
|--------------|--------|-----------|
| action-item | 12 | 0 |
| jtbd | 8 | 0 |
| story | 5 | 0 |
status=queued or status=pending are waiting to be processedstatus=ingested haven't been classified yet