verify

A verification workflow for building, launching, controlling, and taking screenshots of the OpenNOW desktop settings interface on Windows. Electron is the desktop software framework used to run that interface.

In plain words
What is it for?
Use it to build OpenNOW, launch its Electron window, inspect and interact with the settings screen, test keyboard input, and capture screenshots.
Why use it?
It provides a repeatable way to check the built interface and inspect how it behaves in a running desktop application.

Skill for Claude CodeCodex

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 skills/opencloudgaming/opennow/verify
Any agent
npx skills add OpenCloudGaming/OpenNOW --skill verify
Clone the repo
git clone --depth 1 https://github.com/OpenCloudGaming/OpenNOW

Made for: Claude Code, Codex.

Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 701 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00017 $0.00701
Opus 5 $0.00009 $0.00351
Sonnet 5 $0.00003 $0.00140
Haiku 4.5 $0.00002 $0.00070

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

Security

Grade A, and why

verify scanned grade A with 0 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 2d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

opennow-stable/.claude/skills/verify/SKILL.md · 51 lines

How it starts

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

Verify OpenNOW desktop UI

Build and launch

  1. Build the current tree from the repository root:
    npm --prefix opennow-stable run build
    
  2. Launch Electron with Chrome DevTools Protocol enabled. Run this as a background command so Electron remains available:
    $env:OPENNOW_REMOTE_DEBUG = '1'; & "opennow-stable\node_modules\electron\dist\electron.exe" "opennow-stable"
    
  3. Wait for http://127.0.0.1:9222/json/list to expose a page titled OpenNOW. The renderer URL should end in opennow-stable/dist/index.html.

Drive the renderer

Use CDP against the target's webSocketDebuggerUrl. Node in this environment provides the global WebSocket API. The working driver supports:

  • Runtime.evaluate with awaitPromise: true, returnByValue: true, and userGesture: true for DOM inspection and clicks.
  • Input.dispatchKeyEvent (keyDown, then keyUp) for real keyboard behavior. This is required for native range-input arrow-key changes; synthetic DOM keyboard events do not invoke browser default actions.
  • Input.insertText for typing into the focused control.
  • Page.captureScreenshot with { format: "png", fromSurface: true, captureBeyondViewport: false }.

The target can be found with:

const targets = await fetch("http://127.0.0.1:9222/json/list").then((response) => response.json());
const target = targets.find((item) => item.type === "page" && item.title === "OpenNOW") ?? targets[0];

Send CDP requests as incrementing { id, method, params } JSON messages and resolve responses by matching id.

Settings flows worth exercising

  • Click the navbar Settings button; the modal root is .settings-modal.
  • Section navigation buttons are .settings-nav-item.
  • Shared dropdowns use [role="combobox"], aria-controls, and aria-activedescendant.
  • Region controls use #settings-stream-region-trigger, .region-dropdown, and .region-dropdown-search-input.
  • Numeric mouse controls are #settings-input-mouse-sensitivity-number and #settings-input-mouse-acceleration-number.
  • Resize through window.resizeTo(1024, 680) and window.resizeTo(1400, 900); verify outerWidth/outerHeight afterward.
  • Switch Interface theme through #appTheme, capture light and dark screenshots, then restore the original theme.

Read the full file on GitHub · 51 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. 2d ago First seen · 51 lines · 17 tokens per session scan A ca633e3efa02

Subscribe to this mod's changes

verify is a skill published in the GitHub repository OpenCloudGaming/OpenNOW (2,400 stars, last pushed today), licensed MIT. It adds 17 tokens to every session and 701 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

nemoclaw-maintainer-e2e

Dispatches and reports trusted GitHub Actions E2E runs. Use for focused, full, staging Launchable, manual PR, and release-decision requests.

NVIDIA/NemoClaw · 41 tokens

nemoclaw-maintainer-fix-e2e-failures

Fixes failures from automatic NemoClaw E2E runs on main through continuous maintainer coordination. Groups failures by root cause, assigns one PR to each cause, reviews peer changes, satisfies GitHub merge requirements, merges eligible PRs when authorized, and monitors new results. Use for continuous main E2E…

NVIDIA/NemoClaw · 106 tokens

nemoclaw-hermes-skill-e2e

Verifies Hermes skill discovery and fresh-session execution.

NVIDIA/NemoClaw · 20 tokens

agent-host-e2e-tests

Use when writing, recording, updating, or troubleshooting the agent host end-to-end tests under src/vs/platform/agentHost/test/node/e2e (black-box tests that drive the whole agent host over the AHP protocol, using a CapiReplayProxy record/replay system for Claude/Copilot/Codex). Covers adding a cross-provider test…

microsoft/vscode · 104 tokens

smoke-test

End-to-end smoke test skill for DeerFlow. Guides through: 1) Pulling latest code, 2) Docker OR Local installation and deployment (user preference, default to Local if Docker network issues), 3) Service availability verification, 4) Health check, 5) Final test report. Use when the user says "run smoke test", "smoke…

bytedance/deer-flow · 0 tokens

browse

Fast headless browser for QA testing and site dogfooding. (gstack).

garrytan/gstack · 19 tokens