@longtable/checkpoints 0.1.23 → 0.1.25
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/trigger-classifier.js +22 -0
- package/package.json +2 -2
|
@@ -160,12 +160,15 @@ const RULES = [
|
|
|
160
160
|
cues: [
|
|
161
161
|
/\bknowledge gap\b/i,
|
|
162
162
|
/\bgap in (my|our|the) knowledge\b/i,
|
|
163
|
+
/\bthe gap\b/i,
|
|
163
164
|
/\bunknown\b/i,
|
|
164
165
|
/\buncertain\b/i,
|
|
165
166
|
/\bnot sure\b/i,
|
|
167
|
+
/\bnot sure whether\b/i,
|
|
166
168
|
/\bdon'?t know\b/i,
|
|
167
169
|
/\bwhat am i missing\b/i,
|
|
168
170
|
/\bwhat are we missing\b/i,
|
|
171
|
+
/\bhelp me narrow\b/i,
|
|
169
172
|
/지식의 공백|지식 공백|모르겠|불확실|놓치고 있|빠뜨리고 있/
|
|
170
173
|
],
|
|
171
174
|
rationale: "A named knowledge gap should be surfaced before LongTable narrows or closes the problem."
|
|
@@ -202,6 +205,25 @@ const RULES = [
|
|
|
202
205
|
],
|
|
203
206
|
rationale: "Exploration should ask tension questions before recommendation."
|
|
204
207
|
},
|
|
208
|
+
{
|
|
209
|
+
family: "review",
|
|
210
|
+
checkpointKey: "panel_disagreement_resolution",
|
|
211
|
+
stage: "analysis_planning",
|
|
212
|
+
mode: "review",
|
|
213
|
+
level: "adaptive_required",
|
|
214
|
+
cues: [
|
|
215
|
+
/\bpanel disagrees?\b/i,
|
|
216
|
+
/\brole disagreement\b/i,
|
|
217
|
+
/\bpanel disagreement\b/i,
|
|
218
|
+
/\bdisagreement\b/i,
|
|
219
|
+
/\bconflict\b/i,
|
|
220
|
+
/\bsynthesi[sz]e and choose\b/i,
|
|
221
|
+
/\bchoose .*framing\b/i,
|
|
222
|
+
/\bbest framing\b/i,
|
|
223
|
+
/패널.*불일치|역할.*불일치|불일치|충돌|종합.*선택|프레이밍.*선택/
|
|
224
|
+
],
|
|
225
|
+
rationale: "Panel disagreement should not be collapsed into one synthesis without an explicit researcher decision."
|
|
226
|
+
},
|
|
205
227
|
{
|
|
206
228
|
family: "review",
|
|
207
229
|
checkpointKey: "research_review",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@longtable/checkpoints",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.25",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Checkpoint policy engine for LongTable",
|
|
6
6
|
"type": "module",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@longtable/core": "0.1.
|
|
24
|
+
"@longtable/core": "0.1.25"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"typescript": "^5.6.0"
|