Agent-oriented monitoring workflow for rumored or upcoming Valve hardware, focused on:
Steam ControllerSteam MachineSteam Frame
It is designed to be run by a coding agent through the included SKILL.md, with scripts that:
- check
Komodo,SteamDB,SteamTracking, and Valve endpoints - save raw artifacts for each run
- compare against the previous run
- draft a human-readable status update
- track visual assets as
discovered,retrieved, orblocked
This repo is not a generic scraper.
It is a repeatable evidence-gathering workflow for answering a narrow set of questions:
- did anything change?
- is there a price leak?
- is there a release-date leak?
- does the controller look ahead of Machine/Frame?
- are there new media assets or support documents?
The normal entry point is the wrapper script:
scripts/run_watch.sh YYYY-MM-DD /path/to/run-output /path/to/SteamTrackingsteam-hardware-watch/
├── SKILL.md
├── README.md
├── .gitignore
├── agents/
├── references/
├── scripts/
└── status/
Important directories:
scripts/: the runnable checks and report buildersreferences/: source map, Komodo notes, evidence rubricstatus/: seeded baseline answer and run notes
Required:
bashorshcurljqpython3noderg
Recommended:
playwright-cli- Google Chrome or Chromium available to Playwright
- macOS
opencommand with Google Chrome installed for the Komodo background bootstrap helper
Optional:
ffmpegfor frame extraction or manual media inspection
- Clone the repo.
- Make the scripts executable if needed:
chmod +x scripts/*.sh- Ensure
SteamTrackingis available locally, for example at:
/tmp/SteamTracking-master
- Run a watch pass:
scripts/run_watch.sh 2026-04-25 ~/steam_hardware_watch /tmp/SteamTracking-masterThis creates a dated run folder under ~/steam_hardware_watch/2026-04-25.
For the least disruptive Komodo flow, use the dedicated background browser bootstrap:
scripts/bootstrap_komodo.sh
scripts/run_watch.sh 2026-04-25 ~/steam_hardware_watch /tmp/SteamTracking-master
scripts/close_komodo.shThat keeps Komodo access isolated from your normal Chrome profile and gives the agent a reusable trusted browser session when Komodo blocks normal automation.
SteamDB can require the same live-browser treatment:
scripts/bootstrap_steamdb.sh
scripts/run_watch.sh 2026-04-25 ~/steam_hardware_watch /tmp/SteamTracking-master
scripts/close_steamdb.shIf both sources are blocked, bootstrap both before the run.
Each run writes:
- raw API and HTML snapshots
- per-source summary files
- comparison report versus the previous run when available
run-summary.mdstatus-draft.md- visual asset ledgers:
discovered-visual-assets.tsvretrieved-visual-assets.tsvblocked-visual-assets.tsvmanual-asset-urls.txt
The main human-readable file is:
RUN_DIR/reports/run-summary.md
This repo is meant to be used by coding agents, not only by a human at a shell.
Install or symlink the repo into your Codex skills directory:
ln -s "$PWD" ~/.codex/skills/steam-hardware-watchThen ask Codex to use the steam-hardware-watch skill.
Point the agent at this repo and have it:
- read
SKILL.md - use
scripts/run_watch.shas the default entry point - summarize results from:
run-summary.mdstatus-draft.md- any
compare-vs-*.md
The agent should treat the scripts as implementation details and present the run summaries to the user.
Komodo is the most valuable source and the least reliable one.
What usually works:
- public
wp-jsonproduct, section, and media endpoints - still-image asset URLs
What may fail:
- video and AVIF asset downloads
- some API fetches when Cloudflare blocks automation
- optional Playwright fallback if it is pointed at a problematic local browser channel
The workflow handles this by separating:
discoveredretrievedblocked
Blocked assets are still reported with direct manual URLs.
Use this only when Komodo blocks automated media access and you need the protected files.
This is intentionally user-local and should never be committed.
Use the bundled helper to launch a dedicated Komodo Chrome instance in the background:
scripts/bootstrap_komodo.shThis:
- uses a dedicated profile under
.local/ - launches a separate Chrome instance in the background
- exposes a stable CDP endpoint
- writes
.local/komodo-env.sh
If Komodo needs any manual interaction, switch to that dedicated window when convenient. Otherwise leave it running in the background.
Then run:
scripts/run_watch.sh 2026-04-25 ~/steam_hardware_watch /tmp/SteamTracking-mastercheck_komodo.sh will automatically pick up .local/komodo-env.sh when present.
run_watch.sh will also auto-close the dedicated Komodo browser at the end unless you set:
KOMODO_KEEP_BROWSER_OPEN=1When finished:
scripts/close_komodo.shThat closes only the dedicated Komodo browser/profile, not your normal run output.
If you prefer the raw Playwright flow, you can still do it manually.
- Open a persistent Playwright browser profile:
playwright-cli open --persistent --profile ~/.steam-hardware-watch/playwright-profile https://komodostation.com/product/steam-controller_jpy/-
Solve any challenge manually in that browser.
-
Optionally save storage state:
playwright-cli state-save ~/.steam-hardware-watch/komodo-state.json- Reuse that state for later agent runs with environment variables:
PLAYWRIGHT_PROFILE_DIR=~/.steam-hardware-watch/playwright-profile
PLAYWRIGHT_STORAGE_STATE=~/.steam-hardware-watch/komodo-state.json
PLAYWRIGHT_REFERER=https://komodostation.com/product/steam-controller_jpy/
KOMODO_PLAYWRIGHT_FALLBACK=1The current helper scripts support these variables for Playwright-based fallback fetches.
Important:
- the Komodo Playwright fallback is
offby default - it only runs when
KOMODO_PLAYWRIGHT_FALLBACK=1is set - by default the Playwright helpers use Playwright's normal Chromium target, not your system Chrome
- only set
PLAYWRIGHT_BROWSER_CHANNEL=chromeif you explicitly want that behavior
If storage state is not enough for Komodo, use a live trusted browser session instead.
This is the most reliable path we found for protected Komodo media.
- Open the persistent profile and load Komodo successfully:
playwright-cli open --headed --persistent --profile ~/.steam-hardware-watch/playwright-profile https://komodostation.com/product/steam-controller_jpy/-
Leave that browser running.
-
Discover the local CDP port for that profile:
ps aux | rg 'playwright-profile|remote-debugging-port'- Set:
PLAYWRIGHT_CDP_ENDPOINT=http://127.0.0.1:PORT
KOMODO_PLAYWRIGHT_FALLBACK=1- Run the watcher again.
If PLAYWRIGHT_PROFILE_DIR is set and a matching Chrome process is already running, scripts/check_komodo.sh will try to discover the CDP port automatically and use it instead of reopening the locked profile.
The helper scripts now support that same live-session route with:
PLAYWRIGHT_CDP_ENDPOINT- automatic local env loading from
.local/komodo-env.sh
SteamDB may return a Cloudflare browser challenge to curl and to fresh automated browser contexts. The SteamDB helper uses a realistic Chrome user agent by default and rejects challenge HTML instead of saving it as a successful page. When that is not enough, use a dedicated live Chrome session.
Use the bundled helper:
scripts/bootstrap_steamdb.shThis:
- uses a dedicated profile under
.local/ - launches a separate Chrome instance in the background
- exposes a stable CDP endpoint
- writes
.local/steamdb-env.sh
If SteamDB needs manual interaction, switch to that dedicated Chrome window, complete the challenge, and leave the browser running.
Then run:
scripts/run_watch.sh 2026-04-25 ~/steam_hardware_watch /tmp/SteamTracking-mastercheck_steamdb.sh automatically picks up .local/steamdb-env.sh when present. run_watch.sh auto-closes the dedicated SteamDB browser at the end unless you set:
STEAMDB_KEEP_BROWSER_OPEN=1When finished:
scripts/close_steamdb.shManual equivalent:
STEAMDB_PLAYWRIGHT_FALLBACK=1
STEAMDB_PROFILE_DIR=~/.steam-hardware-watch/playwright-steamdb-profile
STEAMDB_CDP_ENDPOINT=http://127.0.0.1:PORT
STEAMDB_BROWSER_CHANNEL=chromeKomodocan block bothcurland fresh browser automation.SteamDBcan return a Cloudflare browser challenge to curl and fresh automated browser contexts.- We can currently discover and report blocked media URLs even when we cannot download them automatically.
- Exported storage state may still be insufficient for Cloudflare-protected Komodo assets.
- Live trusted browser attach is currently the strongest repeatable fallback for protected Komodo media.
- Live trusted browser attach is also the strongest SteamDB fallback when browser-style curl is blocked.
- The fully non-visual path is not reliable yet; after bootstrap, the working fallback is still a live dedicated browser running in the background.
Normal use:
- run
scripts/run_watch.sh - read
run-summary.md - inspect the comparison report if something changed
- update
status/current.mdandstatus/evidence.jsonlonly for material changes
Escalation:
- if Komodo blocks, continue the run
- use
manual-asset-urls.txtfor manual follow-up - if SteamDB blocks, use
scripts/bootstrap_steamdb.shand rerun when SteamDB verification is important - only use the Playwright bootstrap if protected Komodo media or SteamDB verification is important to the run