@longtable/provider-claude 0.1.55 → 0.1.57

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 +12 -3
  2. package/package.json +4 -4
package/dist/skills.js CHANGED
@@ -63,7 +63,7 @@ function baseSkillSpecs(surface = "compact") {
63
63
  "## Rules",
64
64
  "",
65
65
  "- Treat `.longtable/` state as the project source of truth when present.",
66
- "- 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.",
66
+ "- 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.",
67
67
  "- Prefer natural language over asking the researcher to run shell role commands.",
68
68
  "- For systematic review, meta-analysis, PDF collection, full-text extraction, institutionally licensed sources, or TDM work, ensure `longtable access setup` readiness exists or surface an ACCESS CHECKPOINT before continuing.",
69
69
  "- Access setup records capability status only. The researcher handles VPN/proxy/library/SSO login directly; LongTable must not store passwords, API keys, tokens, PDFs, or full text in setup state.",
@@ -261,11 +261,17 @@ function baseSkillSpecs(surface = "compact") {
261
261
  "- Use multiple research perspectives when the request touches methods, theory, measurement, venue fit, ethics, or authorship.",
262
262
  "- Do not collapse disagreement too early.",
263
263
  "- Use a Researcher Checkpoint before treating panel synthesis as settled.",
264
+ "- LongTable-native workers are a CLI/runtime option under `longtable panel --provider codex --native-workers`; `--wait <ms>` asks LongTable to wait briefly for terminal result files. In Claude Code, treat them as recorded panel evidence rather than as a Claude product contract.",
265
+ "- If Claude Code exposes a native multi-agent/subagent surface in the current session, it may be used as an adapter; if not, run the same panel roles sequentially and disclose the fallback.",
266
+ "- Sequential fallback is always the stable degradation path; any native worker or native subagent output must normalize final role outputs back into `PanelResult`.",
267
+ "- Do not use OMX `$team` or worker vocabulary as the LongTable product contract. LongTable panel records are the source of truth.",
264
268
  "- Prefer MCP/native structured elicitation for the panel checkpoint when available.",
265
269
  "- Use `longtable question --print --provider claude --prompt \"...\"` only as the numbered fallback when native elicitation is unavailable or not accepted.",
266
270
  "- Do not expose hidden reasoning or tool logs.",
267
271
  "- If `.longtable/` exists, align the panel with `CURRENT.md` and project state.",
268
- "- If `longtable panel --print --prompt \"...\"` is available, it may be used to obtain the canonical fallback prompt."
272
+ "- If `longtable panel --print --prompt \"...\"` is available, it may be used to obtain the canonical fallback prompt.",
273
+ "- 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`.",
274
+ "- 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."
269
275
  ]
270
276
  },
271
277
  {
@@ -305,7 +311,10 @@ function baseSkillSpecs(surface = "compact") {
305
311
  ];
306
312
  return surface === "full"
307
313
  ? specs
308
- : specs.filter((spec) => spec.name === "longtable" || spec.name === "longtable-start" || spec.name === "longtable-interview");
314
+ : specs.filter((spec) => spec.name === "longtable" ||
315
+ spec.name === "longtable-start" ||
316
+ spec.name === "longtable-interview" ||
317
+ spec.name === "longtable-panel");
309
318
  }
310
319
  function mustAskQuestionsForRole(role) {
311
320
  const common = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longtable/provider-claude",
3
- "version": "0.1.55",
3
+ "version": "0.1.57",
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.55",
25
- "@longtable/core": "0.1.55",
26
- "@longtable/setup": "0.1.55"
24
+ "@longtable/checkpoints": "0.1.57",
25
+ "@longtable/core": "0.1.57",
26
+ "@longtable/setup": "0.1.57"
27
27
  },
28
28
  "devDependencies": {
29
29
  "typescript": "^5.6.0"