Skip to main content

VerifySignal

VerifySignal

AI writes the validation. A deterministic runtime proves it.

CI status PyPI version Supported Python versions License: Apache-2.0


AI multiplied your features. Validating each one is still manual. VerifySignal turns a product flow (login, checkout, onboarding) into an automatic, repeatable validation with evidence, starting from your repository or a live product URL when source access is unavailable.

Your coding agent (Claude Code or Codex) authors the validation and grounds it against your live app. The VerifySignal runtime runs it deterministically and leaves a report you can audit. No model decides pass/fail. Same input, same verdict, every time.

This repo is the open half (Apache-2.0): the verifysignal CLI, the .verifysignal/ workspace, and the agent skills. The runtime (VerifySignal Core) is a signed download, unlocked with a free email. No account.

Quickstart

Install the CLI. The installer sets up uv if it is missing, and uv provides a managed Python 3.11+, so the only thing you need beforehand is Node 24+ for running validations.

macOS and Linux:

curl -LsSf https://verifysignal.io/install.sh | sh

Windows (PowerShell):

powershell -ExecutionPolicy Bypass -c "irm https://verifysignal.io/install.ps1 | iex"

Already have uv or pipx? uv tool install verifysignal-spec (or pipx install verifysignal-spec) does the same thing. Prefer to read the script first? See Installation.

Set up your project and check readiness:

cd your-project
verifysignal init --here --integration claude   # or: codex
verifysignal check

Then run the whole flow from your agent, in one line:

/verifysignal "Validate that a user can sign in against https://staging.example.com"

The agent drafts the use case from your source or synthesized browser-first product understanding, asks you to confirm the test target, grounds its selectors against that app, validates, runs, and repairs. It stops only for real unknowns, missing credentials, or a write it should not make on its own. Credentials can come from the current environment or from an explicit, owner-only test environment file that VerifySignal prepares and Git-ignores.

No source access?

To begin without source access, initialize an empty local engagement directory and provide the live target conversationally or with --url:

/verifysignal-understand --url https://staging.example.com

The agent opens a visible browser, lets you authenticate directly, maps a bounded read-safe scope, and persists only synthesized product signals and candidate journeys. It does not persist DOM snapshots, screenshots, cookies, storage state, form values, or URL query values. See Browser-first understanding.

Install from source
uv tool install verifysignal-spec --from git+https://github.com/RigelRise/verifysignal-spec.git

What you get

  • AI authors, you approve. The agent drafts and repairs. Nothing runs until it is validated.
  • Deterministic execution. A fixed action set, no inference. Green means the same thing every time.
  • Evidence, not a checkmark. Every run leaves a report, screenshots, and a network log you can review and share.
  • Write safety. Flows that mutate data declare a side-effect policy, are watched at run time, and gate their own reruns.

How it works

  repo / engagement   verifysignal CLI          VerifySignal Core         evidence
  .verifysignal/  ->  open · Apache-2.0      ->  signed runtime       ->  report.md
  use cases           authoring · gates          deterministic run        report.json
  skills · state      workflow · repair          no model at runtime      screenshots
                                                                           network log

The CLI owns authoring, gates, workflow state, and repair. Core owns execution. They meet at one versioned JSON contract, nothing else. Every command speaks --json, and exit codes are stable (0 ok, 2 validation, 3 core, 4 approval, 5 input).

What a run leaves behind

.verifysignal/runs/login/<run-id>/
  report.md            human-readable, gate by gate
  report.json          machine-readable (qa-report/v1)
  browser/screenshots  captured evidence
  browser/network.ndjson

report.md says what passed, what failed and why, and links each claim to its evidence. See examples/ for two full samples, including a write flow.

Open-core

Open (this repo, Apache-2.0) Managed (VerifySignal Core)
CLI, .verifysignal/ workspace, agent skills, the public contract deterministic execution, evidence capture, redaction
fork it, read it, test all of it against the bundled fake Core a signed download, free to unlock, no account

Authoring and safety are open and forkable. Execution stays signed so "green" means the same thing for everyone. See GOVERNANCE.md.

Safety

  • Secrets stay out of managed artifacts. Credentials resolve at run time from the current environment or an explicit owner-only, Git-ignored test file. Values are never copied into use cases, reports, or command output.
  • Writes are declared and watched. A write flow states what it may touch, is checked at run time, and needs approval to rerun after a commit.
  • The runtime wins. If the agent and the run disagree, the run result stands. Agents stop and ask instead of inventing selectors.

What it is not

  • Not a replacement for your unit tests or CI. It makes manual product validation repeatable.
  • Not an agent that decides pass/fail. Execution is a fixed action set; the agent only authors and repairs.
  • Not a service. Everything it manages lives in your repository or local engagement directory under .verifysignal/.

CLI

Command Purpose
verifysignal init --here --integration claude|codex Create .verifysignal/ and install agent skills
verifysignal check Workspace, runtime, and entitlement readiness
verifysignal core update Remove local Core selection and install the latest verified managed runtime
verifysignal author <alias> "<description>" Register a use case
verifysignal credentials prepare <alias> --env-file <file> Safely prepare a Git-ignored, owner-only file for declared test credentials
verifysignal validate <alias> [--env-file <file>] Run authoring gates and optional explicit credential readiness
verifysignal run <alias> [--env-file <file>] Execute and capture evidence
verifysignal repair <alias> Classify findings and propose repairs
verifysignal discover --url <url> --skill <path> Ground selectors against the live DOM
verifysignal workflow ... Staged workflow engine

Docs and community

Development

python -m pip install -e ".[dev]"
python -m pytest

Needs Python 3.11+, and a browser for the cross-repo dogfood. To run against the toolchain CI declares instead of whatever your machine has:

scripts/verify-docker.sh

That mounts the sibling checkouts too, so the cross-repo tests actually run. Without them they skip, which reads like a pass. It takes any pytest arguments: scripts/verify-docker.sh tests/unit -q.

The cross-repo gate (product-truth.yml in Core) additionally pins every repository path. A suite that behaves differently under a pin than under a scan is environment-dependent, so reproduce that configuration before relying on a green run — the paths are container-side, where /w is the mounted parent directory:

VERIFYSIGNAL_CORE_DIR=/w/<core-dirname> \
VERIFYSIGNAL_SPEC_DIR=/w/<spec-dirname> \
VERIFYSIGNAL_BACKEND_DIR=/w/<backend-dirname> scripts/verify-docker.sh

The suite runs against a full fake Core, so you can build and test everything without the runtime.

License

Apache-2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

verifysignal_spec-0.24.0.tar.gz (289.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

verifysignal_spec-0.24.0-py3-none-any.whl (350.5 kB view details)

Uploaded Python 3

File details

Details for the file verifysignal_spec-0.24.0.tar.gz.

File metadata

  • Download URL: verifysignal_spec-0.24.0.tar.gz
  • Upload date:
  • Size: 289.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for verifysignal_spec-0.24.0.tar.gz
Algorithm Hash digest
SHA256 50e1688e52089c9ce89a5643e7197ed10efe7604b3a93a9160daf38646bb6f1b
MD5 c2ac64a8886309117e4eec77247a45d6
BLAKE2b-256 f07e06b56ae2b7c9b43e9860953e4bcb755e999d3d7f65bb3ebea801d63b1fc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for verifysignal_spec-0.24.0.tar.gz:

Publisher: release.yml on RigelRise/verifysignal-spec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file verifysignal_spec-0.24.0-py3-none-any.whl.

File metadata

File hashes

Hashes for verifysignal_spec-0.24.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7ae378b891b5efab115e0aa516d405fca6d3c23063e71991fd83646aacd4ff1e
MD5 6c2aecdd24058060bd065042fb4fd323
BLAKE2b-256 f86bc690d7dfa8fc1ca0cca75f9f89ce35120030109574897067321da04ce4d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for verifysignal_spec-0.24.0-py3-none-any.whl:

Publisher: release.yml on RigelRise/verifysignal-spec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page