Metadata-Version: 2.4
Name: flightdeck-verify
Version: 0.1.1
Summary: Standalone offline verifier for FlightDeck evidence packs — MIT-licensed, stdlib-only. Check what an AI agent fleet claims it did, without trusting anyone's dashboard.
Project-URL: Homepage, https://ai-flightdeck.com
Author: NorthGate Strategic LLC
License: MIT License
        
        Copyright (c) 2026 Northgate Strategic LLC
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: agents,ai,audit,evidence,governance,tamper-evident,verification
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# flightdeck-verify

Standalone **offline** verifier for FlightDeck/Conductor evidence packs.
MIT-licensed, Python-stdlib-only — read it, run it, or reimplement it.
No account, no network, no trust in NorthGate required.

```
pip install flightdeck-verify
flightdeck-verify release-pack.tar.gz
flightdeck-verify release-pack.tar.gz --json
```

Exit codes (CI-friendly): `0` verified · `1` verification failed · `2` usage/IO error.

## What it proves — and what it doesn't

This tool proves exactly what the pack format proves:

- **Archive integrity** — every file in the pack matches its `SHA256SUMS` entry.
- **Record-chain linkage** — the `audit-chain/chain.jsonl` records link
  hash-to-hash with no gaps, from genesis to head, per tenant.

It does **not** prove who performed the work (unsigned packs say so in their
own output), and it cannot prove anything about records that were never
added. The output states what was checked; it never overstates.

## Why this is MIT-licensed

The point of an evidence pack is that your auditor doesn't have to trust
the vendor who produced it. A verifier you can't read is a dashboard with
extra steps — so this one is open, dependency-free, and small enough to
audit in one sitting.

FlightDeck itself — the rail (`pip install flightdeck-connect`), the
governor console, and the platform — is commercial software by
[NorthGate Strategic LLC](https://ai-flightdeck.com). This verifier is the
part that belongs to everyone.
