Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pr-prism is a triage tool for repos drowning in PRs. CLI scans GitHub, embeds it
| language | TypeScript | 5.x |
| runtime | Node.js | 22+ |
| CLI framework | Commander.js | 13.x |
| database | better-sqlite3 + sqlite-vec | 11.x / 0.1.x |
| database | better-sqlite3 + sqlite-vec | 12.x / 0.1.x |
| embeddings | ollama, jina, openai, voyage, kimi | multi-provider |
| LLM | openai, anthropic, kimi, opencode, ollama | multi-provider |
| HTTP server | Hono | 4.x |
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

all notable changes to pr-prism are documented here.

## [3.0.1] — 2026-07-13

### fixed
- better-sqlite3 bumped 12.6.2 -> 12.11.1: node 26 dropped `info.This()` from V8 property callbacks, so 12.6.2 fails to compile from source. that broke the brew formula (builds against brew's node, now 26) and any npm install on node 26. 12.11.1 supports node through 26.x. suite verified green on node 26.5.0

## [3.0.0] — 2026-07-13

### breaking
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prism-triage",
"version": "3.0.0",
"version": "3.0.1",
"description": "BYOK GitHub PR/Issue triage tool — de-duplicate, rank, and vision-check PRs at scale",
"type": "module",
"repository": {
Expand Down Expand Up @@ -62,7 +62,7 @@
"@hono/node-server": "^1.19.11",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"better-sqlite3": "^12.6.2",
"better-sqlite3": "^12.11.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
Expand All @@ -82,5 +82,8 @@
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"allowScripts": {
"better-sqlite3@12.11.1": true
}
}
Loading