Metadata-Version: 2.4
Name: proof-engine-wiki
Version: 1.33.1
Summary: Attach verified Proof Engine proofs to LLM-wiki claims.
Author-email: Yaniv Golan <yaniv@lool.vc>
License: MIT License
        
        Copyright (c) 2026 Yaniv Golan
        
        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.
        
Project-URL: Homepage, https://proofengine.info
Project-URL: Repository, https://github.com/yaniv-golan/proof-engine
Project-URL: Documentation, https://github.com/yaniv-golan/proof-engine/blob/main/packages/proof-engine-wiki/README.md
Project-URL: Issues, https://github.com/yaniv-golan/proof-engine/issues
Project-URL: Changelog, https://github.com/yaniv-golan/proof-engine/blob/main/CHANGELOG.md
Project-URL: Source, https://github.com/yaniv-golan/proof-engine/tree/main/packages/proof-engine-wiki
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: proof-citations>=0.1
Requires-Dist: proof-engine-registry>=0.1
Requires-Dist: requests>=2.31
Dynamic: license-file

# proof-engine-wiki

Attach Proof Engine proofs to LLM-wiki claims.

## Install

    pip install proof-engine-wiki

## Marker syntax

Authors mark claims they want proven:

    The US dollar has {{prove: lost 15% of its purchasing power since 2020}}.

## Ingest

    proof-engine-wiki ingest PAGE.md

Extracts all `{{prove:}}` markers, looks up configured registries,
commissions a new proof only for misses, rewrites the file with inline
badges and links.

## Lint

    proof-engine-wiki lint WIKI_DIR/

Scans every `.md` file under the directory and reports:

- `unresolved_marker` — `{{prove:}}` markers in the page that haven't
  been resolved yet (run `ingest` to resolve them).
- `stale_proof` — embedded proof URLs that no longer respond to a HEAD
  request (the proof was retracted or the registry moved).

Pass `--skip-network` to suppress URL reachability checks (faster CI;
catches only `unresolved_marker`).

## Registry-only mode

Add `--registry-only` to `ingest` to skip new-proof commissioning
entirely. Useful for CI: if every `{{prove:}}` claim already has a
registered proof, ingest runs offline and quickly. Misses are reported,
not commissioned.
