Metadata-Version: 2.4
Name: augur-schema
Version: 0.3.1
Summary: Augur schema package — canonical JSON Schemas for CUA debugger records.
Project-URL: Homepage, https://github.com/mercurialsolo/augur
Project-URL: Issues, https://github.com/mercurialsolo/augur/issues
Project-URL: Changelog, https://github.com/mercurialsolo/augur/blob/main/packages/schema/CHANGELOG.md
Author-email: Augur Authors <barada@gmail.com>
License: Apache-2.0
Keywords: computer-use-agent,cua,debugger,json-schema,observability,schema
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: jsonschema>=4.22
Requires-Dist: referencing>=0.35
Description-Content-Type: text/markdown

# augur-schema

Canonical JSON Schemas for the Augur CUA debugger.

`json/` is the source of truth. Python and TypeScript types are hand-written mirrors
in `src/augur_schema/` and `ts/` — kept in sync by `tests/test_schema_roundtrip.py`.

Records:

- `manifest.schema.json` — bundle envelope
- `debug_session.schema.json` — top-level run/session record
- `step_trace.schema.json` — one step
- `observation.schema.json` — screenshot + viewport metadata
- `decision_event.schema.json` — ordered planner/verifier/recovery decisions
- `replay_fixture.schema.json` — replay seed for a step
- `diagnostic_finding.schema.json` — output of the diagnostic rules engine

Enums (separate files so they can be `$ref`d):

- `coordinate_space.schema.json`
- `provenance.schema.json`
- `capture_mode.schema.json`
- `failure_class.schema.json`

Schema version: see [`docs/versioning.md`](../../docs/versioning.md). Current: `0.1`.
