Prism Semantic Reviewer
Git tells you what lines changed. Prism tells you what those changes mean.
Prism reads a Python web codebase and, for any pull request, commit, or branch, turns a huge diff into a short, ranked list of the things that actually matter: new endpoints, new database writes, new external calls, and data that now leaves the system. It cuts through refactor noise and points you at the exact lines that matter — and it's honest about what it couldn't resolve.
Also: traced PII leaks (the exact field → where it leaves), dependency bumps that gain new
powers (network/subprocess/native), PR descriptions that contradict the code, and the rules
your codebase follows (discover, confirm, enforce, and blame the commit that broke one). Outputs to
the terminal, a web UI, JSON, HTML, SARIF, inline PR comments, a triage label, and a Mermaid
diagram. Full walkthrough: The Complete Guide in the repo (blog/prism-complete-guide.md).
Install
pip install prism-semantic-reviewer
Zero third-party dependencies. Needs Python 3.8+, plus git and tar on the PATH.
Commands
The repo argument can be a local path or a GitHub URL (URLs are cloned & cached).
prism review — review a PR, commit, or range
prism review https://github.com/owner/repo --pr 481 # a GitHub PR by number
prism review /path/to/repo --commit 9cca6d24 # a single commit (vs its parent)
prism review /path/to/repo --merge <merge-sha> # a merge commit
prism review /path/to/repo --base master --head feature # any two refs / commits
Output formats and CI gating:
prism review <repo> --pr 481 \
--out review.md \ # Markdown (default; used by CI to post a PR comment)
--json review.json --html review.html # structured JSON + a self-contained clickable report
prism review <repo> --pr 481 \
--invariants prism-invariants.json \ # enforce your confirmed rules
--fail-on violation # exit non-zero on a new violation (or: crit)
Set GITHUB_TOKEN for private repos / to avoid GitHub API rate limits.
prism post — put a review on a GitHub PR
prism post 481 review.md --json review.json --inline --label
Posts a sticky summary comment, inline comments pinned to the exact changed lines, and one prism:*
triage label. Needs GITHUB_TOKEN + the gh CLI (present on GitHub runners).
prism serve — interactive web UI (with graph view)
cd /path/to/repo && prism serve # auto-selects the current git repo, opens a browser
In the UI: paste a GitHub PR link, or type a PR #, commit sha, or base + head, or
browse the repo's PRs. Each change gets an interactive flow graph
(route → handler → tables / external / jobs) and a list of exact file:line locations.
Preload a review straight from the command line:
prism serve --pr 481 # open a PR on load
prism serve --commit <sha> # open a commit's diff on load
prism serve --base A --head B # open a range
Options: --repo <path-or-url> · --port 8765 · --invariants <file> · --no-open.
prism invariants — discover rules from git history
prism invariants /path/to/repo --snapshots 10
Ranks properties by how long they've held across history, writing invariants_report.md and
invariants.discovered.json. Confirm the ones you want and feed them to prism review --invariants.
Or bootstrap every repo at once: prism invariants <repo> --bootstrap --baseline org-baseline.json
auto-confirms the safe rules and freezes today's state, so it only flags new violations — turning
the moat on across many repos with no hand-confirming.
prism digest — org-wide roll-up for leadership
prism digest --org my-org --slack "$SLACK_WEBHOOK"
Counts the open PRs across a whole org by the prism:* triage label Prism already applied —
🔴 security / 🟠 money / 🟡 new write. No re-analysis, and no GitHub Advanced Security needed.
Needs a GITHUB_TOKEN with org read access.
What it detects (without running your code)
- API routes (new / modified / removed) and their auth level (e.g. AllowAny vs Authenticated)
- Database reads & writes
- External API calls (Stripe, Twilio, PayTM, …)
- Async task dispatches (Celery, threads, signals)
- PII egress — personal data leaving the system
Each fact is marked ✓ verified / ⚠ potential / ? unknown — it never reports "safe" for
something it didn't actually trace.
GitHub Action
# .github/workflows/prism.yml
name: Prism
on: { pull_request: {} }
permissions: { contents: read, pull-requests: write }
jobs:
prism:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- uses: AnkushSinghGandhi/prism@v1
with:
fail_on: violation # violation | crit | none
Inputs include fail_on, invariants, comment, inline, label, scan_deps, and
upload_sarif (set false on private repos without GitHub Advanced Security so the SARIF upload is
skipped and the check stays green).
Full documentation, the graph UI, and architecture details: GitHub repository.
License
Elastic License 2.0 — free to use, self-host, and modify; not to resell or offer as a hosted service.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file prism_semantic_reviewer-0.3.0.tar.gz.
File metadata
- Download URL: prism_semantic_reviewer-0.3.0.tar.gz
- Upload date:
- Size: 86.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c5f79ee8f1376d73ebe776979a8f3d196bff1f993f36205271c849ec278f5f1
|
|
| MD5 |
3937c4273237449e89bdcfc58d5223d4
|
|
| BLAKE2b-256 |
fecf097fd0f7af3b98781c0ea8c48533bee6a02b04b5e4045c254f0fd5de5858
|
File details
Details for the file prism_semantic_reviewer-0.3.0-py3-none-any.whl.
File metadata
- Download URL: prism_semantic_reviewer-0.3.0-py3-none-any.whl
- Upload date:
- Size: 72.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79d8842cb4e4ba4bd1970184b391e0616d737493d341c3cb24a9a9e64a654a8a
|
|
| MD5 |
a4fd593214cf382fc723c4cdbdaa6b31
|
|
| BLAKE2b-256 |
cc1c8c1c480c7365da356560605c79866dd04fb8a0d2e06a74eba120f6a8a14a
|