thinknagent 0.1.30 → 0.1.31
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/bin/thinknagent.js +2 -1
- package/package.json +5 -4
package/bin/thinknagent.js
CHANGED
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
const { Command } = require('commander');
|
|
5
5
|
const chalk = require('chalk');
|
|
6
6
|
const ora = require('ora');
|
|
7
|
-
const
|
|
7
|
+
const crypto = require('crypto');
|
|
8
|
+
const uuid = () => (crypto.randomUUID ? crypto.randomUUID() : crypto.randomBytes(16).toString('hex'));
|
|
8
9
|
const store = require('../lib/store');
|
|
9
10
|
const Agent = require('../lib/agent');
|
|
10
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thinknagent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.31",
|
|
4
4
|
"description": "ThinkNCollab server agent & MCP server — metrics, logs, alerts, shell bridge, AI planning",
|
|
5
5
|
"main": "lib/agent.js",
|
|
6
6
|
"author": "ThinkNCollab Team <raman@thinkncollab.com>",
|
|
@@ -14,14 +14,15 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"socket.io-client": "^4.7.5",
|
|
17
|
-
"node-pty": "^1.0.0",
|
|
18
17
|
"systeminformation": "^5.22.7",
|
|
19
18
|
"chokidar": "^3.6.0",
|
|
20
19
|
"chalk": "^4.1.2",
|
|
21
20
|
"commander": "^12.1.0",
|
|
22
21
|
"conf": "^10.2.0",
|
|
23
|
-
"ora": "^5.4.1"
|
|
24
|
-
|
|
22
|
+
"ora": "^5.4.1"
|
|
23
|
+
},
|
|
24
|
+
"optionalDependencies": {
|
|
25
|
+
"node-pty": "^1.0.0"
|
|
25
26
|
},
|
|
26
27
|
"engines": {
|
|
27
28
|
"node": ">=18.0.0"
|