Skillquality 0.45

stably-verify

Verify that an application works correctly using `stably verify`. Use when an AI agent has made code changes and needs to validate the feature works in a real browser. The command describes expected behavior in plain English and reports a PASS/FAIL/INCONCLUSIVE verdict — no test

Price
free
Protocol
skill
Verified
no

What it does

Verify App Behavior with stably verify

stably verify checks whether your application works correctly by describing expected behavior in plain English. It launches an AI agent that navigates your app in a real browser, interacts with it, takes screenshots, and reports a structured PASS / FAIL / INCONCLUSIVE verdict. No test files are generated.

Pre-flight

Always run stably --version first. If not found, install with npm install -g stably or use npx stably. Requires Node.js 20+ and a Stably account.

stably --version
echo "STABLY_API_KEY: ${STABLY_API_KEY:+set}"
echo "STABLY_PROJECT_ID: ${STABLY_PROJECT_ID:+set}"

Usage

# Verify a feature works
stably verify "the login form accepts email and password and redirects to /dashboard"

# With a specific starting URL
stably verify "the pricing page shows 3 tiers" --url http://localhost:3000/pricing

# Set a budget cap (default: $5)
stably verify "checkout flow completes successfully" --max-budget 10

# Non-interactive mode (for CI or background agents)
stably verify "checkout flow completes" --no-interactive

# Use cloud browser instead of local
stably verify "login works" --browser cloud

Options

OptionDescription
-u, --url <url>Starting URL (auto-detected from localhost if omitted)
--max-budget <dollars>Budget cap in USD (default: 5)
--no-interactiveSkip preflight prompts
--browser <type>Browser type: local or cloud (default: local). Also settable via STABLY_CLOUD_BROWSER=1

Exit Codes

CodeVerdictMeaning
0PASSAll requirements verified
1FAILOne or more requirements not met
2INCONCLUSIVECannot determine (app unreachable, auth wall, etc.)

Iteration Loop

After making code changes, use stably verify to check the feature:

  1. Run verifystably verify "description of expected behavior"
  2. If FAIL — Read the failure reason and evidence from the output
  3. Fix code — Modify your application code based on the failure
  4. Re-verify — Run the same stably verify command again
  5. Repeat until PASS

stably verify does not create or modify any files. It only observes and reports. Fix the code yourself based on its findings.

Composing in Scripts

# Gate on verification
stably verify "login works" && echo "Feature verified!"

# Handle all three outcomes
stably verify "checkout completes" ; code=$?
if [ $code -eq 0 ]; then echo "PASS";
elif [ $code -eq 1 ]; then echo "FAIL";
else echo "INCONCLUSIVE"; fi

Long-Running Commands (AI Agents)

stably verify is AI-powered and can take several minutes depending on complexity.

AgentConfiguration
Claude Codetimeout: 600000 on Bash tool
Cursorblock_until_ms: 900000

Links

Docs · Verify Guide · CLI Quickstart · Dashboard

Capabilities

skillsource-stablyaiskill-stably-verifytopic-agent-skills

Install

Installnpx skills add stablyai/agent-skills
Transportskills-sh
Protocolskill

Quality

0.45/ 1.00

deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (3,149 chars)

Provenance

Indexed fromgithub
Enriched2026-05-18 19:15:07Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18

Agent access