VerifySignal
AI writes the validation. A deterministic runtime proves it.
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
- Documentation, Installation, Golden Path, and Browser-first understanding
- Contributing, Governance, Roadmap
- Issues, Discussions
- Security: please use private reporting (SECURITY.md)
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
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file verifysignal_spec-0.23.0.tar.gz.
File metadata
- Download URL: verifysignal_spec-0.23.0.tar.gz
- Upload date:
- Size: 282.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52322ef1b3c3df06f70f73aa8f868fbfc9bf496a14c10076b41f7fd5f23eb84e
|
|
| MD5 |
9366c96dc61eedd7a8e167f9a39a5d49
|
|
| BLAKE2b-256 |
1081853ec2e8aa66050e51470e99d5690b59146c0432d771999e3fb70de43209
|
Provenance
The following attestation bundles were made for verifysignal_spec-0.23.0.tar.gz:
Publisher:
release.yml on RigelRise/verifysignal-spec
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
verifysignal_spec-0.23.0.tar.gz -
Subject digest:
52322ef1b3c3df06f70f73aa8f868fbfc9bf496a14c10076b41f7fd5f23eb84e - Sigstore transparency entry: 2340670717
- Sigstore integration time:
-
Permalink:
RigelRise/verifysignal-spec@0904115fbf868968e884e0d8d88ca895735d7bef -
Branch / Tag:
refs/tags/v0.23.0 - Owner: https://github.com/RigelRise
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0904115fbf868968e884e0d8d88ca895735d7bef -
Trigger Event:
push
-
Statement type:
File details
Details for the file verifysignal_spec-0.23.0-py3-none-any.whl.
File metadata
- Download URL: verifysignal_spec-0.23.0-py3-none-any.whl
- Upload date:
- Size: 341.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af27ac2e87ee408f754b0c09e8c39721730995dade28aad6abd7df4f0def4e98
|
|
| MD5 |
8ff1c19702bf17462aa132adfb1cb2b6
|
|
| BLAKE2b-256 |
6609fdfa9c00eddb56aa0779ed1c9773ffe1fb67b311991c9a7ff0cc663d7fcf
|
Provenance
The following attestation bundles were made for verifysignal_spec-0.23.0-py3-none-any.whl:
Publisher:
release.yml on RigelRise/verifysignal-spec
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
verifysignal_spec-0.23.0-py3-none-any.whl -
Subject digest:
af27ac2e87ee408f754b0c09e8c39721730995dade28aad6abd7df4f0def4e98 - Sigstore transparency entry: 2340670721
- Sigstore integration time:
-
Permalink:
RigelRise/verifysignal-spec@0904115fbf868968e884e0d8d88ca895735d7bef -
Branch / Tag:
refs/tags/v0.23.0 - Owner: https://github.com/RigelRise
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0904115fbf868968e884e0d8d88ca895735d7bef -
Trigger Event:
push
-
Statement type: