Skip to main content

WorldState Check

WorldState Check

CI PyPI Python License

Verify that an autonomous action changed the world as intended.

WorldState Check evaluates explicit postconditions against independent observations after an AI agent, automation, robot, or autonomous system acts. It distinguishes a successful command from a verified outcome, uses deterministic verdict logic, and produces a structured evidence report without requiring an LLM judge.

At a glance

INTENT
  |
ACTION
  |
ACKNOWLEDGEMENT
  |
OBSERVED WORLD STATE
  |
POSTCONDITIONS
  |
VERIFIED / NOT_VERIFIED / UNCERTAIN

A tool call returning success is not the same as the requested state being achieved.

Agent: "Safe mode entered."

$ worldstate-check demo

[PASS   ] command-ack
[PASS   ] payload-power
[FAIL   ] attitude-error
[PASS   ] battery-soc

VERDICT: NOT_VERIFIED
Required checks: 3/4 passed

The command was acknowledged and the payload was powered down, but the synthetic attitude error remained outside the required bound.

Why this is useful

The same verification pattern applies across software and physical autonomy:

  • an agent says a deployment succeeded, but the health endpoint still fails;
  • a maintenance workflow closes a job, but the measured equipment state remains outside limits;
  • a spacecraft accepts a safe-mode command, but telemetry shows the required attitude was not reached;
  • an automation reports completion, but the expected file, process, API state, or database-facing evidence is absent.

WorldState Check makes the success condition explicit and evaluates observable state instead of trusting the actor's completion claim.

Check types

Type What it verifies
file existence, text assertions, SHA-256
json structured state through deterministic field comparisons
metric JSON or CSV telemetry, thresholds, ranges, freshness
http status, response text, JSON response state; network access is opt-in
tcp endpoint reachability; network access is opt-in
command explicit verification commands, opt-in only

Required checks produce one of three verdicts:

  • VERIFIED when every required postcondition passes;
  • NOT_VERIFIED when at least one required postcondition fails;
  • UNCERTAIN when no required check fails but reliable evidence is unavailable for one or more required checks.

Quick start

For a standalone command-line installation, use pipx:

pipx install worldstate-check

Or install the package with pip:

python3 -m pip install worldstate-check

Then run:

worldstate-check --version
worldstate-check demo

Install from source

If you prefer to install directly from the repository:

git clone https://github.com/sylvesterkaczmarek/worldstate-check.git
cd worldstate-check
python3 -m pip install .
worldstate-check demo

Run a passing synthetic scenario:

worldstate-check demo --scenario verified

Create a starter specification:

worldstate-check init worldstate.yaml

Validate it without touching any evidence source:

worldstate-check validate worldstate.yaml

Then verify the observed state:

worldstate-check verify worldstate.yaml

Specifications that intentionally contact HTTP or TCP endpoints must opt in:

worldstate-check verify deployment.yaml --allow-network

Write a machine-readable evidence report:

worldstate-check verify worldstate.yaml --report evidence.json
worldstate-check verify-report evidence.json

Verification specification

version: 1
task: spacecraft-safe-mode

checks:
  - id: payload-off
    type: json
    path: telemetry.json
    field: payload.power
    operator: eq
    value: "off"

  - id: attitude-error
    type: metric
    source:
      type: json
      path: telemetry.json
      field: attitude.error_deg
    operator: lte
    value: 3.0

  - id: battery-reserve
    type: metric
    source:
      type: json
      path: telemetry.json
      field: battery.soc
    operator: gte
    value: 25.0

See docs/specification.md for all supported checks.

Telemetry freshness

A value can be numerically valid and still be unsafe evidence if it is stale. Metric checks can require a recent timestamp:

- id: temperature
  type: metric
  source:
    type: json
    path: telemetry.json
    field: temperature_c
    timestamp_field: observed_at
    max_age_seconds: 5
  operator: lte
  value: 75

Stale required telemetry causes NOT_VERIFIED because the available observation does not satisfy the declared freshness postcondition.

Waiting for eventual state

Some effects are asynchronous. --wait re-evaluates the postconditions until they pass or the timeout expires:

worldstate-check verify deployment.yaml --wait 30

The report records the number of attempts. Keep verification checks idempotent when using retries.

Safety boundaries

WorldState Check treats the verification specification as potentially powerful input.

  • evidence paths are confined to the verification root by default;
  • paths outside that root require --allow-outside-root;
  • command checks require --allow-command;
  • HTTP and TCP checks require --allow-network;
  • commands use an argument vector with shell=False;
  • command checks receive only a minimal environment and do not copy raw argv or output into evidence reports;
  • HTTP evidence redacts URL credentials, query strings, and fragments;
  • specifications and evidence reads have explicit size limits.

See docs/security.md.

Example physical-system checks

The repository contains two runnable file-backed examples:

worldstate-check verify examples/field-maintenance.yaml
worldstate-check verify examples/spacecraft-safe-mode.yaml

The first is expected to verify. The second is intentionally expected to return NOT_VERIFIED because the attitude-error postcondition fails.

Evidence report

JSON reports include:

  • task and final verdict;
  • every expected and observed value;
  • required versus optional checks;
  • timing and attempt count;
  • source metadata such as evidence path, endpoint, or telemetry age;
  • a SHA-256 digest of the report payload.

worldstate-check verify-report recomputes that digest and reports whether the saved payload still matches it. The digest is not a digital signature and does not establish the identity or trustworthiness of the evidence source.

Assurance model

WorldState Check verifies declared postconditions against observations. It does not prove that sensors, endpoints, files, or other evidence sources are trustworthy or correctly calibrated. It also does not determine whether the original intent was safe.

See docs/assurance-model.md for the exact scope.

Repository layout

worldstate-check/
├── .github/workflows/
│   ├── ci.yml
│   └── release.yml
├── assets/social/
├── docs/
├── examples/
├── src/worldstate_check/
│   ├── checks/
│   ├── cli.py
│   ├── engine.py
│   ├── loader.py
│   ├── models.py
│   └── report.py
├── tests/
├── .release-version
├── CITATION.cff
├── LICENSE
├── Makefile
├── pyproject.toml
└── README.md

Development

python -m pip install -e .
python -m pip install pytest
pytest

The core verdict path is deterministic and does not call an LLM.

Cite this repository

If you use or adapt this repository, please cite:

Kaczmarek, S. (2026). WorldState Check. GitHub. https://github.com/sylvesterkaczmarek/worldstate-check

@software{Kaczmarek_2026_WorldState_Check,
  author = {Sylvester Kaczmarek},
  title  = {{WorldState Check}},
  year   = {2026},
  url    = {https://github.com/sylvesterkaczmarek/worldstate-check}
}

License

MIT. See LICENSE.

© Sylvester Kaczmarek · https://www.sylvesterkaczmarek.com

Download files

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

Source Distribution

worldstate_check-0.1.2.tar.gz (28.5 kB view details)

Uploaded Source

Built Distribution

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

worldstate_check-0.1.2-py3-none-any.whl (26.7 kB view details)

Uploaded Python 3

File details

Details for the file worldstate_check-0.1.2.tar.gz.

File metadata

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

File hashes

Hashes for worldstate_check-0.1.2.tar.gz
Algorithm Hash digest
SHA256 a8ae71c41b655371f9856db7fd306d7752f74b36b5fe8d18235a39cfb1819ef0
MD5 3445c5708b004b21a94bcc23f6dae079
BLAKE2b-256 54e24fc51ac8a72148a17227275f05697acd888ea7472bfd2717bed8d1f64263

See more details on using hashes here.

Provenance

The following attestation bundles were made for worldstate_check-0.1.2.tar.gz:

Publisher: release.yml on sylvesterkaczmarek/worldstate-check

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

File details

Details for the file worldstate_check-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for worldstate_check-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c490ff86a279b10e8947e9af0983df5f9919dcb8c885c028f92af8a90dcf1174
MD5 16157fff2521c36804ede3536eb41477
BLAKE2b-256 a53440fb54a1613d876c519d3552347dea4b1066e7dfef6ab60082d9f385ff14

See more details on using hashes here.

Provenance

The following attestation bundles were made for worldstate_check-0.1.2-py3-none-any.whl:

Publisher: release.yml on sylvesterkaczmarek/worldstate-check

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