@longtable/cli 0.1.20 → 0.1.21

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/cli.js CHANGED
@@ -42,7 +42,7 @@ const ANSI = {
42
42
  green: "\u001B[32m"
43
43
  };
44
44
  const LONGTABLE_MCP_SERVER_NAME = "longtable-state";
45
- const LONGTABLE_MCP_PACKAGE_VERSION = "0.1.20";
45
+ const LONGTABLE_MCP_PACKAGE_VERSION = "0.1.21";
46
46
  const LONGTABLE_MCP_MARKER_START = "# LongTable state MCP START";
47
47
  const LONGTABLE_MCP_MARKER_END = "# LongTable state MCP END";
48
48
  function style(text, prefix) {
@@ -25,21 +25,22 @@ function promptSpec() {
25
25
  },
26
26
  {
27
27
  name: "longtable-init",
28
- description: "Run LongTable researcher onboarding inside Codex",
28
+ description: "Deprecated alias guidance for LongTable setup inside Codex",
29
29
  argumentHint: "[project context or current uncertainty]",
30
30
  body: [
31
- "You are LongTable onboarding inside Codex.",
32
- "First ask whether the researcher wants Quickstart or Interview setup.",
31
+ "You are LongTable setup guidance inside Codex.",
32
+ "Treat `longtable init` as deprecated. Prefer `longtable setup --provider codex` for runtime permissions, then `longtable start` for the project interview.",
33
33
  "Ask exactly one setup question at a time.",
34
- "Use numbered choices when possible and include a 'None of the above' option when needed.",
34
+ "Use numbered choices and include a concise Why / What you get / Tradeoff for each option.",
35
35
  "Do not move to the next question until the researcher answers the current one.",
36
- "Quickstart covers: provider, career stage, experience level, checkpoint intensity, and human authorship signal. Do not ask for research field during setup unless the researcher volunteers it.",
37
- "Interview also covers: preferred entry mode, weakest domain, and panel visibility preference.",
38
- "After collecting all answers, summarize the proposed setup and then output both: 1) the exact `longtable codex persist-init ... --install-skills` command and 2) a strict JSON object with keys provider, flow, careerStage, experienceLevel, preferredCheckpointIntensity, and optional field, humanAuthorshipSignal, preferredEntryMode, weakestDomain, panelPreference.",
39
- "If the user prefers paste-based setup, tell them they can pipe the JSON into `longtable codex persist-init --stdin --install-skills`.",
36
+ "Runtime setup covers only: provider, install scope, runtime surfaces, intervention strength, and whether to create a workspace now.",
37
+ "Do not ask for field, career stage, experience level, authorship signal, weakest domain, or panel preference during runtime setup.",
38
+ "Project start covers: research object, gap/tacit risk, and protected decision area.",
39
+ "After collecting runtime answers, summarize the proposed setup and output the exact `longtable setup --provider codex ...` command.",
40
+ "If the researcher is ready to create a project workspace, output the exact `longtable start ...` command separately.",
40
41
  "If the researcher asks you to stay inside Codex, keep the conversation in numbered form and do not prematurely close.",
41
- "Frame the setup like a short researcher interview, not a bare config form.",
42
- "Do not pretend that this is the full project-start interview. The real project-start interview happens in `longtable start`.",
42
+ "Frame setup as permission and intervention calibration, not a researcher profile interview.",
43
+ "Do not pretend setup is the full project-start interview. The project-start interview happens in `longtable start`.",
43
44
  "Treat any slash-command arguments as context for why setup is being done now."
44
45
  ]
45
46
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longtable/cli",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "private": false,
5
5
  "description": "Researcher-facing LongTable CLI",
6
6
  "type": "module",
@@ -28,12 +28,12 @@
28
28
  "typecheck": "tsc -p tsconfig.json --noEmit"
29
29
  },
30
30
  "dependencies": {
31
- "@longtable/checkpoints": "0.1.20",
32
- "@longtable/core": "0.1.20",
33
- "@longtable/memory": "0.1.20",
34
- "@longtable/provider-claude": "0.1.20",
35
- "@longtable/provider-codex": "0.1.20",
36
- "@longtable/setup": "0.1.20"
31
+ "@longtable/checkpoints": "0.1.21",
32
+ "@longtable/core": "0.1.21",
33
+ "@longtable/memory": "0.1.21",
34
+ "@longtable/provider-claude": "0.1.21",
35
+ "@longtable/provider-codex": "0.1.21",
36
+ "@longtable/setup": "0.1.21"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/node": "^22.10.1",