Skip to main content

Evidence-backed lookup for big-repo PR contributions. Local-only, zero-runtime, stdlib-first. Renamed from `prgenius` to avoid PyPI name collision with an unrelated 2024 GPT-3 PR-description tool. Distribution renamed again in v0.7.8: `prgenius-kb` → `prgenius-core` (aligned with `misakanet-core` convention).

Project description


type: Schema Reference title: prgenius description: Evidence-backed lookup library for big-repo PR contributions — stdlib-first CLI + stdio MCP shell. version: 0.7.0 created: 2026-07-04 updated: 2026-07-05 author: zsxh1990

prgenius

Evidence-backed lookup for big-repo PR contributions. Local-only. Stdlib-first.

A pure-Python (zero hard deps) library + CLI that reads the markdown knowledge base in this repo and exposes it through structured tool calls.

Install

pip install prgenius-core

Or run from a checkout:

cd prgenius
PYTHONPATH=src python3 -m prgenius --version

Important: PyPI package is the interface, not the data

The PyPI wheel ships only the Python code (prgenius/ package). The knowledge base (profile markdown, case studies, OKF schemas) lives in the GitHub repo at https://github.com/zsxh1990/pr-genius and is not bundled into the wheel. To use prgenius-core after pip install, point it at a checkout of the knowledge base:

git clone https://github.com/zsxh1990/pr-genius
prgenius-core --repo-root ./pr-genius profile get astral-sh/uv

If you cloned a specific tag/commit, the package's __version__ should match (e.g. v0.7.7 ↔ prgenius-core==0.7.7).

Optional: MCP server

The MCP entry point (prgenius-core mcp serve) requires the mcp package:

pip install "prgenius-core[mcp]"

Quick Start

# 1) Schema reference
PYTHONPATH=src python3 -m prgenius schema info

# 2) Look up one repo
PYTHONPATH=src python3 -m prgenius profile get astral-sh/uv

# 3) List currently-open case studies
PYTHONPATH=src python3 -m prgenius case list --status=open

# 4) NDJSON dump of every case study (for benchmarks / agent context)
PYTHONPATH=src python3 -m prgenius dump > cases.ndjson

# 5) Run as stdio MCP server (for Cursor/Cline/Claude Code)
PYTHONPATH=src python3 -m prgenius mcp serve

Programmatic use

from prgenius.parser import profile_get, iter_case_studies, schema_info

prof = profile_get("path/to/repo_root", "astral-sh/uv")
print(prof["frontmatter"]["title"])

for case in iter_case_studies("path/to/repo_root"):
    fm = case["frontmatter"]
    if fm.get("final_status") == "open":
        print(fm.get("pr_number"), fm.get("repo"))

What's exposed

Tool Description
prgenius profile get <org/name> One Repo Profile (frontmatter + first lines)
prgenius case list [--status=...] All PR Case Study rows
prgenius schema info Supported schema versions + enums
prgenius dump NDJSON dump (one case per line)
prgenius mcp serve Stdio MCP server (4 tools)

MCP surface (when mcp is installed)

The MCP shell exposes 4 tools to local agents:

  • get_repo_profile(repo) — one Profile dict
  • list_open_prs() — currently-open PRs
  • get_case_study(repo, pr_number) — one Case Study
  • schema_info() — schema versions + enums

No network, no auth, no rate-limiting. Agent calls go through stdio only.

--repo-root flag

The MCP server defaults to a path computed from its install location (<package>/../.. × 3 to reach the knowledge base). When that path is wrong (editable install, venv, worktree, fork), pass --repo-root:

python3 -m prgenius --repo-root /path/to/big-repo-pr-knowledge mcp serve

Wiring into Cursor / Claude Code / Cline

These editors all read MCP server config from JSON. Point command at python3 -m prgenius and args at mcp serve (add --repo-root if the auto-detected path doesn't match your checkout). No env keys, no auth.

Claude Code (~/.claude/mcp.json or project-local .mcp.json):

{
  "mcpServers": {
    "pr-genius": {
      "command": "python3",
      "args": ["-m", "prgenius", "--repo-root", "/abs/path/to/big-repo-pr-knowledge", "mcp", "serve"]
    }
  }
}

Cursor (~/.cursor/mcp.json):

{
  "mcpServers": {
    "pr-genius": {
      "command": "python3 -m prgenius",
      "args": ["--repo-root", "/abs/path/to/big-repo-pr-knowledge", "mcp", "serve"]
    }
  }
}

Cline (VS Code cline_mcp_settings.json):

{
  "mcpServers": {
    "pr-genius": {
      "command": "python3",
      "args": ["-m", "prgenius", "--repo-root", "/abs/path/to/big-repo-pr-knowledge", "mcp", "serve"],
      "disabled": false
    }
  }
}

Replace /abs/path/to/big-repo-pr-knowledge with the actual checkout. Omit --repo-root only if you installed prgenius from this exact checkout (then the default path resolves correctly).

Schema we honor

  • rounds v0.5.0action enum + delta object + case-level close_decision
  • rounds v0.7.0 — adds optional verified_at, evidence_urls, confidence to round + case level (BC over v0.5.0)

See ../ROUNDS_SCHEMA.md for the canonical schema.

Why this exists

The repo is meant to be human-readable (<org>-<repo>/index.md) AND machine-readable via this package. People get the narrative; agents get structured tool calls. Both views share one source of truth.

License

MIT (same as parent repo).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

prgenius_core-0.7.8.tar.gz (12.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

prgenius_core-0.7.8-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file prgenius_core-0.7.8.tar.gz.

File metadata

  • Download URL: prgenius_core-0.7.8.tar.gz
  • Upload date:
  • Size: 12.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for prgenius_core-0.7.8.tar.gz
Algorithm Hash digest
SHA256 bb2b78382e66e415c6bc47019c83e86fbc70d82f9fc0512901416db3519d2142
MD5 77c3c265939200e22e4a9fbe25425660
BLAKE2b-256 1dd7d641d758526847b8357c6af4221b57d703d2d56b09771382f6bacd917745

See more details on using hashes here.

Provenance

The following attestation bundles were made for prgenius_core-0.7.8.tar.gz:

Publisher: publish-pypi.yml on zsxh1990/pr-genius

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file prgenius_core-0.7.8-py3-none-any.whl.

File metadata

  • Download URL: prgenius_core-0.7.8-py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for prgenius_core-0.7.8-py3-none-any.whl
Algorithm Hash digest
SHA256 8c115848bfeadd50ae7e1194ec58ae61b572a17c184faff1f7c570bdc940f8ce
MD5 a7a70954885fd9a64b7b9e984ad32cb0
BLAKE2b-256 7f8cdcdf20281b53b14030ab52f846d6e24bfd22c6c7e32adbc7d83ee53e85ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for prgenius_core-0.7.8-py3-none-any.whl:

Publisher: publish-pypi.yml on zsxh1990/pr-genius

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page