@vellumai/assistant 0.4.19 → 0.4.21
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/src/__tests__/system-prompt.test.ts +2 -7
- package/src/__tests__/tool-execution-abort-cleanup.test.ts +0 -1
- package/src/agent/loop.ts +324 -163
- package/src/config/bundled-skills/app-builder/SKILL.md +7 -5
- package/src/config/bundled-skills/app-builder/TOOLS.json +2 -2
- package/src/config/system-prompt.ts +563 -539
- package/src/daemon/session-surfaces.ts +28 -0
- package/src/daemon/session.ts +255 -191
- package/src/daemon/tool-side-effects.ts +3 -13
- package/src/security/secure-keys.ts +27 -3
- package/src/tools/apps/definitions.ts +5 -0
- package/src/tools/apps/executors.ts +18 -22
- package/src/__tests__/response-tier.test.ts +0 -195
- package/src/daemon/response-tier.ts +0 -250
package/package.json
CHANGED
|
@@ -240,13 +240,8 @@ describe("buildSystemPrompt", () => {
|
|
|
240
240
|
expect(section).toContain("Do NOT improvise Twilio setup instructions");
|
|
241
241
|
});
|
|
242
242
|
|
|
243
|
-
test("
|
|
244
|
-
const result = buildSystemPrompt(
|
|
245
|
-
expect(result).not.toContain("## Routing: Phone Calls");
|
|
246
|
-
});
|
|
247
|
-
|
|
248
|
-
test("includes memory persistence section in high tier", () => {
|
|
249
|
-
const result = buildSystemPrompt("high");
|
|
243
|
+
test("includes memory persistence section", () => {
|
|
244
|
+
const result = buildSystemPrompt();
|
|
250
245
|
expect(result).toContain("## Memory Persistence");
|
|
251
246
|
expect(result).toContain("memory_save");
|
|
252
247
|
expect(result).toContain("Saved > unsaved. Always.");
|