pierre-review 0.1.84 → 0.1.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/db/migrations/0033_thread_addressed_confidence.sql +9 -0
- package/dist/db/migrations/meta/_journal.json +7 -0
- package/dist/db/migrations-pg/0020_majestic_edwin_jarvis.sql +3 -0
- package/dist/db/migrations-pg/meta/0020_snapshot.json +3228 -0
- package/dist/db/migrations-pg/meta/_journal.json +8 -1
- package/dist/db/queries.js +12 -0
- package/dist/db/schema.pg.js +11 -0
- package/dist/db/schema.sqlite.js +12 -0
- package/dist/github/queries.js +3 -0
- package/dist/sync/bot-resolution-markers.js +30 -0
- package/dist/sync/derive-thread-state.js +79 -18
- package/dist/sync/upsert.js +11 -1
- package/package.json +1 -1
- package/public/assets/{AiFixTab-A1fvQRsN.js → AiFixTab-DVo7Cp_r.js} +1 -1
- package/public/assets/{ClaudeReviewTab-CS2zePI3.js → ClaudeReviewTab-DLfa9u-P.js} +1 -1
- package/public/assets/index-DLN1zktY.css +1 -0
- package/public/assets/index-DNMKo7St.js +54 -0
- package/public/index.html +2 -2
- package/public/assets/index-Bj8agNUc.js +0 -53
- package/public/assets/index-CphvnaTD.css +0 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
-- Part A: deterministic "was this thread addressed?" upgrade. Store a graded addressed-confidence
|
|
2
|
+
-- + a machine reason tag + who resolved the thread, alongside the existing derivedState. All
|
|
3
|
+
-- additive (defaulted / nullable) so the backfill is a no-op — the next sync recomputes them.
|
|
4
|
+
-- The Postgres baseline is regenerated separately via `pnpm db:generate:pg`.
|
|
5
|
+
ALTER TABLE `review_threads` ADD `addressed_confidence` text DEFAULT 'none' NOT NULL;
|
|
6
|
+
--> statement-breakpoint
|
|
7
|
+
ALTER TABLE `review_threads` ADD `addressed_reason` text;
|
|
8
|
+
--> statement-breakpoint
|
|
9
|
+
ALTER TABLE `review_threads` ADD `resolved_by_login` text;
|
|
@@ -232,6 +232,13 @@
|
|
|
232
232
|
"when": 1783820880005,
|
|
233
233
|
"tag": "0032_benchmark_contributions",
|
|
234
234
|
"breakpoints": true
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"idx": 33,
|
|
238
|
+
"version": "6",
|
|
239
|
+
"when": 1784200000000,
|
|
240
|
+
"tag": "0033_thread_addressed_confidence",
|
|
241
|
+
"breakpoints": true
|
|
235
242
|
}
|
|
236
243
|
]
|
|
237
244
|
}
|