Have GPT-6 Astra watch severe weather alerts

GPT-6 Astra can watch U.S. weather alerts for free: Actionway's weather alert service is free, returns each alert as structured JSON, and a Codex task can rebuild a status page from it every hour. This guide shows a real Texas check with eight active alerts.

Agent を接続する

あなたの依頼

Check the active severe weather alerts for Texas and give me one line per alert: event, counties, and whether it is still in effect.

AGENT の返答

Live weather data. One free service from the catalog covers it:

  • Weather Alertsfreeactive U.S. alerts for a state, territory, or marine area
  • Weather Alert Detailfreeone alert's full text by its identifier
  • Alert Event Typesfreethe list of event names to filter on

あなたが選択: Weather Alerts · TX

  • Calls the weather alert service for TX — a synchronous call, the JSON comes back in the same turn
  • Reads eight active alerts and groups them by event and county
  • Writes the one-line-per-alert summary itself; nothing else is billed

結果

TX · 8 active alerts

Heat Advisory    Montague, Cooke, Grayson, Wise, Denton, Collin, Tarrant, Dallas …
Heat Advisory    Hunt, Delta, Hopkins
Heat Advisory    Fannin, Lamar
Heat Advisory    Alfalfa, Grant, Kay, Major, Garfield, Noble …
Heat Advisory    Sevier, Howard, Little River, Hempstead, Nevada, Miller …
Flood Warning    Hardin, TX

1 call · Weather Alerts · free · nothing charged

That is a real session, unedited: one question in, one free data call, a readable summary out. The Actionway weather alerts capability returns the same records the U.S. alert feed publishes — event, area, timing, full text — as structured JSON, so the agent groups and rewrites them instead of scraping a page.

What happened in between

OpenAI released GPT-6 Astra on September 3, 2026 around long-running agent tasks, and since Codex CLI 0.153.4 it is the bundled default model. Watching a feed for hours is that kind of task: check, compare with the last check, rewrite the page, wait, repeat. What the model needs from outside is a trustworthy feed, and the Skill installed with the Actionway CLI is how it finds one.

Before answering, the agent checked the capability index it keeps locally, saw that the weather services are free, and said so with the options. A free call needs no wallet check, so it ran immediately; a priced service would have shown its price alongside and run at that price once picked. The response is JSON, so the agent can diff it against the previous hour's copy, keep only what changed, and rebuild a status page — an HTML file, a Slack-ready text, a CSV — as ordinary local code work that costs nothing.

Turn one check into a watch

The loop is the agent's job: ask for the alerts, fetch a single alert's full text with the detail service when a line needs it, filter by event type with the alert types list, and write the page. Because every response is structured and stored, the page can cite itself — which alert, which counties, fetched when — and a reader can trust it without re-checking the source. The stock and company data services follow the same pattern when the feed you need is a market instead of a storm.

Free calls still run through the same catalog, so nothing about the setup changes when you add a priced service later: the agent lists it with its price, and picking it is the approval. Only runs the platform flags for extra confirmation pause first, and an empty wallet stops a priced run before anything is charged.

What the hourly page should contain

A status page is only useful if a reader can trust it without opening the source, so ask the agent to put four things on it: the time of the last check, the list of active alerts with event and counties, what changed since the previous check (new, expired, updated), and a link or identifier for each alert so anyone can pull the full text. Keep the previous hour's JSON beside the page; the "what changed" section is a diff of the two files, which is ordinary local code and never a paid call.

Decide up front what counts as worth a notification. Eight heat advisories on a July afternoon are expected; a new flood warning is not. Tell the agent which event types matter — the free alert types list gives it the exact names to filter on — and have it write a one-line summary only when something in that set appears or expires. Because the weather services are free, the watch can run every hour on an empty wallet; only if you later add a priced service, such as a market quote for a company in the affected area, does the wallet come into it, and that call is listed with its price before it runs.

こう頼む

Watch TX and OK every hour. Rebuild status.html, and if a Flood Warning or Tornado Warning appears, write a one-line note to alerts.log with the counties.

Two free calls an hour, one page rebuilt locally; nothing in this loop touches the wallet.

Set it up once

npm install --global @actionway/cli@latest
actionway init
mkdir -p "$HOME/.codex/skills"
cp -R "$HOME/.actionway/skill/actionway" "$HOME/.codex/skills/actionway"
init shows a short code and a verification URL — approve it in any browser — then stages the Actionway Skill at ~/.actionway/skill/actionway. The last two lines copy it to ~/.codex/skills/actionway, where Codex loads Skills.

You need Node.js 20 or newer and an Actionway account; after sign-in the agent reports your wallet balance. The weather services never touch it, so a watch like this one runs on an empty wallet. The get started page lists every route per client, including the Codex plugin.

よくある質問

Can an AI agent monitor weather alerts for free?Yes. The weather alert services are free in the Actionway catalog: active alerts for a U.S. state, territory, or marine area, one alert's full text, and the list of event types. Only priced services touch the wallet.

Which areas can GPT-6 Astra watch?Any area the U.S. national alert feed covers, addressed by an area code such as TX. One alert's full text is a second free call by its identifier.

How does the agent know what changed since the last check?It keeps the previous JSON response next to the status page and diffs the two — ordinary local code work, so an hourly watch costs nothing beyond the free calls.

あなたの AGENT で試す

一度の接続でカタログ全体が使えます。

Actionway を接続すると、Agent が適切なサービスを見つけ、実行前に米ドルで見積もり、ウォレットから都度精算します。

Agent を接続する