@longtable/cli 0.1.34 → 0.1.35

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 (3) hide show
  1. package/README.md +22 -1
  2. package/dist/cli.js +1 -1
  3. package/package.json +7 -7
package/README.md CHANGED
@@ -24,12 +24,31 @@ config, hooks, or provider runtime files without explicit setup approval.
24
24
 
25
25
  ## Primary Flow
26
26
 
27
+ Start Codex from the research folder. The provider uses the shell working
28
+ directory at process start as the session workspace.
29
+
27
30
  ```bash
28
31
  longtable setup --provider codex
29
32
  cd "<research-folder>"
30
33
  codex
31
34
  ```
32
35
 
36
+ You can use `codex -C "<research-folder>"` instead of `cd` plus `codex`.
37
+ Changing directories after Codex is already running does not change that
38
+ session's workspace root or rerun LongTable's `SessionStart` hook.
39
+
40
+ Examples:
41
+
42
+ ```bash
43
+ # macOS / Linux
44
+ codex -C "/Users/yourname/Research/My-Research-Project"
45
+ ```
46
+
47
+ ```powershell
48
+ # Windows PowerShell
49
+ codex -C "C:\Users\YourName\Documents\Research\My-Research-Project"
50
+ ```
51
+
33
52
  Then invoke `$longtable-interview` inside Codex.
34
53
 
35
54
  `longtable setup --provider codex` is the permission-first setup route. It asks
@@ -42,10 +61,12 @@ Return later:
42
61
 
43
62
  ```bash
44
63
  cd "<project-path>"
45
- longtable resume
46
64
  codex
47
65
  ```
48
66
 
67
+ Run `longtable resume` inside the project folder when you want a terminal
68
+ summary without starting a provider session.
69
+
49
70
  ## What `$longtable-interview` Creates
50
71
 
51
72
  ```text
package/dist/cli.js CHANGED
@@ -45,7 +45,7 @@ const ANSI = {
45
45
  green: "\u001B[32m"
46
46
  };
47
47
  const LONGTABLE_MCP_SERVER_NAME = "longtable-state";
48
- const LONGTABLE_MCP_PACKAGE_VERSION = "0.1.34";
48
+ const LONGTABLE_MCP_PACKAGE_VERSION = "0.1.35";
49
49
  const LONGTABLE_MCP_MARKER_START = "# LongTable state MCP START";
50
50
  const LONGTABLE_MCP_MARKER_END = "# LongTable state MCP END";
51
51
  function style(text, prefix) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longtable/cli",
3
- "version": "0.1.34",
3
+ "version": "0.1.35",
4
4
  "private": false,
5
5
  "description": "Researcher-facing LongTable CLI",
6
6
  "type": "module",
@@ -29,12 +29,12 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@clack/prompts": "^1.2.0",
32
- "@longtable/checkpoints": "0.1.34",
33
- "@longtable/core": "0.1.34",
34
- "@longtable/memory": "0.1.34",
35
- "@longtable/provider-claude": "0.1.34",
36
- "@longtable/provider-codex": "0.1.34",
37
- "@longtable/setup": "0.1.34"
32
+ "@longtable/checkpoints": "0.1.35",
33
+ "@longtable/core": "0.1.35",
34
+ "@longtable/memory": "0.1.35",
35
+ "@longtable/provider-claude": "0.1.35",
36
+ "@longtable/provider-codex": "0.1.35",
37
+ "@longtable/setup": "0.1.35"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/node": "^22.10.1",