@rubytech/create-realagent 1.0.849 → 1.0.852
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/__tests__/preflight-port-classifier.test.js +163 -0
- package/dist/index.js +132 -29
- package/dist/preflight-port-classifier.js +87 -0
- package/package.json +1 -1
- package/payload/platform/plugins/admin/skills/onboarding/SKILL.md +1 -1
- package/payload/platform/plugins/admin/skills/public-agent-manager/SKILL.md +2 -2
- package/payload/platform/plugins/docs/references/adherence.md +1 -1
- package/payload/platform/plugins/linkedin-import/PLUGIN.md +2 -2
- package/payload/platform/plugins/linkedin-import/skills/linkedin-import/references/connections.md +2 -2
- package/payload/platform/plugins/memory/PLUGIN.md +1 -1
- package/payload/platform/plugins/memory/references/schema-base.md +1 -1
- package/payload/platform/plugins/workflows/PLUGIN.md +1 -1
- package/payload/platform/templates/agents/admin/IDENTITY.md +4 -0
- package/payload/server/chunk-DIRNBH7F.js +1603 -0
- package/payload/server/chunk-X3LVMXI5.js +10578 -0
- package/payload/server/client-pool-7Z6YRUQT.js +34 -0
- package/payload/server/maxy-edge.js +2 -2
- package/payload/server/server.js +3 -3
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
_evictAllForTest,
|
|
3
|
+
_poolSnapshotForTest,
|
|
4
|
+
acquireClient,
|
|
5
|
+
acquireOneShotClient,
|
|
6
|
+
evictClient,
|
|
7
|
+
getActiveClient,
|
|
8
|
+
interruptClient,
|
|
9
|
+
pushUserMessage,
|
|
10
|
+
pushUserToolResult,
|
|
11
|
+
recordCachedTokens,
|
|
12
|
+
recordCrash,
|
|
13
|
+
setInflight,
|
|
14
|
+
startIdleEvictTick,
|
|
15
|
+
stopIdleEvictTick
|
|
16
|
+
} from "./chunk-DIRNBH7F.js";
|
|
17
|
+
import "./chunk-CJWFM3WX.js";
|
|
18
|
+
import "./chunk-JSBRDJBE.js";
|
|
19
|
+
export {
|
|
20
|
+
_evictAllForTest,
|
|
21
|
+
_poolSnapshotForTest,
|
|
22
|
+
acquireClient,
|
|
23
|
+
acquireOneShotClient,
|
|
24
|
+
evictClient,
|
|
25
|
+
getActiveClient,
|
|
26
|
+
interruptClient,
|
|
27
|
+
pushUserMessage,
|
|
28
|
+
pushUserToolResult,
|
|
29
|
+
recordCachedTokens,
|
|
30
|
+
recordCrash,
|
|
31
|
+
setInflight,
|
|
32
|
+
startIdleEvictTick,
|
|
33
|
+
stopIdleEvictTick
|
|
34
|
+
};
|
|
@@ -15,11 +15,11 @@ import {
|
|
|
15
15
|
sanitizeClientCorrId,
|
|
16
16
|
streamActionEvents,
|
|
17
17
|
vncLog
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-X3LVMXI5.js";
|
|
19
19
|
import {
|
|
20
20
|
LOG_DIR,
|
|
21
21
|
WEBSOCKIFY_PORT
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-DIRNBH7F.js";
|
|
23
23
|
import "./chunk-CJWFM3WX.js";
|
|
24
24
|
import "./chunk-JSBRDJBE.js";
|
|
25
25
|
|
package/payload/server/server.js
CHANGED
|
@@ -46,7 +46,7 @@ import {
|
|
|
46
46
|
vncLog,
|
|
47
47
|
waitForExit,
|
|
48
48
|
writeChromiumWrapper
|
|
49
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-X3LVMXI5.js";
|
|
50
50
|
import {
|
|
51
51
|
ACCOUNTS_DIR,
|
|
52
52
|
CDP_PORT,
|
|
@@ -91,7 +91,7 @@ import {
|
|
|
91
91
|
unregisterSession,
|
|
92
92
|
validateAgentSlug,
|
|
93
93
|
validateSession
|
|
94
|
-
} from "./chunk-
|
|
94
|
+
} from "./chunk-DIRNBH7F.js";
|
|
95
95
|
import {
|
|
96
96
|
CLOUDFLARE_TASK_DIAGNOSTICS,
|
|
97
97
|
appendCloudflareSteps,
|
|
@@ -7516,7 +7516,7 @@ var app11 = new Hono();
|
|
|
7516
7516
|
app11.post("/cancel", requireAdminSession, async (c) => {
|
|
7517
7517
|
const session_key = c.var.sessionKey;
|
|
7518
7518
|
try {
|
|
7519
|
-
const { interruptClient: interruptClient2 } = await import("./client-pool-
|
|
7519
|
+
const { interruptClient: interruptClient2 } = await import("./client-pool-7Z6YRUQT.js");
|
|
7520
7520
|
await interruptClient2(session_key);
|
|
7521
7521
|
return c.json({ ok: true });
|
|
7522
7522
|
} catch (err) {
|