clay-server 3.4.0-beta.24 → 3.4.0-beta.25
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.
|
@@ -991,6 +991,9 @@ function createKiroAdapter(opts) {
|
|
|
991
991
|
return _fetchKasToken(_binaryPath, _cwd);
|
|
992
992
|
});
|
|
993
993
|
await _acp.start();
|
|
994
|
+
// kiro-cli boots the KAS server, MCP subsystem and SQLite before it
|
|
995
|
+
// answers initialize, which measures ~20s cold. 30s left no margin and
|
|
996
|
+
// timed out under load, so allow a wide window here.
|
|
994
997
|
await _acp.send("initialize", {
|
|
995
998
|
protocolVersion: 1,
|
|
996
999
|
clientInfo: { name: "clay", version: "1.0.0" },
|
|
@@ -1000,7 +1003,7 @@ function createKiroAdapter(opts) {
|
|
|
1000
1003
|
// calls, so implementing them later means bypassing canUseTool and
|
|
1001
1004
|
// needs explicit cwd confinement first.
|
|
1002
1005
|
clientCapabilities: { fs: { readTextFile: false, writeTextFile: false } },
|
|
1003
|
-
},
|
|
1006
|
+
}, 90000);
|
|
1004
1007
|
_initialized = true;
|
|
1005
1008
|
|
|
1006
1009
|
if (_shuttingDown) throw createShutdownError();
|
package/package.json
CHANGED