@longtable/checkpoints 0.1.21 → 0.1.22
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 +36 -0
- package/package.json +2 -2
|
@@ -151,6 +151,42 @@ const RULES = [
|
|
|
151
151
|
],
|
|
152
152
|
rationale: "LongTable should preserve researcher authorship rather than over-smoothing."
|
|
153
153
|
},
|
|
154
|
+
{
|
|
155
|
+
family: "exploration",
|
|
156
|
+
checkpointKey: "knowledge_gap_probe",
|
|
157
|
+
stage: "problem_framing",
|
|
158
|
+
mode: "explore",
|
|
159
|
+
level: "adaptive_required",
|
|
160
|
+
cues: [
|
|
161
|
+
/\bknowledge gap\b/i,
|
|
162
|
+
/\bgap in (my|our|the) knowledge\b/i,
|
|
163
|
+
/\bunknown\b/i,
|
|
164
|
+
/\buncertain\b/i,
|
|
165
|
+
/\bnot sure\b/i,
|
|
166
|
+
/\bdon'?t know\b/i,
|
|
167
|
+
/\bwhat am i missing\b/i,
|
|
168
|
+
/\bwhat are we missing\b/i,
|
|
169
|
+
/지식의 공백|지식 공백|모르겠|불확실|놓치고 있|빠뜨리고 있/
|
|
170
|
+
],
|
|
171
|
+
rationale: "A named knowledge gap should be surfaced before LongTable narrows or closes the problem."
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
family: "review",
|
|
175
|
+
checkpointKey: "tacit_assumption_probe",
|
|
176
|
+
stage: "problem_framing",
|
|
177
|
+
mode: "review",
|
|
178
|
+
level: "adaptive_required",
|
|
179
|
+
cues: [
|
|
180
|
+
/\btacit\b/i,
|
|
181
|
+
/\bimplicit\b/i,
|
|
182
|
+
/\bassumption\b/i,
|
|
183
|
+
/\bpremise\b/i,
|
|
184
|
+
/\bblind spot\b/i,
|
|
185
|
+
/\bhidden constraint\b/i,
|
|
186
|
+
/암묵지|암묵적|전제|가정|사각지대|숨은 제약|암묵/
|
|
187
|
+
],
|
|
188
|
+
rationale: "Tacit assumptions can silently shift research responsibility and need an explicit researcher-facing check."
|
|
189
|
+
},
|
|
154
190
|
{
|
|
155
191
|
family: "exploration",
|
|
156
192
|
checkpointKey: "problem_exploration",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@longtable/checkpoints",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
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.22"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"typescript": "^5.6.0"
|