@letta-ai/letta-code 0.27.15 → 0.27.17

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@letta-ai/letta-code",
3
- "version": "0.27.15",
3
+ "version": "0.27.17",
4
4
  "description": "Letta Code is a CLI tool for interacting with stateful Letta agents from the terminal.",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.0",
@@ -63,6 +63,23 @@ const RULES = [
63
63
  description:
64
64
  "telemetry/ is a leaf observer — it must not import from cli/, agent/, websocket/, or tools/ (only backend/api/ for submitting data is permitted)",
65
65
  },
66
+ {
67
+ layer: "sandbox",
68
+ forbidden: [
69
+ "cli",
70
+ "agent",
71
+ "tools",
72
+ "websocket",
73
+ "backend",
74
+ "providers",
75
+ "permissions",
76
+ "channels",
77
+ "cron",
78
+ "telemetry",
79
+ ],
80
+ description:
81
+ "sandbox/ is a pure leaf — it generates sandbox argv/profiles from plain paths. It must not import from any domain layer; callers resolve paths and pass them in",
82
+ },
66
83
  ];
67
84
 
68
85
  // Matches: import ... from "@/forbidden/..." (static imports only)
@@ -80,6 +80,7 @@ const ciDirs = [
80
80
  "src/providers",
81
81
  "src/queue",
82
82
  "src/reminders",
83
+ "src/sandbox",
83
84
  "src/skills",
84
85
  "src/telemetry",
85
86
  "src/test-utils",
@@ -20,6 +20,7 @@ const dirs = [
20
20
  "src/providers",
21
21
  "src/queue",
22
22
  "src/reminders",
23
+ "src/sandbox",
23
24
  "src/skills",
24
25
  "src/telemetry",
25
26
  "src/test-utils",