@gotza02/seq-thinking 1.1.10 → 1.1.11

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # MCP Sequential Thinking with Swarm Coordination
2
2
 
3
- [![Version](https://img.shields.io/badge/version-1.1.10-blue.svg)](https://www.npmjs.com/package/@gotza02/seq-thinking)
3
+ [![Version](https://img.shields.io/badge/version-1.1.11-blue.svg)](https://www.npmjs.com/package/@gotza02/seq-thinking)
4
4
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
5
5
  [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org/)
6
6
 
@@ -103,6 +103,9 @@ The system is built on a modular architecture:
103
103
 
104
104
  ## 📝 Changelog
105
105
 
106
+ ### v1.1.11 (2026-02-03)
107
+ - **Fix:** Final fix for binary distribution issues.
108
+
106
109
  ### v1.1.10 (2026-02-03)
107
110
  - **Fix:** Refactored binary distribution to ensure reliable `npx` execution.
108
111
 
package/dist/index.d.ts CHANGED
@@ -13,7 +13,7 @@ export { generateId, generateUUID, generateShortId, clamp, clampConfidence, lerp
13
13
  /**
14
14
  * Library version
15
15
  */
16
- export declare const VERSION = "1.1.10";
16
+ export declare const VERSION = "1.1.11";
17
17
  /**
18
18
  * Default export - MCPServer
19
19
  */
package/dist/index.js CHANGED
@@ -19,7 +19,7 @@ export { generateId, generateUUID, generateShortId, clamp, clampConfidence, lerp
19
19
  /**
20
20
  * Library version
21
21
  */
22
- export const VERSION = '1.1.10';
22
+ export const VERSION = '1.1.11';
23
23
  /**
24
24
  * Default export - MCPServer
25
25
  */
@@ -96,7 +96,7 @@ export class MCPServer {
96
96
  registeredAgents = new Map();
97
97
  dataDir = './data';
98
98
  constructor() {
99
- this.server = new Server({ name: 'mcp-sequential-thinking', version: '1.1.10' }, { capabilities: { tools: {} } });
99
+ this.server = new Server({ name: 'mcp-sequential-thinking', version: '1.1.11' }, { capabilities: { tools: {} } });
100
100
  this.sessionManager = new SessionManager(this.dataDir);
101
101
  this.swarmCoordinator = new SwarmCoordinator(this.dataDir);
102
102
  this.setupHandlers();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotza02/seq-thinking",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "Advanced Sequential Thinking MCP Tool with Swarm Agent Coordination",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "test": "node --test dist/**/*.test.js",
23
23
  "lint": "eslint src/**/*.ts",
24
24
  "clean": "rm -rf dist",
25
- "prepublishOnly": "npm run build && cp dist/mcp-server.js cli.js && chmod +x cli.js"
25
+ "prepublishOnly": "npm run build"
26
26
  },
27
27
  "keywords": [
28
28
  "mcp",