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

You need Python 3.11+ and Node 24+. Install the CLI:

uv tool install verifysignal-spec        # or: pipx install verifysignal-spec

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.22.0.tar.gz (282.3 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.22.0-py3-none-any.whl (341.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: verifysignal_spec-0.22.0.tar.gz
  • Upload date:
  • Size: 282.3 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.22.0.tar.gz
Algorithm Hash digest
SHA256 02382a4f6c00a2b98f329e0daac4696b6cc64988e28f22395522467ef0a6b808
MD5 d30f56f7dbca808c9f597966f9d0b82a
BLAKE2b-256 2128e9430ee1cb6f3422d4c77871dd47d54c67ea01282ad126d65068ba9bd933

See more details on using hashes here.

Provenance

The following attestation bundles were made for verifysignal_spec-0.22.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.22.0-py3-none-any.whl.

File metadata

File hashes

Hashes for verifysignal_spec-0.22.0-py3-none-any.whl
Algorithm Hash digest
SHA256 90ad6936d795f3d66010be85a332b2a35586875373dc87b2ba592558fef29225
MD5 17a0d336f0aed94dd01272822fe0bd6b
BLAKE2b-256 2c7e26002cc11da90d4b8f2c63061273b54de31190b1983d1722a1ef14310340

See more details on using hashes here.

Provenance

The following attestation bundles were made for verifysignal_spec-0.22.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