Monitoring Agent
Use this playbook when the agent should watch markets continuously or evaluate thresholds over time.
Recommended surface
- Continuous live flow: Use Market WebSocket
- Scheduled checks: Use Market HTTP
- Exact references: Price streams, OHLCV streams, Status events
Use this agent for
- price watchers
- threshold alerts
- live boards
- source or status monitoring
Prompt pattern
Use the AgentQL skill to watch the ethereum WETH price and tell me when the source status changes or the price moves by more than 2 percent.Use the AgentQL skill to keep a short live OHLCV view for this market and summarize meaningful changes instead of printing every event.Expected behavior
- Prefer Market WebSocket for continuous monitoring.
- Fall back to HTTP polling only when live delivery is not required.
- Keep alert-oriented summaries compact.
- Separate transport health from market state when reporting failures.
Common mistakes
- Do not use EVM RPC WebSocket for product-level market streams.
- Do not stream every raw event back to the user without summarization.
- Do not hide
trace_idorrequest_iddetails when a hosted request fails.
Last updated on