@kya-os/mcp-i 1.2.9 → 1.2.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/dist/cache/cloudflare-kv.d.ts +90 -0
- package/dist/cache/cloudflare-kv.js +98 -0
- package/dist/cache/index.d.ts +1 -1
- package/dist/cache/index.js +2 -2
- package/dist/compiler/get-webpack-config/get-entries.js +9 -5
- package/dist/compiler/get-webpack-config/get-externals.d.ts +5 -3
- package/dist/compiler/get-webpack-config/get-externals.js +14 -21
- package/dist/compiler/get-webpack-config/plugins.js +10 -12
- package/dist/runtime/adapter-express.js +1 -1
- package/dist/runtime/adapter-nextjs.js +1 -1
- package/dist/runtime/adapter-nextjs.js.LICENSE.txt +0 -6
- package/dist/runtime/http.js +1 -1
- package/dist/runtime/identity.d.ts +1 -0
- package/dist/runtime/identity.js +6 -4
- package/dist/runtime/stdio.js +1 -1
- package/dist/runtime/utils/server.js +32 -16
- package/dist/runtime/utils/tools.js +16 -5
- package/package.json +1 -1
package/dist/runtime/identity.js
CHANGED
|
@@ -40,10 +40,12 @@ class IdentityManager {
|
|
|
40
40
|
devIdentityPath: resolvedDevIdentityPath,
|
|
41
41
|
};
|
|
42
42
|
// Debug: log the actual config being used
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
if (this.config.debug) {
|
|
44
|
+
console.error("[IdentityManager] Constructed with config:", {
|
|
45
|
+
environment: this.config.environment,
|
|
46
|
+
devIdentityPath: this.config.devIdentityPath,
|
|
47
|
+
});
|
|
48
|
+
}
|
|
47
49
|
}
|
|
48
50
|
/**
|
|
49
51
|
* Load or generate agent identity
|