Status Workflow
This workflow keeps the Platform Status page, ClickUp “Platform Docs Hub,” and daily operations aligned.
Data Flow
- Source File:
docs-site/src/data/status.jsonholds structured status data. - Rendered Page:
docs/status/status.mdximportsStatusOverviewcomponent to display that data. - ClickUp Sync:
Platform Docs Hub → Technical Referencetask includes a link to the live docs and notes about the latest update.
Update Checklist (EOD)
- Update
status.jsonwith environment state, integration status, recent changes, next actions. - Run a local docs preview (
cd docs-site && npm run start) if you want to verify formatting. - Commit the changes (or stage for review).
- Run
node scripts/sync-status-to-clickup.jsto post the structured summary to ClickUp. - Schedule the same command via Render cron (nightly) so ClickUp stays aligned automatically.
- Add a brief daily summary comment in the
Daily Runbooktask linking back to the updated docs.
Automation Ideas
- Script to append the day’s ClickUp summary to
recentChanges. - GitHub Action to deploy docs site on push to
main. - Render cron job to ping key health endpoints and update
status.jsonaccordingly.
Keeping this status workflow consistent ensures both humans and automation have the same snapshot of platform health.***