Skip to main content

Capabilities

Auto is built for agents that need a reliable condition engine + trigger pipeline without building that infrastructure from scratch.

Why Build on Auto

  • Managed condition monitoring for query logic
  • Native query lifecycle APIs (validate, create, poll, cancel)
  • Builder Chat for natural-language-to-query acceleration
  • Event delivery paths for downstream automation (webhook, Telegram, SSE)
  • Session APIs for retrieving full LLM outputs when needed
  • API-key based access with optional x402 access mode
  1. Draft strategy quickly with Builder Chat.
  2. Validate logic and preview simulation costs with Validate Query.
  3. Activate with Create Query.
  4. Connect delivery via webhook/Telegram/SSE.
  5. Let your background runner handle post-trigger actions.

Best-Fit Agent Use Cases

Use CaseFitWhy teams use Auto for this
Multi-condition price + TA logic (RSI, MACD, breakouts, time-window checks)StrongKeep complex trigger logic in one managed query runtime.
CEX + DEX monitoring programsStrongRun cross-market watchlists in one control plane for supported assets/sources.
News + social signal reaction loops (X + market news)StrongTrigger agents when narrative or sentiment context shifts.
Prediction-market and thesis-watch workflowsStrongTrack condition changes and fan out alerts/analysis to agents quickly.
Event-triggered LLM research and summariesStrongRun LLM actions on trigger and retrieve outputs via sessions APIs.
Portfolio-level strategy packsStrongOperate many concurrent queries with consistent lifecycle controls.
Continuous monitoring with low ops overheadStrongOffload scheduling/evaluation/trigger plumbing to Auto.

Prompting Tips for Better Builder Output

To keep Builder Chat focused on Auto runtime constraints, include:

  • Scope: symbols/universe to monitor
  • Trigger definition: condition + timeframe/period
  • Trigger behavior: one-time vs recurring
  • Delivery target: webhook/telegram/notify/llm
  • Expiry: expiresIn window

Example prompt:

Build an Auto query:
- monitor BTC and ETH RSI(14) on 1h
- trigger when crosses below 30
- one-time trigger, expires in 24h
- action: webhook to my endpoint
Return ready-to-submit query JSON.

High-Impact Builder Chat Prompt Pack

  1. Complex TA breakout with direction filter
Build an Auto query:
- symbols: BTC, ETH, SOL
- timeframe: 5m
- trigger when price breaks previous 1h range high or low
- confirm direction with RSI(14): >55 for upside, <45 for downside
- actions: telegram alert + webhook to https://your-runner.example/auto/events
- one-time trigger, expires in 48h
If anything is unsupported, return the closest supported query and list substitutions.
  1. CEX + DEX monitoring pack
Build an Auto query pack for supported CEX + DEX symbols:
- watchlist: WBTC, ETH, SOL, HYPE
- trigger when 15m volume surge aligns with price momentum
- action: webhook to https://your-runner.example/auto/events
- include symbol and trigger summary in payload
If any symbol/source is unsupported, skip it and report skipped items.
  1. News + X sentiment context on trigger
Build an Auto query:
- monitor BTC and ETH for abnormal 1h move + volume confirmation
- on trigger run llm action that adds:
- latest market news context
- X sentiment summary
- risk note
- also send telegram alert with a short summary
- expires in 24h
  1. Prediction-market thesis watcher
Build an Auto query:
- monitor tokens in my prediction-market thesis basket
- trigger on rapid momentum shift with volume confirmation
- action: llm to produce catalyst hypothesis + invalidation level
- deliver to webhook: https://your-runner.example/auto/events
- include decision priority: high/medium/low
  1. Portfolio risk guardrail
Build an Auto query:
- watch my portfolio symbols: BTC, ETH, SOL, HYPE
- trigger on downside acceleration and momentum weakness
- action: telegram alert with severity and suggested next check
- recurring checks, expires in 7d
  1. Agent handoff with strict execution contract
Build an Auto query:
- trigger on breakout + trend-confirmation conditions
- action: webhook to https://your-runner.example/auto/events
- include fields: eventId, symbol, triggerReason, priority, queryId
- objective: downstream agent decides next action under policy constraints

For Advanced Strategies

If you have proprietary selection logic or custom signal preprocessing, keep Auto as your runtime control plane:

  1. Compute selector/signal logic in your own service.
  2. Feed resulting strategy inputs into Auto queries.
  3. Use Auto for monitoring, triggering, and delivery.

Next Guides