@longtable/cli 0.1.17 → 0.1.18
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 +1 -1
- package/dist/project-session.js +1 -0
- package/package.json +7 -7
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.
|
|
45
|
+
const LONGTABLE_MCP_PACKAGE_VERSION = "0.1.18";
|
|
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) {
|
package/dist/project-session.js
CHANGED
|
@@ -193,6 +193,7 @@ async function loadResearchState(stateFilePath) {
|
|
|
193
193
|
}
|
|
194
194
|
const parsed = JSON.parse(await readFile(stateFilePath, "utf8"));
|
|
195
195
|
return {
|
|
196
|
+
...parsed,
|
|
196
197
|
explicitState: parsed.explicitState ?? {},
|
|
197
198
|
workingState: parsed.workingState ?? {},
|
|
198
199
|
inferredHypotheses: parsed.inferredHypotheses ?? [],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@longtable/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
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.
|
|
32
|
-
"@longtable/core": "0.1.
|
|
33
|
-
"@longtable/memory": "0.1.
|
|
34
|
-
"@longtable/provider-claude": "0.1.
|
|
35
|
-
"@longtable/provider-codex": "0.1.
|
|
36
|
-
"@longtable/setup": "0.1.
|
|
31
|
+
"@longtable/checkpoints": "0.1.18",
|
|
32
|
+
"@longtable/core": "0.1.18",
|
|
33
|
+
"@longtable/memory": "0.1.18",
|
|
34
|
+
"@longtable/provider-claude": "0.1.18",
|
|
35
|
+
"@longtable/provider-codex": "0.1.18",
|
|
36
|
+
"@longtable/setup": "0.1.18"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^22.10.1",
|