@longtable/provider-codex 0.1.54 → 0.1.56
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 +12 -6
- package/package.json +4 -4
package/dist/skills.js
CHANGED
|
@@ -66,7 +66,7 @@ function baseSkillSpecs(surface = "compact") {
|
|
|
66
66
|
"- `$longtable-start` runs the provider-native LongTable start interview. It replaces the old CLI start questionnaire as the primary research-start surface.",
|
|
67
67
|
"- `$longtable-interview` is post-start. If `.longtable/state.json` or `CURRENT.md` lacks a usable Research Specification, route to `$longtable-start` before offering option-first follow-up choices.",
|
|
68
68
|
"- Natural references to methods, measurement, theory, reviewer, editor, ethics, venue, or voice should foreground the matching LongTable role.",
|
|
69
|
-
"- The compact visible shortcut set is methods, measure, theory, reviewer, and voice. Other roles remain available through this router when the request calls for them.",
|
|
69
|
+
"- The compact visible shortcut set is panel, methods, measure, theory, reviewer, and voice. Other roles remain available through this router when the request calls for them.",
|
|
70
70
|
"- When research responsibility is about to shift, surface a Researcher Checkpoint before closure.",
|
|
71
71
|
"- When changing LongTable product language, README positioning, or checkpoint policy, surface a Meta-Decision Checkpoint first.",
|
|
72
72
|
"- Stop before acting when the request would change the research question/scope, theory frame, measurement/coding standard, method design, or analysis strategy.",
|
|
@@ -279,9 +279,7 @@ function baseSkillSpecs(surface = "compact") {
|
|
|
279
279
|
"",
|
|
280
280
|
"If MCP tools are unavailable, continue in Codex with explicit options and state that durable LongTable state could not be written."
|
|
281
281
|
]
|
|
282
|
-
}
|
|
283
|
-
];
|
|
284
|
-
const fullOnly = [
|
|
282
|
+
},
|
|
285
283
|
{
|
|
286
284
|
name: "longtable-panel",
|
|
287
285
|
description: "Use when LongTable should run a panel review with visible role disagreement.",
|
|
@@ -310,11 +308,19 @@ function baseSkillSpecs(surface = "compact") {
|
|
|
310
308
|
"",
|
|
311
309
|
"- Do not collapse disagreement too early.",
|
|
312
310
|
"- Use a Researcher Checkpoint before treating a high-stakes research decision as settled.",
|
|
311
|
+
"- `longtable panel --provider codex --native-workers` may launch durable LongTable-native role workers when the CLI/runtime supports it; add `--wait <ms>` when a bounded command should wait for terminal result files. `--native-subagents` remains a compatibility adapter for provider-native subagents.",
|
|
312
|
+
"- If Codex native subagents are available, they may be used as a provider-native execution adapter; if not, run the same roles sequentially and disclose the fallback.",
|
|
313
|
+
"- Sequential fallback is always the stable degradation path; native workers and native subagents must normalize final role outputs back into `PanelResult`.",
|
|
314
|
+
"- Do not use OMX `$team` or worker vocabulary as the LongTable product contract. LongTable panel records are the source of truth.",
|
|
313
315
|
"- If the `mcp__longtable_state__.elicit_question` tool is available, prefer it for the panel checkpoint before synthesizing or revising.",
|
|
314
316
|
"- Use `longtable question --print --provider codex --prompt \"...\"` only as the numbered fallback when MCP elicitation is unavailable or not accepted.",
|
|
315
|
-
"- Use `longtable panel --print --prompt \"...\"` only as an optional canonical prompt aid, not as the user's primary interface."
|
|
317
|
+
"- Use `longtable panel --print --prompt \"...\"` only as an optional canonical prompt aid, not as the user's primary interface.",
|
|
318
|
+
"- Terminal native worker runs (`completed` or `blocked`) are recorded by `longtable panel --native-workers --wait`, `longtable panel status --wait`, or `longtable panel resume --wait`; blocked role outputs remain blocked in the handoff. For external/provider results outside that lifecycle, persist structured role outputs with `longtable panel record --invocation <id> --result-file <json>` before generating `longtable handoff`.",
|
|
319
|
+
"- A result file should contain final role summaries, claims, objections, open questions, and evidence refs only; do not persist hidden reasoning, raw tool traces, or tmux logs."
|
|
316
320
|
]
|
|
317
|
-
}
|
|
321
|
+
}
|
|
322
|
+
];
|
|
323
|
+
const fullOnly = [
|
|
318
324
|
{
|
|
319
325
|
name: "longtable-explore",
|
|
320
326
|
description: "Use for early LongTable research exploration, problem framing, and question narrowing.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@longtable/provider-codex",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.56",
|
|
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.56",
|
|
19
|
+
"@longtable/core": "0.1.56",
|
|
20
|
+
"@longtable/setup": "0.1.56"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^22.10.1",
|