Metadata-Version: 2.4
Name: fixprove
Version: 0.1.5
Summary: FixProve — deterministic AST-level verification that AI-generated code references real, installed symbols. Zero LLM tokens.
Author: Yehor Kaliberda
License: MIT License
        
        Copyright (c) 2026 Yehor Kaliberda
        
        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://fixprove.dev
Project-URL: GitHub App (paid CI), https://fixprove.dev/app
Project-URL: Repository, https://github.com/fixprove/fixprove
Keywords: ai,hallucination,static-analysis,ci,linter
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tree-sitter==0.26.0
Requires-Dist: tree-sitter-python==0.25.0
Requires-Dist: tree-sitter-typescript==0.23.2
Dynamic: license-file

# fixprove (Python engine, open-core)

FixProve deterministically verifies that every import, symbol, method, and
API call in your code — Python or TypeScript/JavaScript — resolves against
your *real, installed* dependencies. No LLM calls, no false-positive-prone
heuristics: an AST-level resolver checks a reference set against a
knowledge base built from what's actually on disk.

```bash
pip install fixprove
fixprove /path/to/your/project
```

Exit codes: `0` clean, `1` unresolved symbol(s) found, `2` usage/setup
error — designed to drop straight into a CI gate.

This is the same engine that powers the [FixProve GitHub App](https://fixprove.dev/app),
which posts this check as a blocking status directly on your pull requests
— without your source code ever leaving your own CI runner. This CLI is
the open-core, self-hosted way to run the identical deterministic core
locally or in your own pipeline.

## Scope (current)

- Python: imports, call targets, attribute chains, checked against
  installed packages' real public API.
- TypeScript/JavaScript: imports/re-exports/call targets/attribute chains,
  checked against installed npm packages' `.d.ts` declarations.
- Known limitation: packages using TypeScript module augmentation (e.g.
  `@types/lodash`) are safely skipped (never flagged, but also not fully
  checked) rather than guessed at — see the engine's own Keystone Reports
  (`KS-REPORT-1.4-ts-resolver.md` in the source repository) for the full
  accuracy/limitation writeup.

## License

MIT — see [LICENSE](./LICENSE). This package is the open-core component of
FixProve; the GitHub App and web dashboard are proprietary (see the source
repository's root `NOTICE.md`).
