@gotza02/sequential-thinking 2026.2.30 → 2026.2.32

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.
@@ -1,2 +1,17 @@
1
1
  #!/usr/bin/env node
2
+ /**
3
+ * Sequential Thinking HTTP Server
4
+ *
5
+ * REST API wrapper for MCP Sequential Thinking components.
6
+ *
7
+ * ARCHITECTURE NOTES:
8
+ * - This server uses in-memory managers (NotesManager, CodeDatabase)
9
+ * - Each process maintains its own state - NOT suitable for multi-process deployments
10
+ * - For clustering (PM2 cluster mode, Kubernetes), use a shared database (Redis, PostgreSQL)
11
+ *
12
+ * CONCURRENCY WARNING:
13
+ * - Single process mode: SAFE
14
+ * - Multi-process mode: DATA WILL BE OUT OF SYNC between processes
15
+ * - Solution: Use external storage with proper locking for multi-process setups
16
+ */
2
17
  export {};