@adhdev/daemon-standalone 0.9.82-rc.99 → 1.0.0
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/index.js +86588 -43350
- package/dist/index.js.map +1 -1
- package/package.json +7 -5
- package/public/assets/index-DuHZKmcF.js +121 -0
- package/public/assets/index-p-ehiI_L.css +1 -0
- package/public/assets/{terminal-D46M5EWH.js → terminal-CqjiB824.js} +21 -21
- package/public/assets/vendor-B6OqYKvq.js +2776 -0
- package/public/index.html +3 -3
- package/public/snake.html +229 -0
- package/vendor/mcp-server/index.js +6539 -2572
- package/vendor/mcp-server/index.js.map +1 -1
- package/vendor/mcp-server/package.json +3 -2
- package/vendor/session-host-daemon/index.d.mts +0 -10
- package/vendor/session-host-daemon/index.d.ts +0 -10
- package/vendor/session-host-daemon/index.js +305 -196
- package/vendor/session-host-daemon/index.js.map +1 -1
- package/vendor/session-host-daemon/index.mjs +299 -188
- package/vendor/session-host-daemon/index.mjs.map +1 -1
- package/public/assets/index-Bso1b8Lh.css +0 -1
- package/public/assets/index-DaIkPFUd.js +0 -99
- package/public/assets/vendor-CgiI0UIA.js +0 -2745
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhdev/mcp-server",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.82",
|
|
4
4
|
"description": "ADHDev MCP server \u2014 expose IDE agents as MCP tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsup",
|
|
11
11
|
"dev": "tsx src/index.ts",
|
|
12
|
-
"test": "node --import tsx --test test/*.test.ts",
|
|
12
|
+
"test": "node --import tsx --import ./test/setup-test-env.ts --test test/*.test.ts",
|
|
13
13
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"author": "vilmire",
|
|
29
29
|
"license": "AGPL-3.0-or-later",
|
|
30
30
|
"dependencies": {
|
|
31
|
+
"@adhdev/daemon-core": "*",
|
|
31
32
|
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
@@ -7,7 +7,6 @@ interface SessionHostServerOptions {
|
|
|
7
7
|
appName?: string;
|
|
8
8
|
}
|
|
9
9
|
declare class SessionHostServer extends EventEmitter {
|
|
10
|
-
private static readonly MAX_RECENT_DIAGNOSTICS;
|
|
11
10
|
readonly endpoint: SessionHostEndpoint;
|
|
12
11
|
readonly registry: SessionHostRegistry;
|
|
13
12
|
private runtimes;
|
|
@@ -34,14 +33,7 @@ declare class SessionHostServer extends EventEmitter {
|
|
|
34
33
|
private writeEnvelopeSafely;
|
|
35
34
|
private schedulePersist;
|
|
36
35
|
private persistNow;
|
|
37
|
-
private getSessionHostRecoveryLabel;
|
|
38
|
-
private getSessionSurfaceKind;
|
|
39
|
-
private annotateSessionSurface;
|
|
40
|
-
private sanitizeDiagnosticsRecord;
|
|
41
36
|
private getHostDiagnostics;
|
|
42
|
-
private getRequestSessionId;
|
|
43
|
-
private getRequestClientId;
|
|
44
|
-
private pushRecent;
|
|
45
37
|
private recordHostLog;
|
|
46
38
|
private recordRequestTrace;
|
|
47
39
|
private scheduleNoOutputInputDiagnostic;
|
|
@@ -53,9 +45,7 @@ declare class SessionHostServer extends EventEmitter {
|
|
|
53
45
|
private restartRuntime;
|
|
54
46
|
private pruneDuplicateSessions;
|
|
55
47
|
private restorePersistedRuntimes;
|
|
56
|
-
private compareDuplicateCandidates;
|
|
57
48
|
private pruneDuplicateRuntime;
|
|
58
|
-
private buildPayloadFromRecord;
|
|
59
49
|
private startRuntime;
|
|
60
50
|
}
|
|
61
51
|
|
|
@@ -7,7 +7,6 @@ interface SessionHostServerOptions {
|
|
|
7
7
|
appName?: string;
|
|
8
8
|
}
|
|
9
9
|
declare class SessionHostServer extends EventEmitter {
|
|
10
|
-
private static readonly MAX_RECENT_DIAGNOSTICS;
|
|
11
10
|
readonly endpoint: SessionHostEndpoint;
|
|
12
11
|
readonly registry: SessionHostRegistry;
|
|
13
12
|
private runtimes;
|
|
@@ -34,14 +33,7 @@ declare class SessionHostServer extends EventEmitter {
|
|
|
34
33
|
private writeEnvelopeSafely;
|
|
35
34
|
private schedulePersist;
|
|
36
35
|
private persistNow;
|
|
37
|
-
private getSessionHostRecoveryLabel;
|
|
38
|
-
private getSessionSurfaceKind;
|
|
39
|
-
private annotateSessionSurface;
|
|
40
|
-
private sanitizeDiagnosticsRecord;
|
|
41
36
|
private getHostDiagnostics;
|
|
42
|
-
private getRequestSessionId;
|
|
43
|
-
private getRequestClientId;
|
|
44
|
-
private pushRecent;
|
|
45
37
|
private recordHostLog;
|
|
46
38
|
private recordRequestTrace;
|
|
47
39
|
private scheduleNoOutputInputDiagnostic;
|
|
@@ -53,9 +45,7 @@ declare class SessionHostServer extends EventEmitter {
|
|
|
53
45
|
private restartRuntime;
|
|
54
46
|
private pruneDuplicateSessions;
|
|
55
47
|
private restorePersistedRuntimes;
|
|
56
|
-
private compareDuplicateCandidates;
|
|
57
48
|
private pruneDuplicateRuntime;
|
|
58
|
-
private buildPayloadFromRecord;
|
|
59
49
|
private startRuntime;
|
|
60
50
|
}
|
|
61
51
|
|