@rubytech/create-realagent 1.0.771 → 1.0.773
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/package.json +1 -1
- package/payload/platform/plugins/admin/PLUGIN.md +2 -1
- package/payload/platform/plugins/admin/mcp/dist/index.js +131 -20
- package/payload/platform/plugins/admin/mcp/dist/index.js.map +1 -1
- package/payload/platform/plugins/admin/skills/business-profile/SKILL.md +5 -6
- package/payload/platform/plugins/admin/skills/onboarding/SKILL.md +5 -6
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-read.d.ts.map +1 -1
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-read.js +21 -6
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-read.js.map +1 -1
- package/payload/platform/templates/agents/admin/IDENTITY.md +3 -2
- package/payload/server/chunk-2HBD6IRL.js +3242 -0
- package/payload/server/chunk-57S5JC7G.js +9563 -0
- package/payload/server/chunk-PIMJJCOQ.js +9563 -0
- package/payload/server/chunk-XHFMXKXI.js +3179 -0
- package/payload/server/client-pool-J4ZHJ6Z3.js +28 -0
- package/payload/server/client-pool-U3A5YUO7.js +28 -0
- package/payload/server/maxy-edge.js +2 -2
- package/payload/server/public/assets/{admin-CaXX8wc3.js → admin-C4CTVtBu.js} +6 -6
- package/payload/server/public/index.html +1 -1
- package/payload/server/server.js +81 -15
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import {
|
|
2
|
+
_evictAllForTest,
|
|
3
|
+
_poolSnapshotForTest,
|
|
4
|
+
acquireClient,
|
|
5
|
+
evictClient,
|
|
6
|
+
getActiveClient,
|
|
7
|
+
interruptClient,
|
|
8
|
+
pushUserMessage,
|
|
9
|
+
recordCachedTokens,
|
|
10
|
+
recordCrash,
|
|
11
|
+
setInflight,
|
|
12
|
+
startIdleEvictTick,
|
|
13
|
+
stopIdleEvictTick
|
|
14
|
+
} from "./chunk-XHFMXKXI.js";
|
|
15
|
+
export {
|
|
16
|
+
_evictAllForTest,
|
|
17
|
+
_poolSnapshotForTest,
|
|
18
|
+
acquireClient,
|
|
19
|
+
evictClient,
|
|
20
|
+
getActiveClient,
|
|
21
|
+
interruptClient,
|
|
22
|
+
pushUserMessage,
|
|
23
|
+
recordCachedTokens,
|
|
24
|
+
recordCrash,
|
|
25
|
+
setInflight,
|
|
26
|
+
startIdleEvictTick,
|
|
27
|
+
stopIdleEvictTick
|
|
28
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import {
|
|
2
|
+
_evictAllForTest,
|
|
3
|
+
_poolSnapshotForTest,
|
|
4
|
+
acquireClient,
|
|
5
|
+
evictClient,
|
|
6
|
+
getActiveClient,
|
|
7
|
+
interruptClient,
|
|
8
|
+
pushUserMessage,
|
|
9
|
+
recordCachedTokens,
|
|
10
|
+
recordCrash,
|
|
11
|
+
setInflight,
|
|
12
|
+
startIdleEvictTick,
|
|
13
|
+
stopIdleEvictTick
|
|
14
|
+
} from "./chunk-2HBD6IRL.js";
|
|
15
|
+
export {
|
|
16
|
+
_evictAllForTest,
|
|
17
|
+
_poolSnapshotForTest,
|
|
18
|
+
acquireClient,
|
|
19
|
+
evictClient,
|
|
20
|
+
getActiveClient,
|
|
21
|
+
interruptClient,
|
|
22
|
+
pushUserMessage,
|
|
23
|
+
recordCachedTokens,
|
|
24
|
+
recordCrash,
|
|
25
|
+
setInflight,
|
|
26
|
+
startIdleEvictTick,
|
|
27
|
+
stopIdleEvictTick
|
|
28
|
+
};
|
|
@@ -16,8 +16,8 @@ import {
|
|
|
16
16
|
sanitizeClientCorrId,
|
|
17
17
|
streamActionEvents,
|
|
18
18
|
vncLog
|
|
19
|
-
} from "./chunk-
|
|
20
|
-
import "./chunk-
|
|
19
|
+
} from "./chunk-PIMJJCOQ.js";
|
|
20
|
+
import "./chunk-2HBD6IRL.js";
|
|
21
21
|
|
|
22
22
|
// server/edge.ts
|
|
23
23
|
import { createServer, request as httpRequest } from "http";
|