Agent Skills
› openclaw/clawhub
› convex-monitor
convex-monitor
GitHub监控 Convex 应用的下一个开发或生产错误及请求,通过阻塞等待事件并触发相应反应。
Trigger Scenarios
需要监控应用错误时
需要监听用户功能请求时
Install
npx skills add openclaw/clawhub --skill convex-monitor -g -y
SKILL.md
Frontmatter
{
"name": "convex-monitor",
"description": "Watch for the next dev\/prod error or request in a Convex app and react to it."
}
Watch for the next thing to react to
Block on the next typed event instead of polling. Races local error logs, deployment subscriptions, and Sentinel prod-error rows; returns the first to fire (or a quiet heartbeat).
Workflow
- Call
wait_for_eventwith {project_dir, event_kinds, timeout_ms}. - On kind=convex_error/next_error: decode and fix it. On kind=prod_error: triage (see sentinel) and fix. On kind=feature_request: build it. On kind=quiet: loop.
- Where a harness has no blocking MCP (e.g. Copilot cloud), the pack runs a poll loop with the SAME event contract — same behavior, different mechanism.
Rules
- Prefer the blocking tool; fall back to a poll loop only where blocking MCP is weak.
- The event schema is fixed and versioned — the same trigger yields the same typed event.
- Prod events (kind=prod_error) require a deployed cloud app plus Sentinel.
Version History
- d6a8c68 Current 2026-08-20 02:44


