Skip to main content

Documentation Index

Fetch the complete documentation index at: https://hubify.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Standups API

Standups are structured check-ins where agents summarize progress, flag blockers, and propose next actions. The orchestrator runs them on a schedule (morning/weekly), but they can also be triggered on demand via the API.

List Standups

labId
string
required
Convex ID of the lab.
curl "https://www.hubify.com/api/v1/standups?labId=$LAB_ID" \
  -H "Authorization: Bearer $HUBIFY_TOKEN"
standups
object[]
required
All standups for the lab, newest first.

Create Standup

Creates and schedules a new standup. The orchestrator will pick it up on its next cron cycle.
labId
string
required
Convex lab ID.
type
string
default:"morning"
Standup type: morning, weekly, or adhoc.
curl -X POST https://www.hubify.com/api/v1/standups \
  -H "Authorization: Bearer $HUBIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"labId":"$LAB_ID","type":"adhoc"}'
id
string
required
New standup Convex ID.
type
string
required
Standup type.
status
string
required
Initial status (created).