cloud-factory-demo: Skill for Claude Code

.agents/skills/verify-behavior/SKILL.md

verify-behavior is a skill for Claude Code, Codex from warpdotdev-demos/cloud-factory-demo. It costs 69 tokens per session (1,942 once invoked), scanned A, original, MIT.

A skill for checking whether a product feature or bug behaves as expected by using a computer to operate the visible interface and collect evidence.

In plain words
What is it for?
Use it to reproduce a user-interface bug or verify a completed feature through the actual product interface, with a video or other run evidence when required.
Why use it?
It provides a repeatable way to reproduce reported problems or confirm that an implementation works, instead of relying only on code inspection.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; installed under .agents/ (shared by several agents).

This is warpdotdev-demos/cloud-factory-demo's own configuration. It tells Claude Code and Codex how to work on cloud-factory-demo itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything cloud-factory-demo configures →

Reuse

Borrowing it

Nothing to install: this file belongs to warpdotdev-demos/cloud-factory-demo. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/warpdotdev-demos/cloud-factory-demo/main/.agents/skills/verify-behavior/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/warpdotdev-demos/cloud-factory-demo

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for verify-behavior

README.md
[![agentmods](https://agentmods.dev/badge/skills/warpdotdev-demos/cloud-factory-demo/verify-behavior.svg)](https://agentmods.dev/skills/warpdotdev-demos/cloud-factory-demo/verify-behavior)
Your own site
<a href="https://agentmods.dev/skills/warpdotdev-demos/cloud-factory-demo/verify-behavior"><img src="https://agentmods.dev/badge/skills/warpdotdev-demos/cloud-factory-demo/verify-behavior.svg" alt="Measured on agentmods" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,942 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00069 $0.01942
Opus 5 $0.00034 $0.00971
Sonnet 5 $0.00014 $0.00388
Haiku 4.5 $0.00007 $0.00194

Measured 8d ago against content hash f37aa2cd7628, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

verify-behavior 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 8d 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.

.agents/skills/verify-behavior/SKILL.md · 135 lines

How it starts

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

Verify behavior

Prove or disprove visible product behavior for bugs and greenfield features. Parents (triage, implementation, review) invoke this instead of driving the UI themselves.

Modes

  • reproduce — does the reported bug still happen on baseline? (usually default branch; triage)
  • verify — does the implemented change match expected behavior? (features and fixes; implementation/review)

Infer if unnamed: issue-only → reproduce; implementation/PR branch → verify.

Platform contract (do not invent alternatives)

Oz computer use is a dedicated capability, not a generic remote child and not a set of parent-callable capture APIs.

Layer What happens
Outer Oz cloud run Must already have computer use enabled (computer_use: true / --computer-use / computer_use_enabled: true). Factory implement workflows set this on the parent run.
Parent / orchestrator Delegates GUI work through the platform computer_use capability with a concrete task and expected evidence.
Permission request_computer_use is emitted automatically when the computer-use subagent starts. Parents must not call it, simulate it, or document fake tool calls for it.
Computer-use subagent Native prompt already covers GUI actions, proactive start_recording / stop_recording, report_screenshot, and forbids ffmpeg / screen-capture CLIs. Do not re-teach capture plumbing or shell out to recorders.

Never:

  • Call or invent direct request_computer_use, start_recording, or stop_recording from the parent LLM
  • Launch generic run_agents remote children as a substitute for computer_use
  • Build custom recorder pipelines (ffmpeg, x11grab, avfoundation, Playwright video, etc.)
  • Claim gh ... --attach can upload Oz videos to GitHub (it cannot reliably attach native Oz recordings)

When to use / skip

Use for UI, browser, desktop, mobile, or other interactive behavior where visual proof helps.

Read the full file on GitHub · 135 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. 8d ago First seen · 135 lines · 69 tokens per session scan A f37aa2cd7628

Subscribe to this mod's changes

verify-behavior is a skill published in the GitHub repository warpdotdev-demos/cloud-factory-demo (122 stars, last pushed 26d ago), licensed MIT. It adds 69 tokens to every session and 1,942 once invoked, about $0.0003 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

browse

Drive a real browser through Aside: open a page, read it, click through a flow, take screenshots, check console errors. (gstack).

garrytan/gstack · 32 tokens

playwright-cli

A command-line tool for controlling Chromium, Firefox, and WebKit browsers, including navigation, page interaction, screenshots, PDFs, and recorded actions.

UnicomAI/wanwu · 76 tokens

webapp-testing

Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.

anthropics/skills · 35 tokens

browser-qa

A browser-based quality check for deployed web pages and user flows. It uses browser automation to test rendering, navigation, forms, interactions, responsive behaviour, and accessibility-related issues.

hashgraph-online/awesome-codex-plugins · 58 tokens

test-electron-app

Drive the real running PostHog Electron app (live tRPC, workspace-server, real data) over CDP with agent-browser. Connect to the running app on port 9222, test desktop changes against a local Django stack, snapshot the accessibility tree, inspect network requests, and screenshot only when explicitly asked. Use when…

PostHog/posthog-foss · 112 tokens

smoke-test

Run smoke tests against a deployed or local app based on your git diff. Each test uses Skyvern browser tools (navigate, act, validate, screenshot) with Chrome DevTools MCP as fallback. Posts screenshot evidence as PR comments.

Skyvern-AI/skyvern · 50 tokens