@longtable/provider-codex 0.1.23 → 0.1.24

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/README.md CHANGED
@@ -2,7 +2,10 @@
2
2
 
3
3
  Codex-specific adapter logic for LongTable.
4
4
 
5
- This package implements numbered checkpoint interaction and thin runtime-guidance injection rather than depending on a provider-native question widget.
5
+ This package implements thin runtime-guidance injection for Codex. When the
6
+ LongTable MCP tool surface is available, Researcher Checkpoints should route
7
+ through MCP elicitation first; numbered checkpoint interaction remains the
8
+ fallback transport.
6
9
 
7
10
  ## Role
8
11
 
package/dist/skills.js CHANGED
@@ -68,7 +68,8 @@ function baseSkillSpecs() {
68
68
  "- If a Researcher Checkpoint is needed, ask a concise question with meaningful options and wait for the researcher.",
69
69
  "- If a checkpoint allows `other`, make `other` visible instead of hiding it in state.",
70
70
  "- Treat provider-native question UI as transport; LongTable state records are the source of truth.",
71
- "- When the `longtable` CLI is available in a workspace, use `longtable question --print --provider codex --prompt \"...\"` to create and render a canonical checkpoint before proceeding.",
71
+ "- When the `mcp__longtable_state__.elicit_question` tool is available, use it first for researcher checkpoints so Codex can show the MCP elicitation UI and LongTable can record the answer as `mcp_elicitation`.",
72
+ "- Use `longtable question --print --provider codex --prompt \"...\"` only as a fallback when the MCP tool is unavailable, unsupported, declined, canceled, or blocked by the client.",
72
73
  "- If `CURRENT.md` shows a pending required checkpoint, do not proceed until `longtable decide --question <id> --answer <value>` records the researcher's choice.",
73
74
  "- Preserve open tensions and authorship instead of forcing closure.",
74
75
  "- Label unsupported external claims as inference or estimate."
@@ -102,7 +103,8 @@ function baseSkillSpecs() {
102
103
  "",
103
104
  "- Do not collapse disagreement too early.",
104
105
  "- Use a Researcher Checkpoint before treating a high-stakes research decision as settled.",
105
- "- If the CLI is available, prefer `longtable question --print --provider codex --prompt \"...\"` for canonical numbered checkpoint rendering.",
106
+ "- If the `mcp__longtable_state__.elicit_question` tool is available, prefer it for the panel checkpoint before synthesizing or revising.",
107
+ "- Use `longtable question --print --provider codex --prompt \"...\"` only as the numbered fallback when MCP elicitation is unavailable or not accepted.",
106
108
  "- Use `longtable panel --print --prompt \"...\"` only as an optional canonical prompt aid, not as the user's primary interface."
107
109
  ]
108
110
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longtable/provider-codex",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
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.23",
19
- "@longtable/core": "0.1.23",
20
- "@longtable/setup": "0.1.23"
18
+ "@longtable/checkpoints": "0.1.24",
19
+ "@longtable/core": "0.1.24",
20
+ "@longtable/setup": "0.1.24"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^22.10.1",