@longtable/provider-claude 0.1.53 → 0.1.55

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.
Files changed (2) hide show
  1. package/dist/skills.js +5 -2
  2. package/package.json +4 -4
package/dist/skills.js CHANGED
@@ -127,8 +127,9 @@ function baseSkillSpecs(surface = "compact") {
127
127
  "9. Store the fuller Research Specification with MCP `summarize_research_specification` when the interview has enough detail. If enough detail already exists, go directly to this step after or instead of the shape handle.",
128
128
  "10. Show the Research Specification Preview explicitly before asking for confirmation.",
129
129
  "11. Use MCP `confirm_research_specification` for the final structured confirmation.",
130
- "12. Use MCP `confirm_first_research_shape` only when the researcher wants to stop at the shorter shape layer.",
131
- "13. If the researcher explicitly cancels the interview, use MCP `cancel_interview` when available. Do not cancel durable state for a casual topic change unless the researcher says to cancel the interview.",
130
+ "12. If confirmation is unavailable, timed out, or deferred, say that the draft Research Specification was saved and that confirmation remains the next action.",
131
+ "13. Use MCP `confirm_first_research_shape` only when the researcher wants to stop at the shorter shape layer.",
132
+ "14. If the researcher explicitly cancels the interview, use MCP `cancel_interview` when available. Do not cancel durable state for a casual topic change unless the researcher says to cancel the interview.",
132
133
  "",
133
134
  "## Opening",
134
135
  "",
@@ -213,6 +214,8 @@ function baseSkillSpecs(surface = "compact") {
213
214
  "## Required Routing",
214
215
  "",
215
216
  "- First inspect `CURRENT.md` and `.longtable/state.json` when available.",
217
+ "- If MCP `read_research_specification` is available, use its `readiness.usableForInterview` result as the gate.",
218
+ "- Usable means the shared readiness gate allows interview, normally a confirmed Research Specification.",
216
219
  "- If no usable Research Specification exists, route to `$longtable-start` immediately.",
217
220
  "- If only a First Research Shape exists, route to `$longtable-start` and continue into the next Research Specification question or preview.",
218
221
  "- Do not run an option-only interview before the Research Specification exists.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longtable/provider-claude",
3
- "version": "0.1.53",
3
+ "version": "0.1.55",
4
4
  "private": false,
5
5
  "description": "Claude adapter surface for LongTable",
6
6
  "type": "module",
@@ -21,9 +21,9 @@
21
21
  "typecheck": "tsc -p tsconfig.json --noEmit"
22
22
  },
23
23
  "dependencies": {
24
- "@longtable/checkpoints": "0.1.53",
25
- "@longtable/core": "0.1.53",
26
- "@longtable/setup": "0.1.53"
24
+ "@longtable/checkpoints": "0.1.55",
25
+ "@longtable/core": "0.1.55",
26
+ "@longtable/setup": "0.1.55"
27
27
  },
28
28
  "devDependencies": {
29
29
  "typescript": "^5.6.0"