@gotza02/sequential-thinking 2026.2.21 โ 2026.2.22
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/README.md +1 -0
- package/dist/http-server.js +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,6 +90,7 @@ npm run start:http
|
|
|
90
90
|
## ๐งช Testing & Robustness
|
|
91
91
|
This project is rigorously tested using **TestSprite** and **Vitest**.
|
|
92
92
|
- **Current Status:** โ
**100% Pass Rate** (10/10 core requirements).
|
|
93
|
+
- **Test Isolation:** Graph tests now run in isolated temporary environments to prevent race conditions.
|
|
93
94
|
- **Path Security:** Enhanced `validatePath` with symlink resolution (`realpathSync`) for stable operation in restricted environments like Termux/Android.
|
|
94
95
|
- **Error Handling:** Improved HTTP status mapping and descriptive error reporting.
|
|
95
96
|
|
package/dist/http-server.js
CHANGED
|
@@ -67,7 +67,13 @@ app.get('/api/thinking/history', async (req, res) => {
|
|
|
67
67
|
thought: t.thought,
|
|
68
68
|
type: t.thoughtType,
|
|
69
69
|
thoughtNumber: t.thoughtNumber,
|
|
70
|
-
totalThoughts: t.totalThoughts
|
|
70
|
+
totalThoughts: t.totalThoughts,
|
|
71
|
+
nextThoughtNeeded: t.nextThoughtNeeded,
|
|
72
|
+
isRevision: t.isRevision,
|
|
73
|
+
revisesThought: t.revisesThought,
|
|
74
|
+
branchFromThought: t.branchFromThought,
|
|
75
|
+
branchId: t.branchId,
|
|
76
|
+
blockId: t.blockId
|
|
71
77
|
}));
|
|
72
78
|
res.json(transformedHistory);
|
|
73
79
|
}
|