visual-smoke

A command that prints the active project backlog as a short roadmap, with one line per task grouped into larger work areas called epics.

In plain words
What is it for?
For reviewing active tasks, seeing how they are grouped, and checking totals in an initialized SoloFlow project.
Why use it?
It gives a quick overview of planned work without changing the backlog or starting other agents.

Command

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/kesteva/soloflow/visual-smoke
Clone the repo
git clone --depth 1 https://github.com/kesteva/soloflow
Per session 21 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,281 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00021 $0.02281
Opus 5 $0.00010 $0.01141
Sonnet 5 $0.00004 $0.00456
Haiku 4.5 $0.00002 $0.00228

Measured 3d ago against content hash 28efc942846a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

visual-smoke scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

> Maestro not available. Install the CLI with `curl -Ls https://get.maestro.mobile.dev | bash`, or register the MCP server with `claude mcp add --scope user maestro maestro mcp`.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

> Maestro not available. Install the CLI with `curl -Ls https://get.maestro.mobile.dev | bash`, or register the MCP server with `claude mcp add --scope user maestro maestro mcp`.
commands/visual-smoke.md · 217 lines

How it starts

The opening of the file, as written. The whole thing — 217 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/soloflow:visual-smoke

Diagnostic command that exercises the visual-verification stack end-to-end to confirm both Maestro (mobile) and Playwright (web) are wired up correctly. Unlike /soloflow:verify, this is not about checking a specific feature — it answers the prior question: is my visual-verification environment actually working before I trust it for real verification runs?

The command is fully automated, requires no arguments, and does not depend on .soloflow/ being initialized. It can run on a fresh machine to diagnose setup issues.

Per-platform result is one of:

  • PASS — every probe succeeded; visual verification works on this platform.
  • SKIP — platform tooling intentionally absent (e.g., no Playwright MCP registered, no simulator booted). Reported with the exact remediation.
  • FAIL — tooling is present but a probe errored mid-run. Reported with the failing step and error text.

Always run BOTH platforms (or attempt to). Never short-circuit one because the other passed/failed.


Step 1: Maestro path probe

Pick a single mobile path up front. Mixing MCP and CLI in one run causes port-7001 contention (see skills/visual-verify/SKILL.md for the rule).

  1. MCP probe. Call mcp__maestro__list_devices. If it returns a result without erroring, set MAESTRO_PATH = "mcp" and capture the device list.
  2. CLI probe (only if MCP failed). Run which maestro via Bash. If a path is returned, set MAESTRO_PATH = "cli". Otherwise set MAESTRO_PATH = "none".

If MAESTRO_PATH = "none": emit mobile_result = SKIP with the message:

Maestro not available. Install the CLI with curl -Ls https://get.maestro.mobile.dev | bash, or register the MCP server with claude mcp add --scope user maestro maestro mcp.

Skip to Step 4 (Playwright). Do not abort the command.

Step 2: Maestro device probe

Confirm at least one simulator or emulator is booted. Run via Bash:

IOS=$(xcrun simctl list devices booted 2>/dev/null | grep -c Booted || true)
AND=$(adb devices 2>/dev/null | awk '$2=="device"' | wc -l | tr -d ' ' || true)
echo "ios_booted=$IOS android_attached=$AND"

Read the full file on GitHub · 217 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 217 lines · 21 tokens per session scan C 28efc942846a

Subscribe to this mod's changes

visual-smoke is a command published in the GitHub repository kesteva/soloflow (40 stars, last pushed 3mo ago), licensed MIT. It adds 21 tokens to every session and 2,281 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.