@longtable/provider-codex 0.1.35 → 0.1.36
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/skills.js +55 -0
- package/package.json +4 -4
package/dist/skills.js
CHANGED
|
@@ -228,6 +228,39 @@ function baseSkillSpecs() {
|
|
|
228
228
|
}
|
|
229
229
|
];
|
|
230
230
|
}
|
|
231
|
+
function mustAskQuestionsForRole(role) {
|
|
232
|
+
const common = [
|
|
233
|
+
"What researcher judgment would be hidden if this role gives a confident answer now?",
|
|
234
|
+
"What evidence or project-state reference would change this role's recommendation?"
|
|
235
|
+
];
|
|
236
|
+
const byRole = {
|
|
237
|
+
editor: [
|
|
238
|
+
"What is the strongest venue-facing contribution claim, and what would make it overreach?"
|
|
239
|
+
],
|
|
240
|
+
reviewer: [
|
|
241
|
+
"What objection would a skeptical reviewer raise first, and what missing evidence would answer it?"
|
|
242
|
+
],
|
|
243
|
+
theory_critic: [
|
|
244
|
+
"Which construct boundary or theoretical assumption must stay explicit before the claim is revised?"
|
|
245
|
+
],
|
|
246
|
+
methods_critic: [
|
|
247
|
+
"Which design choice, comparison, sample, or causal claim is being treated as settled too early?"
|
|
248
|
+
],
|
|
249
|
+
measurement_auditor: [
|
|
250
|
+
"What exactly is being measured, and what would count as construct drift or invalid substitution?"
|
|
251
|
+
],
|
|
252
|
+
ethics_reviewer: [
|
|
253
|
+
"Who could be misrepresented, exposed, or burdened if this design choice is accepted?"
|
|
254
|
+
],
|
|
255
|
+
voice_keeper: [
|
|
256
|
+
"Which part of the researcher's own narrative or uncertainty should not be polished away?"
|
|
257
|
+
],
|
|
258
|
+
venue_strategist: [
|
|
259
|
+
"Which venue expectation is being optimized for, and what positioning tradeoff follows from it?"
|
|
260
|
+
]
|
|
261
|
+
};
|
|
262
|
+
return [...(byRole[role.key] ?? []), ...common];
|
|
263
|
+
}
|
|
231
264
|
function roleSkillSpec(role) {
|
|
232
265
|
const label = role.label;
|
|
233
266
|
return {
|
|
@@ -246,6 +279,28 @@ function roleSkillSpec(role) {
|
|
|
246
279
|
"",
|
|
247
280
|
role.shortDescription,
|
|
248
281
|
"",
|
|
282
|
+
"## Must-Ask Questions",
|
|
283
|
+
"",
|
|
284
|
+
...mustAskQuestionsForRole(role).map((question) => `- ${question}`),
|
|
285
|
+
"",
|
|
286
|
+
"## Stop Conditions",
|
|
287
|
+
"",
|
|
288
|
+
"- Stop before closure when the role's recommendation would change a research question, construct definition, measurement rule, authorship boundary, or venue positioning.",
|
|
289
|
+
"- Stop when the role is relying on unstated evidence, a tacit assumption, or a hidden tradeoff.",
|
|
290
|
+
"- Stop when another LongTable role would likely disagree and the disagreement has not been shown to the researcher.",
|
|
291
|
+
"",
|
|
292
|
+
"## Output Contract",
|
|
293
|
+
"",
|
|
294
|
+
"- Start with the role's strongest concern or contribution.",
|
|
295
|
+
"- State one concrete question the researcher should answer if the direction is not yet safe to settle.",
|
|
296
|
+
"- Separate evidence needs from interpretation and from role-specific judgment.",
|
|
297
|
+
"",
|
|
298
|
+
"## Anti-Patterns",
|
|
299
|
+
"",
|
|
300
|
+
"- Do not give generic encouragement or a polished synthesis without the role's actual objection.",
|
|
301
|
+
"- Do not use the role as a decorative label after a normal answer has already been written.",
|
|
302
|
+
"- Do not ask for evidence only as a fallback; name the missing evidence when it changes the recommendation.",
|
|
303
|
+
"",
|
|
249
304
|
"## Rules",
|
|
250
305
|
"",
|
|
251
306
|
`- Disclose: \`LongTable consulted: ${label}\`.`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@longtable/provider-codex",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.36",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Codex adapter surface for LongTable",
|
|
6
6
|
"type": "module",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@longtable/checkpoints": "0.1.
|
|
19
|
-
"@longtable/core": "0.1.
|
|
20
|
-
"@longtable/setup": "0.1.
|
|
18
|
+
"@longtable/checkpoints": "0.1.36",
|
|
19
|
+
"@longtable/core": "0.1.36",
|
|
20
|
+
"@longtable/setup": "0.1.36"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^22.10.1",
|