@frockbot/architecture-checks 0.3.8 → 0.3.10
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 +18 -18
- package/src/memory-boundaries.test.ts +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/architecture-checks",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Automated checks for the constitutional rules that can be enforced mechanically.",
|
|
@@ -9,23 +9,23 @@
|
|
|
9
9
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@frockbot/application-foundation": "0.3.
|
|
13
|
-
"@frockbot/computer-core": "0.3.
|
|
14
|
-
"@frockbot/connection-core": "0.3.
|
|
15
|
-
"@frockbot/kernel-agent-loop": "0.3.
|
|
16
|
-
"@frockbot/kernel-composition": "0.3.
|
|
17
|
-
"@frockbot/kernel-contracts": "0.3.
|
|
18
|
-
"@frockbot/kernel-do": "0.3.
|
|
19
|
-
"@frockbot/plugin-applets": "0.3.
|
|
20
|
-
"@frockbot/plugin-authoring": "0.3.
|
|
21
|
-
"@frockbot/plugin-computer": "0.3.
|
|
22
|
-
"@frockbot/plugin-memory": "0.3.
|
|
23
|
-
"@frockbot/plugin-models": "0.3.
|
|
24
|
-
"@frockbot/plugin-prompt": "0.3.
|
|
25
|
-
"@frockbot/plugin-provider-foundation": "0.3.
|
|
26
|
-
"@frockbot/plugin-provider-ollama-cloud": "0.3.
|
|
27
|
-
"@frockbot/plugin-skills": "0.3.
|
|
28
|
-
"@frockbot/plugin-tools": "0.3.
|
|
12
|
+
"@frockbot/application-foundation": "0.3.10",
|
|
13
|
+
"@frockbot/computer-core": "0.3.10",
|
|
14
|
+
"@frockbot/connection-core": "0.3.10",
|
|
15
|
+
"@frockbot/kernel-agent-loop": "0.3.10",
|
|
16
|
+
"@frockbot/kernel-composition": "0.3.10",
|
|
17
|
+
"@frockbot/kernel-contracts": "0.3.10",
|
|
18
|
+
"@frockbot/kernel-do": "0.3.10",
|
|
19
|
+
"@frockbot/plugin-applets": "0.3.10",
|
|
20
|
+
"@frockbot/plugin-authoring": "0.3.10",
|
|
21
|
+
"@frockbot/plugin-computer": "0.3.10",
|
|
22
|
+
"@frockbot/plugin-memory": "0.3.10",
|
|
23
|
+
"@frockbot/plugin-models": "0.3.10",
|
|
24
|
+
"@frockbot/plugin-prompt": "0.3.10",
|
|
25
|
+
"@frockbot/plugin-provider-foundation": "0.3.10",
|
|
26
|
+
"@frockbot/plugin-provider-ollama-cloud": "0.3.10",
|
|
27
|
+
"@frockbot/plugin-skills": "0.3.10",
|
|
28
|
+
"@frockbot/plugin-tools": "0.3.10",
|
|
29
29
|
"cordis": "4.0.0-rc.8"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
@@ -178,7 +178,12 @@ describe("Memory boundaries", () => {
|
|
|
178
178
|
expect(system).toContain("User memory:");
|
|
179
179
|
expect(system).toContain("Memory:");
|
|
180
180
|
expect(system).toContain("Tim prefers blunt answers.");
|
|
181
|
-
expect(system).toContain("
|
|
181
|
+
expect(system).toContain("The gym build starts in spring.");
|
|
182
|
+
// A shared fact is credited by name or not at all. This deployment gave
|
|
183
|
+
// the store no Bot names, so the fact is uncredited — never tagged with a
|
|
184
|
+
// sibling's id, which the model reads as a name and says out loud.
|
|
185
|
+
expect(system).not.toContain("[via bot-1]");
|
|
186
|
+
expect(system).not.toContain("bot-1");
|
|
182
187
|
|
|
183
188
|
// …and it is recorded in durable state, generations included.
|
|
184
189
|
const injected = handle.agent.session.events.find(
|