@almadar/orb 6.5.1 → 6.6.0

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": "@almadar/orb",
3
- "version": "6.5.1",
3
+ "version": "6.6.0",
4
4
  "description": "Orb CLI - deterministic when it can be, intelligent when it needs to be",
5
5
  "license": "BSL-1.1",
6
6
  "repository": {
@@ -49,10 +49,10 @@
49
49
  "node": ">=16.0.0"
50
50
  },
51
51
  "optionalDependencies": {
52
- "@almadar/orb-darwin-x64": "6.5.1",
53
- "@almadar/orb-darwin-arm64": "6.5.1",
54
- "@almadar/orb-linux-x64": "6.5.1",
55
- "@almadar/orb-linux-arm64": "6.5.1",
56
- "@almadar/orb-windows-x64": "6.5.1"
52
+ "@almadar/orb-darwin-x64": "6.6.0",
53
+ "@almadar/orb-darwin-arm64": "6.6.0",
54
+ "@almadar/orb-linux-x64": "6.6.0",
55
+ "@almadar/orb-linux-arm64": "6.6.0",
56
+ "@almadar/orb-windows-x64": "6.6.0"
57
57
  }
58
58
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/shell",
3
- "version": "2.7.1",
3
+ "version": "2.10.0",
4
4
  "private": false,
5
5
  "description": "Minimal full-stack shell template for Almadar applications",
6
6
  "packageManager": "pnpm@10.30.3",
@@ -13,11 +13,11 @@
13
13
  "test:watch": "vitest"
14
14
  },
15
15
  "dependencies": {
16
- "@almadar/ui": ">=3.3.1",
17
- "@almadar/syntax": ">=1.2.1",
16
+ "@almadar/ui": ">=4.30.0",
17
+ "@almadar/syntax": ">=1.4.0",
18
18
  "@almadar/evaluator": ">=2.9.2",
19
- "@almadar/patterns": ">=2.14.1",
20
- "@almadar/core": ">=5.5.0",
19
+ "@almadar/patterns": ">=2.21.0",
20
+ "@almadar/core": ">=7.12.0",
21
21
  "firebase": "^11.4.0",
22
22
  "@tanstack/react-query": "^5.67.3",
23
23
  "react": "^19.0.0",
@@ -42,7 +42,7 @@
42
42
  "postprocessing": "^6.39.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@almadar/eslint-plugin": ">=2.3.0",
45
+ "@almadar/eslint-plugin": ">=2.8.0",
46
46
  "@typescript-eslint/parser": "8.56.0",
47
47
  "eslint": "10.0.0",
48
48
  "@testing-library/react": "^16.1.0",
@@ -5,8 +5,15 @@
5
5
  @tailwind components;
6
6
  @tailwind utilities;
7
7
 
8
- /* Page-level layout: padding and max-width for main content area */
9
- .ui-slot-main {
8
+ /* Page-level layout: readable max-width column with breathing room.
9
+ *
10
+ * The :not() selectors below SKIP the constraint when the slot's
11
+ * `data-pattern` indicates it owns its own page chrome
12
+ * (dashboard-layout, game-shell). Those patterns render a fixed sidebar
13
+ * + edge-to-edge content and would look "boxed in" inside a 80rem
14
+ * column. For everything else (forms, plain content, non-chrome list
15
+ * pages) the readable column applies. */
16
+ .ui-slot-main:not([data-pattern="dashboard-layout"]):not([data-pattern="game-shell"]) {
10
17
  padding: 1.5rem 1rem;
11
18
  max-width: 80rem;
12
19
  margin-left: auto;
@@ -14,13 +21,13 @@
14
21
  }
15
22
 
16
23
  @media (min-width: 768px) {
17
- .ui-slot-main {
24
+ .ui-slot-main:not([data-pattern="dashboard-layout"]):not([data-pattern="game-shell"]) {
18
25
  padding: 1.5rem 1.5rem;
19
26
  }
20
27
  }
21
28
 
22
29
  @media (min-width: 1024px) {
23
- .ui-slot-main {
30
+ .ui-slot-main:not([data-pattern="dashboard-layout"]):not([data-pattern="game-shell"]) {
24
31
  padding: 2rem 2rem;
25
32
  }
26
33
  }
@@ -13,11 +13,11 @@
13
13
  "test:watch": "vitest"
14
14
  },
15
15
  "dependencies": {
16
- "@almadar/server": ">=2.4.0",
17
- "@almadar/runtime": ">=4.3.0",
16
+ "@almadar/server": ">=2.9.0",
17
+ "@almadar/runtime": ">=6.3.0",
18
18
  "@almadar/evaluator": ">=2.9.2",
19
- "@almadar/core": ">=5.5.0",
20
- "@almadar/integrations": ">=2.3.0",
19
+ "@almadar/core": ">=7.12.0",
20
+ "@almadar/integrations": ">=2.6.3",
21
21
  "cors": "^2.8.5",
22
22
  "dotenv": "^16.4.7",
23
23
  "express": "^4.21.2",
@@ -25,7 +25,7 @@
25
25
  "zod": "^3.22.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@almadar/eslint-plugin": ">=2.3.0",
28
+ "@almadar/eslint-plugin": ">=2.8.0",
29
29
  "@typescript-eslint/parser": "8.56.0",
30
30
  "@types/cors": "^2.8.17",
31
31
  "@types/express": "^5.0.0",
@@ -36,4 +36,4 @@
36
36
  "typescript": "^5.7.3",
37
37
  "vitest": "^2.1.9"
38
38
  }
39
- }
39
+ }
@@ -5,7 +5,7 @@
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
7
7
  "dependencies": {
8
- "@almadar/core": ">=5.5.0",
8
+ "@almadar/core": ">=7.12.0",
9
9
  "zod": "^3.22.0"
10
10
  }
11
11
  }
@@ -23,20 +23,20 @@ importers:
23
23
  packages/client:
24
24
  dependencies:
25
25
  '@almadar/core':
26
- specifier: '>=5.3.2'
27
- version: 5.3.2
26
+ specifier: '>=7.12.0'
27
+ version: 7.12.0
28
28
  '@almadar/evaluator':
29
29
  specifier: '>=2.9.2'
30
30
  version: 2.9.2
31
31
  '@almadar/patterns':
32
- specifier: '>=2.14.1'
33
- version: 2.14.2
32
+ specifier: '>=2.21.0'
33
+ version: 2.21.0
34
34
  '@almadar/syntax':
35
- specifier: '>=1.2.1'
36
- version: 1.2.1
35
+ specifier: '>=1.4.0'
36
+ version: 1.4.0
37
37
  '@almadar/ui':
38
- specifier: '>=3.2.2'
39
- version: 3.2.2(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.91.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)
38
+ specifier: '>=4.30.0'
39
+ version: 4.30.0(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.91.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)
40
40
  '@monaco-editor/react':
41
41
  specifier: ^4.7.0
42
42
  version: 4.7.0(monaco-editor@0.52.2)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
@@ -105,8 +105,8 @@ importers:
105
105
  version: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.6.0(react@19.2.4))
106
106
  devDependencies:
107
107
  '@almadar/eslint-plugin':
108
- specifier: '>=2.3.0'
109
- version: 2.5.0(eslint@10.0.0(jiti@1.21.7))
108
+ specifier: '>=2.8.0'
109
+ version: 2.8.0(eslint@10.0.0(jiti@1.21.7))
110
110
  '@testing-library/jest-dom':
111
111
  specifier: ^6.6.3
112
112
  version: 6.9.1
@@ -153,20 +153,20 @@ importers:
153
153
  packages/server:
154
154
  dependencies:
155
155
  '@almadar/core':
156
- specifier: '>=5.3.2'
157
- version: 5.3.2
156
+ specifier: '>=7.12.0'
157
+ version: 7.12.0
158
158
  '@almadar/evaluator':
159
159
  specifier: '>=2.9.2'
160
160
  version: 2.9.2
161
161
  '@almadar/integrations':
162
- specifier: '>=2.3.0'
163
- version: 2.3.0(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.19.0)
162
+ specifier: '>=2.6.3'
163
+ version: 2.6.3(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.19.0)
164
164
  '@almadar/runtime':
165
- specifier: '>=4.3.0'
166
- version: 4.3.0(express@4.22.1)
165
+ specifier: '>=6.3.0'
166
+ version: 6.3.0(express@4.22.1)
167
167
  '@almadar/server':
168
- specifier: '>=2.4.0'
169
- version: 2.4.0(express@4.22.1)
168
+ specifier: '>=2.9.0'
169
+ version: 2.9.0(express@4.22.1)
170
170
  cors:
171
171
  specifier: ^2.8.5
172
172
  version: 2.8.6
@@ -184,8 +184,8 @@ importers:
184
184
  version: 3.25.76
185
185
  devDependencies:
186
186
  '@almadar/eslint-plugin':
187
- specifier: '>=2.3.0'
188
- version: 2.5.0(eslint@10.0.0(jiti@1.21.7))
187
+ specifier: '>=2.8.0'
188
+ version: 2.8.0(eslint@10.0.0(jiti@1.21.7))
189
189
  '@types/cors':
190
190
  specifier: ^2.8.17
191
191
  version: 2.8.19
@@ -217,8 +217,8 @@ importers:
217
217
  packages/shared:
218
218
  dependencies:
219
219
  '@almadar/core':
220
- specifier: '>=5.3.2'
221
- version: 5.3.2
220
+ specifier: '>=7.12.0'
221
+ version: 7.12.0
222
222
  zod:
223
223
  specifier: ^3.22.0
224
224
  version: 3.25.76
@@ -232,47 +232,41 @@ packages:
232
232
  resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
233
233
  engines: {node: '>=10'}
234
234
 
235
- '@almadar/core@5.3.2':
236
- resolution: {integrity: sha512-Gx4Q89qikFlznH2byZK3QQQ/VAmSH3J1Lu53SvwuksIqfl82M7Nwx8FP09FLeanOWN6YQrcsEB2LX7OkELuxxw==}
235
+ '@almadar/core@7.12.0':
236
+ resolution: {integrity: sha512-kEXO+7Ji3WTm4WWGFNM7qw5sqSbi9CJ+rONzRB0jkwM5p/65YNEhBBppkZTr4T+LXHGqMQ5/AA/4W2NExzljIA==}
237
237
 
238
- '@almadar/eslint-plugin@2.5.0':
239
- resolution: {integrity: sha512-rt5ATRUHyhke7yCBn5qUXyjKDEQaFXs8wqOWtd/Yh5IuuMn9p2Q7UupYUzfCwLmBXBYjwLxpat/A7En4lWrcFA==}
238
+ '@almadar/eslint-plugin@2.8.0':
239
+ resolution: {integrity: sha512-8abtGsVP+YBaUEchSfGfQV3ZHEPtWt+4Swtu3P0AFofr+OMSfHLnor4aIwULzag+nHD9FQ7cQkVCTfBVgTHgiw==}
240
240
  peerDependencies:
241
241
  eslint: '>=8.0.0'
242
242
 
243
243
  '@almadar/evaluator@2.9.2':
244
244
  resolution: {integrity: sha512-yzhTtWbhvqCS/FoAK/pIyVuDV+8QwC/Csfcs/tUJOwq7fGHBhKwOrxgRqK/DNp1g7p2W/yvRPqQMUJVK1ynTQA==}
245
245
 
246
- '@almadar/integrations@2.3.0':
247
- resolution: {integrity: sha512-ovUYloVbXzKhwoKPYZFRj466fE9d+/5rO8XF20uiHgVv+bzAzfyqM0qBpUbJAmoXgOQFqv3s3Vlv48jfE9c3ow==}
246
+ '@almadar/integrations@2.6.3':
247
+ resolution: {integrity: sha512-HScgW76InRz9dOK2571HfAvN3hq9rorDS6hrOj0UXxo4zZpKuKUxwYPtpxhD6ceewF/oxyU8Km/qbK/v5wpiKw==}
248
248
 
249
- '@almadar/llm@2.5.0':
250
- resolution: {integrity: sha512-BywM6Lz4T57zvWHd5BD0SRSEx+mtW3oaL8icoSSpnjikS0urGdRRfSprF+vtqNpu/MXEsCTYHpNXFqv+Dq+Obw==}
249
+ '@almadar/llm@2.9.1':
250
+ resolution: {integrity: sha512-8RIDz2iCcKD3Yl16vBebeUF9pr6aZr5YGjtpIqO8NlTXNJ/xJhz//Qb5GPBnr9IvYUM7DUhsS6y+4d4cl6qK4A==}
251
251
  peerDependencies:
252
- '@almadar/core': '>=2.0.0'
252
+ '@almadar/core': '>=4.8.1'
253
253
  peerDependenciesMeta:
254
254
  '@almadar/core':
255
255
  optional: true
256
256
 
257
- '@almadar/operators@2.1.3':
258
- resolution: {integrity: sha512-0wjRClcWT/DcYtmnTku/IIXWGCLzMzai/a/KwP4NorkqjDIEY9+vmAui4qB6rePhkT2aOfLb4sP8uX7vvyG7nw==}
257
+ '@almadar/patterns@2.21.0':
258
+ resolution: {integrity: sha512-Xfki3Bd410UkNXpqLafAQbT7RtzVh0oZCceQx6Nz6lCWRa42BXvVLeqrzKS//TB5AbahSQkzBJHqOz2sJm5VxQ==}
259
259
 
260
- '@almadar/patterns@2.10.0':
261
- resolution: {integrity: sha512-RwxzjlHM/5th5Ka5oh4ocHKWx8P58CS9SNpGrtScHSiW/RHP7nVpsr+fdcqeDvV79wC+BbnSCIWXeqwX8BipRg==}
262
-
263
- '@almadar/patterns@2.14.2':
264
- resolution: {integrity: sha512-3s1O0U1klHJDZjJY/714Hsdw2/ufh1iWAOLScVdOTNl/daj/hljvc2dkJdsyEXuSY+WRiNdY630aYrrEtKIvVA==}
265
-
266
- '@almadar/runtime@4.3.0':
267
- resolution: {integrity: sha512-J6sKMaGaRLaU+lhMh8VyHy8u2BlhpKcGbduQZZScTySrhAYBLCMyxndlDgHUL36jRTkEUqJv4G7CZCxbqRfTiQ==}
260
+ '@almadar/runtime@6.3.0':
261
+ resolution: {integrity: sha512-NZF7/hm3FTQp7KE5V3hVKoKAbPaEcvGImAjHFVhMXobotjwJUFUsjRWaTgAKWu1qdO3u6mAnu0mnm55qrTv2cg==}
268
262
  peerDependencies:
269
- express: ^4.0.0
263
+ express: ^5.0.0
270
264
 
271
- '@almadar/server@2.4.0':
272
- resolution: {integrity: sha512-cg2dqBsvEo0ZoggzKCtSVlLTlhQz58IRlHg0llXtGmhpTQVIGOsfRiTeaQl6AxoxRiWLBZTJK0dOTV3rzKbWMQ==}
265
+ '@almadar/server@2.9.0':
266
+ resolution: {integrity: sha512-C69C3zDr6XqY67c2meb9o5e/p8M+hdIeLMvCuUVk76U25P4nZylWMjUJGXHVNDuPVc8erCQhpI109TYdg+CgCw==}
273
267
  peerDependencies:
274
268
  '@almadar-io/agent': '>=5.5.6'
275
- express: ^4.0.0
269
+ express: ^5.0.0
276
270
  peerDependenciesMeta:
277
271
  '@almadar-io/agent':
278
272
  optional: true
@@ -280,16 +274,16 @@ packages:
280
274
  '@almadar/std@7.2.0':
281
275
  resolution: {integrity: sha512-Gs+1GyDEYxTW+mSf4HDKAmCSzbCFGtKKzwF083prTtlvAieYA0zBoGC3XH6MI0i1deARPTbpTV+PAhVArLzDaQ==}
282
276
 
283
- '@almadar/syntax@1.2.1':
284
- resolution: {integrity: sha512-wd1pmaG8rY2Yp2MScHEurDg3XnJ7xBS92y7bzxNV+pVE2p/I1fW6ywat/weGxpaq8sk7Pq7sFo4iy2H1SyFj/g==}
277
+ '@almadar/std@8.4.2':
278
+ resolution: {integrity: sha512-cz48Ck/+hT9QpHoC1V9aBaTBaUPO797lNSzpNfLSHWb2JuOKkmioY45rMZTDOodHD2Qt2nUkc56BPQ4adlt7gw==}
285
279
 
286
280
  '@almadar/syntax@1.4.0':
287
281
  resolution: {integrity: sha512-r79cxWTDykcnBpWzWV1foHufBMWcgf/88AFT/lRAxyeIJIkwYA5lQjIJIonWh8z4adgSQw3rtl/KjlCy3mG+Uw==}
288
282
 
289
- '@almadar/ui@3.2.2':
290
- resolution: {integrity: sha512-zCSL22dllQoNYq+UC7K3tQrNLtqDVY5sW6Mh0zyrqRgChT6KLJT02llPEGmhQcbCqVwP0XCJXlkafbXSvuB7qA==}
283
+ '@almadar/ui@4.30.0':
284
+ resolution: {integrity: sha512-/KxoMiOk/hHTJjA1dEf58TjEz6uQs04EHBFwskW24X7O2pP+7PnI/ek2RVhLcPD6q2L1nBHGHkmSKQWeVeVfug==}
291
285
  peerDependencies:
292
- '@react-three/drei': ^9.92.0 || ^10.0.0
286
+ '@react-three/drei': ^10.7.7
293
287
  '@react-three/fiber': ^9.0.0
294
288
  '@react-three/postprocessing': ^3.0.0
295
289
  '@tanstack/react-query': ^5.0.0
@@ -4161,26 +4155,26 @@ snapshots:
4161
4155
 
4162
4156
  '@alloc/quick-lru@5.2.0': {}
4163
4157
 
4164
- '@almadar/core@5.3.2':
4158
+ '@almadar/core@7.12.0':
4165
4159
  dependencies:
4166
- '@almadar/patterns': 2.14.2
4160
+ '@almadar/patterns': 2.21.0
4167
4161
  zod: 3.25.76
4168
4162
 
4169
- '@almadar/eslint-plugin@2.5.0(eslint@10.0.0(jiti@1.21.7))':
4163
+ '@almadar/eslint-plugin@2.8.0(eslint@10.0.0(jiti@1.21.7))':
4170
4164
  dependencies:
4171
4165
  eslint: 10.0.0(jiti@1.21.7)
4172
4166
  jsonc-eslint-parser: 3.1.0
4173
4167
 
4174
4168
  '@almadar/evaluator@2.9.2':
4175
4169
  dependencies:
4176
- '@almadar/core': 5.3.2
4170
+ '@almadar/core': 7.12.0
4177
4171
  '@almadar/std': 7.2.0
4178
4172
 
4179
- '@almadar/integrations@2.3.0(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.19.0)':
4173
+ '@almadar/integrations@2.6.3(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.19.0)':
4180
4174
  dependencies:
4181
- '@almadar/core': 5.3.2
4182
- '@almadar/llm': 2.5.0(@almadar/core@5.3.2)(@opentelemetry/api@1.9.0)(ws@8.19.0)
4183
- '@almadar/patterns': 2.10.0
4175
+ '@almadar/core': 7.12.0
4176
+ '@almadar/llm': 2.9.1(@almadar/core@7.12.0)(@opentelemetry/api@1.9.0)(ws@8.19.0)
4177
+ '@almadar/patterns': 2.21.0
4184
4178
  '@sendgrid/mail': 8.1.6
4185
4179
  dotenv: 16.6.1
4186
4180
  googleapis: 144.0.0
@@ -4199,7 +4193,7 @@ snapshots:
4199
4193
  - supports-color
4200
4194
  - ws
4201
4195
 
4202
- '@almadar/llm@2.5.0(@almadar/core@5.3.2)(@opentelemetry/api@1.9.0)(ws@8.19.0)':
4196
+ '@almadar/llm@2.9.1(@almadar/core@7.12.0)(@opentelemetry/api@1.9.0)(ws@8.19.0)':
4203
4197
  dependencies:
4204
4198
  '@anthropic-ai/sdk': 0.52.0
4205
4199
  '@langchain/anthropic': 1.3.25(@langchain/core@1.1.35(@opentelemetry/api@1.9.0)(openai@6.32.0(ws@8.19.0)(zod@3.25.76))(ws@8.19.0))
@@ -4208,32 +4202,28 @@ snapshots:
4208
4202
  openai: 6.32.0(ws@8.19.0)(zod@3.25.76)
4209
4203
  zod: 3.25.76
4210
4204
  optionalDependencies:
4211
- '@almadar/core': 5.3.2
4205
+ '@almadar/core': 7.12.0
4212
4206
  transitivePeerDependencies:
4213
4207
  - '@opentelemetry/api'
4214
4208
  - '@opentelemetry/exporter-trace-otlp-proto'
4215
4209
  - '@opentelemetry/sdk-trace-base'
4216
4210
  - ws
4217
4211
 
4218
- '@almadar/operators@2.1.3': {}
4219
-
4220
- '@almadar/patterns@2.10.0': {}
4221
-
4222
- '@almadar/patterns@2.14.2':
4212
+ '@almadar/patterns@2.21.0':
4223
4213
  dependencies:
4224
- '@almadar/core': 5.3.2
4214
+ '@almadar/core': 7.12.0
4225
4215
 
4226
- '@almadar/runtime@4.3.0(express@4.22.1)':
4216
+ '@almadar/runtime@6.3.0(express@4.22.1)':
4227
4217
  dependencies:
4228
- '@almadar/core': 5.3.2
4218
+ '@almadar/core': 7.12.0
4229
4219
  '@almadar/evaluator': 2.9.2
4230
- '@almadar/std': 7.2.0
4220
+ '@almadar/std': 8.4.2
4231
4221
  '@faker-js/faker': 9.9.0
4232
4222
  express: 4.22.1
4233
4223
 
4234
- '@almadar/server@2.4.0(express@4.22.1)':
4224
+ '@almadar/server@2.9.0(express@4.22.1)':
4235
4225
  dependencies:
4236
- '@almadar/core': 5.3.2
4226
+ '@almadar/core': 7.12.0
4237
4227
  '@faker-js/faker': 9.9.0
4238
4228
  cors: 2.8.6
4239
4229
  dotenv: 16.6.1
@@ -4250,27 +4240,25 @@ snapshots:
4250
4240
 
4251
4241
  '@almadar/std@7.2.0':
4252
4242
  dependencies:
4253
- '@almadar/core': 5.3.2
4243
+ '@almadar/core': 7.12.0
4254
4244
 
4255
- '@almadar/syntax@1.2.1':
4245
+ '@almadar/std@8.4.2':
4256
4246
  dependencies:
4257
- '@almadar/core': 5.3.2
4258
- '@almadar/operators': 2.1.3
4259
- '@almadar/patterns': 2.14.2
4247
+ '@almadar/core': 7.12.0
4260
4248
 
4261
4249
  '@almadar/syntax@1.4.0':
4262
4250
  dependencies:
4263
- '@almadar/core': 5.3.2
4264
- '@almadar/patterns': 2.14.2
4265
- '@almadar/std': 7.2.0
4251
+ '@almadar/core': 7.12.0
4252
+ '@almadar/patterns': 2.21.0
4253
+ '@almadar/std': 8.4.2
4266
4254
 
4267
- '@almadar/ui@3.2.2(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.91.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)':
4255
+ '@almadar/ui@4.30.0(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.91.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)':
4268
4256
  dependencies:
4269
- '@almadar/core': 5.3.2
4257
+ '@almadar/core': 7.12.0
4270
4258
  '@almadar/evaluator': 2.9.2
4271
- '@almadar/patterns': 2.14.2
4272
- '@almadar/runtime': 4.3.0(express@4.22.1)
4273
- '@almadar/std': 7.2.0
4259
+ '@almadar/patterns': 2.21.0
4260
+ '@almadar/runtime': 6.3.0(express@4.22.1)
4261
+ '@almadar/std': 8.4.2
4274
4262
  '@almadar/syntax': 1.4.0
4275
4263
  '@react-three/drei': 9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4))
4276
4264
  '@react-three/fiber': 9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/shell-hono",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "private": true,
5
5
  "description": "Minimal full-stack shell template for Almadar applications (Hono server)",
6
6
  "workspaces": [
@@ -13,11 +13,11 @@
13
13
  "test:watch": "vitest"
14
14
  },
15
15
  "dependencies": {
16
- "@almadar/ui": ">=2.47.0",
17
- "@almadar/syntax": ">=1.2.1",
18
- "@almadar/evaluator": ">=2.6.0",
19
- "@almadar/patterns": ">=2.10.0",
20
- "@almadar/core": ">=2.9.1",
16
+ "@almadar/ui": ">=4.30.0",
17
+ "@almadar/syntax": ">=1.4.0",
18
+ "@almadar/evaluator": ">=2.9.2",
19
+ "@almadar/patterns": ">=2.18.1",
20
+ "@almadar/core": ">=5.8.0",
21
21
  "firebase": "^11.4.0",
22
22
  "@tanstack/react-query": "^5.67.3",
23
23
  "react": "^19.0.0",
@@ -42,7 +42,7 @@
42
42
  "postprocessing": "^6.39.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@almadar/eslint-plugin": ">=2.3.0",
45
+ "@almadar/eslint-plugin": ">=2.8.0",
46
46
  "@typescript-eslint/parser": "8.56.0",
47
47
  "eslint": "10.0.0",
48
48
  "@testing-library/react": "^16.1.0",
@@ -13,10 +13,10 @@
13
13
  "test:watch": "vitest"
14
14
  },
15
15
  "dependencies": {
16
- "@almadar/server-hono": ">=0.1.0",
17
- "@almadar/evaluator": ">=2.6.0",
18
- "@almadar/core": ">=2.9.0",
19
- "@almadar/integrations": ">=2.3.0",
16
+ "@almadar/server-hono": ">=0.2.0",
17
+ "@almadar/evaluator": ">=2.9.2",
18
+ "@almadar/core": ">=5.8.0",
19
+ "@almadar/integrations": ">=2.6.1",
20
20
  "hono": "^4.7.0",
21
21
  "@hono/node-server": "^1.14.0",
22
22
  "@hono/zod-validator": "^0.4.0",
@@ -25,8 +25,9 @@
25
25
  "zod": "^3.22.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@almadar/eslint-plugin": ">=2.3.0",
28
+ "@almadar/eslint-plugin": ">=2.8.0",
29
29
  "@typescript-eslint/parser": "8.56.0",
30
+ "@types/bun": "^1.1.0",
30
31
  "@types/node": "^20.17.19",
31
32
  "eslint": "10.0.0",
32
33
  "esbuild": "^0.25.0",
@@ -18,20 +18,20 @@ importers:
18
18
  packages/client:
19
19
  dependencies:
20
20
  '@almadar/core':
21
- specifier: '>=2.9.1'
22
- version: 2.11.0
21
+ specifier: '>=5.8.0'
22
+ version: 5.8.0
23
23
  '@almadar/evaluator':
24
- specifier: '>=2.6.0'
25
- version: 2.6.0
24
+ specifier: '>=2.9.2'
25
+ version: 2.9.2
26
26
  '@almadar/patterns':
27
- specifier: '>=2.10.0'
28
- version: 2.11.0
27
+ specifier: '>=2.18.1'
28
+ version: 2.18.1
29
29
  '@almadar/syntax':
30
- specifier: '>=1.2.1'
31
- version: 1.2.1
30
+ specifier: '>=1.4.0'
31
+ version: 1.4.0
32
32
  '@almadar/ui':
33
- specifier: '>=2.47.0'
34
- version: 2.47.1(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.96.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.14.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)
33
+ specifier: '>=4.30.0'
34
+ version: 4.30.0(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.96.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.14.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)
35
35
  '@monaco-editor/react':
36
36
  specifier: ^4.7.0
37
37
  version: 4.7.0(monaco-editor@0.52.2)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
@@ -100,8 +100,8 @@ importers:
100
100
  version: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.6.0(react@19.2.4))
101
101
  devDependencies:
102
102
  '@almadar/eslint-plugin':
103
- specifier: '>=2.3.0'
104
- version: 2.7.0(eslint@10.0.0(jiti@1.21.7))
103
+ specifier: '>=2.8.0'
104
+ version: 2.8.0(eslint@10.0.0(jiti@1.21.7))
105
105
  '@testing-library/jest-dom':
106
106
  specifier: ^6.6.3
107
107
  version: 6.9.1
@@ -148,17 +148,17 @@ importers:
148
148
  packages/server:
149
149
  dependencies:
150
150
  '@almadar/core':
151
- specifier: '>=2.9.0'
152
- version: 2.11.0
151
+ specifier: '>=5.8.0'
152
+ version: 5.8.0
153
153
  '@almadar/evaluator':
154
- specifier: '>=2.6.0'
155
- version: 2.6.0
154
+ specifier: '>=2.9.2'
155
+ version: 2.9.2
156
156
  '@almadar/integrations':
157
- specifier: '>=2.3.0'
158
- version: 2.4.0(@opentelemetry/api@1.9.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.20.0)
157
+ specifier: '>=2.6.1'
158
+ version: 2.6.1(@opentelemetry/api@1.9.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.20.0)
159
159
  '@almadar/server-hono':
160
- specifier: '>=0.1.0'
161
- version: 0.1.0(@hono/zod-validator@0.4.3(hono@4.12.8)(zod@3.25.76))(express@4.22.1)
160
+ specifier: '>=0.2.0'
161
+ version: 0.2.0(@hono/zod-validator@0.4.3(hono@4.12.8)(zod@3.25.76))(express@4.22.1)
162
162
  '@hono/node-server':
163
163
  specifier: ^1.14.0
164
164
  version: 1.19.12(hono@4.12.8)
@@ -179,8 +179,11 @@ importers:
179
179
  version: 3.25.76
180
180
  devDependencies:
181
181
  '@almadar/eslint-plugin':
182
- specifier: '>=2.3.0'
183
- version: 2.7.0(eslint@10.0.0(jiti@1.21.7))
182
+ specifier: '>=2.8.0'
183
+ version: 2.8.0(eslint@10.0.0(jiti@1.21.7))
184
+ '@types/bun':
185
+ specifier: ^1.1.0
186
+ version: 1.3.13
184
187
  '@types/node':
185
188
  specifier: ^20.17.19
186
189
  version: 20.19.39
@@ -225,70 +228,70 @@ packages:
225
228
  resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
226
229
  engines: {node: '>=10'}
227
230
 
228
- '@almadar/core@2.11.0':
229
- resolution: {integrity: sha512-cM2l8i+4t4iOx+QL5w3TADd3tveY7K9ZfX+ySIUXd9Bnyz0yajLAABswFnRr9iQgzSMJZM3nr9lvUebnVb6GpA==}
231
+ '@almadar/core@5.8.0':
232
+ resolution: {integrity: sha512-gOpnEev/pO4cm5GeUyzq4cgzrEvS8lsSLPfT7TEXc9hroAJU8fxv9anF+68AhPfnlfxYGQXFJTS268Th31fMxA==}
230
233
 
231
- '@almadar/core@4.2.0':
232
- resolution: {integrity: sha512-cgw3miOGTJt1lCLK05SdPRdS+0QkSBfFmUvBd7q0Dv55kDpqpbhzN+TlLC1UjQvLeqXpmXzlldSrl4x0gChyGg==}
234
+ '@almadar/core@7.12.0':
235
+ resolution: {integrity: sha512-kEXO+7Ji3WTm4WWGFNM7qw5sqSbi9CJ+rONzRB0jkwM5p/65YNEhBBppkZTr4T+LXHGqMQ5/AA/4W2NExzljIA==}
233
236
 
234
- '@almadar/eslint-plugin@2.7.0':
235
- resolution: {integrity: sha512-d0WT80e9APcLB6HSP7cVOqJ2jfOzR6TjKkAV5GNbGWqqrRYW7Kj0EtaAMaJEESZD+br9Jr5u8Mub4FJQULhGSg==}
237
+ '@almadar/eslint-plugin@2.8.0':
238
+ resolution: {integrity: sha512-8abtGsVP+YBaUEchSfGfQV3ZHEPtWt+4Swtu3P0AFofr+OMSfHLnor4aIwULzag+nHD9FQ7cQkVCTfBVgTHgiw==}
236
239
  peerDependencies:
237
240
  eslint: '>=8.0.0'
238
241
 
239
- '@almadar/evaluator@2.6.0':
240
- resolution: {integrity: sha512-gr9xpaxYxTFZ0vBvGliITo7xbq11vb1HvfNldIJlyVd9kFiWGrygOT6XWZkXH72mwDZwhxazSYLVXRD7e1eZeg==}
242
+ '@almadar/evaluator@2.9.2':
243
+ resolution: {integrity: sha512-yzhTtWbhvqCS/FoAK/pIyVuDV+8QwC/Csfcs/tUJOwq7fGHBhKwOrxgRqK/DNp1g7p2W/yvRPqQMUJVK1ynTQA==}
241
244
 
242
- '@almadar/integrations@2.4.0':
243
- resolution: {integrity: sha512-6tBSG5sywgpODZMG/OujUfeMI40SyrVyhKCYKbm7m1qQ9zQfzmqpz+LOzI1lEqjyGO4VtJMavDv/6GSSnac6TQ==}
245
+ '@almadar/integrations@2.6.1':
246
+ resolution: {integrity: sha512-Op7D1ivNwKeHYcNxbAbyvGUuX1fjHs2NGqBzK9VIOCiWJeodNUJscEUDHTFu9wdUxVdoo663Jfdl4vcWvvtIaQ==}
244
247
 
245
- '@almadar/llm@2.9.0':
246
- resolution: {integrity: sha512-ROLz1IuWiPFK/e+pKN5SKvdsOZkSdAL5p8dB3fp3SQMZ0gKk7/0V7z+ZWpg/Xf0gxVZS8NQFwgLu0nwzlSBvaQ==}
248
+ '@almadar/llm@2.9.1':
249
+ resolution: {integrity: sha512-8RIDz2iCcKD3Yl16vBebeUF9pr6aZr5YGjtpIqO8NlTXNJ/xJhz//Qb5GPBnr9IvYUM7DUhsS6y+4d4cl6qK4A==}
247
250
  peerDependencies:
248
- '@almadar/core': '>=2.0.0'
251
+ '@almadar/core': '>=4.8.1'
249
252
  peerDependenciesMeta:
250
253
  '@almadar/core':
251
254
  optional: true
252
255
 
253
- '@almadar/operators@2.2.0':
254
- resolution: {integrity: sha512-2XTjk0hjHMFxPvgS6qnz0pfjO0hgZ5dllolQ1dAz4LxLHn8umEw4YJ1NM+pL9EaUcSRaogHYpnDTMXPPLoUCIw==}
256
+ '@almadar/patterns@2.18.1':
257
+ resolution: {integrity: sha512-IKrd17SYkSfG0sw5lJbs0fUAcxlomvw2uLO7ijKj+trHkQAcWfg1vMzodWfrPT/SZW7JL4X1Ufa7GoZGmZusmQ==}
255
258
 
256
- '@almadar/patterns@2.11.0':
257
- resolution: {integrity: sha512-tTt1VBp3WwIQQq0gWQAVJx4LojK0lRBlpkLE+q6YGYMtpGDLDxcBebEmQCrqfg15zMh8Al/zOc0+GYx4b3nIjA==}
259
+ '@almadar/patterns@2.22.0':
260
+ resolution: {integrity: sha512-5eK6AwqXe+OJEyCtm6NpJ792P3Qq7AcGav4LgAOyhgwFJY+u4s5wYBZB+s+Ojn8QC6w1vVfnRVNvdfStd0R3GQ==}
258
261
 
259
- '@almadar/runtime@2.5.0':
260
- resolution: {integrity: sha512-mW7EE9s+DbGB3OrO3DQSdok4C7SZNl9yKzsf3CDLyNBEeUD+MIg5LemTTjDMTXqcJ5w3KSK5Pn0Q90ojHU3yIA==}
262
+ '@almadar/runtime@6.3.0':
263
+ resolution: {integrity: sha512-NZF7/hm3FTQp7KE5V3hVKoKAbPaEcvGImAjHFVhMXobotjwJUFUsjRWaTgAKWu1qdO3u6mAnu0mnm55qrTv2cg==}
261
264
  peerDependencies:
262
- express: ^4.0.0
265
+ express: ^5.0.0
263
266
 
264
- '@almadar/server-hono@0.1.0':
265
- resolution: {integrity: sha512-huOqg2ELxIMElbLAsLK4CO5RKWCDT2NZnxtnfzqb2fT6qvmrJ0BU/1mDit3lnSLBjdHIBXtwwrtrzENLl47pig==}
267
+ '@almadar/server-hono@0.2.0':
268
+ resolution: {integrity: sha512-bagey5t76YfLF4Onn6iZEM2cFlZl6CL6tqXpX0lp2VkZzAMckDox+Ou4oDN77vFXnbtNNKSACHTbmbs3zrJfYQ==}
266
269
  peerDependencies:
267
- '@almadar-io/agent': '>=2.0.1'
270
+ '@almadar-io/agent': '>=5.5.6'
268
271
  '@hono/zod-validator': '>=0.4.0'
269
272
  peerDependenciesMeta:
270
273
  '@almadar-io/agent':
271
274
  optional: true
272
275
 
273
- '@almadar/server@2.3.5':
274
- resolution: {integrity: sha512-dIa/acPzeKHzWPjbnQDz2xNVXESkttWELAMTcyo6Mr+IcB9kmeejMTnHeoINCE7k5YxsgG5hyoEnHdWheW9mdA==}
276
+ '@almadar/server@2.9.0':
277
+ resolution: {integrity: sha512-C69C3zDr6XqY67c2meb9o5e/p8M+hdIeLMvCuUVk76U25P4nZylWMjUJGXHVNDuPVc8erCQhpI109TYdg+CgCw==}
275
278
  peerDependencies:
276
- '@almadar-io/agent': '>=2.0.1'
277
- express: ^4.0.0
279
+ '@almadar-io/agent': '>=5.5.6'
280
+ express: ^5.0.0
278
281
  peerDependenciesMeta:
279
282
  '@almadar-io/agent':
280
283
  optional: true
281
284
 
282
- '@almadar/std@3.10.0':
283
- resolution: {integrity: sha512-tgyq3pmnJz298NOQIrNRd9Jocz2oXdd9+BIx3Xx1HWGVGrbtq7HqHX67w91M8iZbl1eAAfGiywfG9dXhLzLTug==}
285
+ '@almadar/std@8.4.2':
286
+ resolution: {integrity: sha512-cz48Ck/+hT9QpHoC1V9aBaTBaUPO797lNSzpNfLSHWb2JuOKkmioY45rMZTDOodHD2Qt2nUkc56BPQ4adlt7gw==}
284
287
 
285
- '@almadar/syntax@1.2.1':
286
- resolution: {integrity: sha512-wd1pmaG8rY2Yp2MScHEurDg3XnJ7xBS92y7bzxNV+pVE2p/I1fW6ywat/weGxpaq8sk7Pq7sFo4iy2H1SyFj/g==}
288
+ '@almadar/syntax@1.4.0':
289
+ resolution: {integrity: sha512-r79cxWTDykcnBpWzWV1foHufBMWcgf/88AFT/lRAxyeIJIkwYA5lQjIJIonWh8z4adgSQw3rtl/KjlCy3mG+Uw==}
287
290
 
288
- '@almadar/ui@2.47.1':
289
- resolution: {integrity: sha512-fd+VRLplFnM949F/gEAho7x+1VRovMyR3Oy6Xz8jes4zTB9QAlPbgH1VnFvi+koLFkiZs07T0xPk7rcljfHAAg==}
291
+ '@almadar/ui@4.30.0':
292
+ resolution: {integrity: sha512-/KxoMiOk/hHTJjA1dEf58TjEz6uQs04EHBFwskW24X7O2pP+7PnI/ek2RVhLcPD6q2L1nBHGHkmSKQWeVeVfug==}
290
293
  peerDependencies:
291
- '@react-three/drei': ^9.92.0 || ^10.0.0
294
+ '@react-three/drei': ^10.7.7
292
295
  '@react-three/fiber': ^9.0.0
293
296
  '@react-three/postprocessing': ^3.0.0
294
297
  '@tanstack/react-query': ^5.0.0
@@ -1653,6 +1656,9 @@ packages:
1653
1656
  '@types/babel__traverse@7.28.0':
1654
1657
  resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
1655
1658
 
1659
+ '@types/bun@1.3.13':
1660
+ resolution: {integrity: sha512-9fqXWk5YIHGGnUau9TEi+qdlTYDAnOj+xLCmSTwXfAIqXr2x4tytJb43E9uCvt09zJURKXwAtkoH4nLQfzeTXw==}
1661
+
1656
1662
  '@types/caseless@0.12.5':
1657
1663
  resolution: {integrity: sha512-hWtVTC2q7hc7xZ/RLbxapMvDMgUnDvKvMOpKal4DrMyfGBUfB1oKaZlIRr6mJL+If3bAP6sV/QneGzF6tJjZDg==}
1658
1664
 
@@ -1997,6 +2003,9 @@ packages:
1997
2003
  buffer@6.0.3:
1998
2004
  resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
1999
2005
 
2006
+ bun-types@1.3.13:
2007
+ resolution: {integrity: sha512-QXKeHLlOLqQX9LgYaHJfzdBaV21T63HhFJnvuRCcjZiaUDpbs5ED1MgxbMra71CsryN/1dAoXuJJJwIv/2drVA==}
2008
+
2000
2009
  bundle-require@5.1.0:
2001
2010
  resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
2002
2011
  engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -4523,33 +4532,31 @@ snapshots:
4523
4532
 
4524
4533
  '@alloc/quick-lru@5.2.0': {}
4525
4534
 
4526
- '@almadar/core@2.11.0':
4535
+ '@almadar/core@5.8.0':
4527
4536
  dependencies:
4528
- '@almadar/operators': 2.2.0
4529
- '@almadar/patterns': 2.11.0
4537
+ '@almadar/patterns': 2.18.1
4530
4538
  zod: 3.25.76
4531
4539
 
4532
- '@almadar/core@4.2.0':
4540
+ '@almadar/core@7.12.0':
4533
4541
  dependencies:
4534
- '@almadar/operators': 2.2.0
4535
- '@almadar/patterns': 2.11.0
4542
+ '@almadar/patterns': 2.22.0
4536
4543
  zod: 3.25.76
4537
4544
 
4538
- '@almadar/eslint-plugin@2.7.0(eslint@10.0.0(jiti@1.21.7))':
4545
+ '@almadar/eslint-plugin@2.8.0(eslint@10.0.0(jiti@1.21.7))':
4539
4546
  dependencies:
4540
4547
  eslint: 10.0.0(jiti@1.21.7)
4541
4548
  jsonc-eslint-parser: 3.1.0
4542
4549
 
4543
- '@almadar/evaluator@2.6.0':
4550
+ '@almadar/evaluator@2.9.2':
4544
4551
  dependencies:
4545
- '@almadar/core': 2.11.0
4546
- '@almadar/operators': 2.2.0
4552
+ '@almadar/core': 5.8.0
4553
+ '@almadar/std': 8.4.2
4547
4554
 
4548
- '@almadar/integrations@2.4.0(@opentelemetry/api@1.9.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.20.0)':
4555
+ '@almadar/integrations@2.6.1(@opentelemetry/api@1.9.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.20.0)':
4549
4556
  dependencies:
4550
- '@almadar/core': 2.11.0
4551
- '@almadar/llm': 2.9.0(@almadar/core@2.11.0)(@opentelemetry/api@1.9.1)(ws@8.20.0)
4552
- '@almadar/patterns': 2.11.0
4557
+ '@almadar/core': 5.8.0
4558
+ '@almadar/llm': 2.9.1(@almadar/core@5.8.0)(@opentelemetry/api@1.9.1)(ws@8.20.0)
4559
+ '@almadar/patterns': 2.18.1
4553
4560
  '@sendgrid/mail': 8.1.6
4554
4561
  dotenv: 16.6.1
4555
4562
  googleapis: 144.0.0
@@ -4568,7 +4575,7 @@ snapshots:
4568
4575
  - supports-color
4569
4576
  - ws
4570
4577
 
4571
- '@almadar/llm@2.9.0(@almadar/core@2.11.0)(@opentelemetry/api@1.9.1)(ws@8.20.0)':
4578
+ '@almadar/llm@2.9.1(@almadar/core@5.8.0)(@opentelemetry/api@1.9.1)(ws@8.20.0)':
4572
4579
  dependencies:
4573
4580
  '@anthropic-ai/sdk': 0.52.0
4574
4581
  '@langchain/anthropic': 1.3.26(@langchain/core@1.1.39(@opentelemetry/api@1.9.1)(openai@6.33.0(ws@8.20.0)(zod@3.25.76))(ws@8.20.0))
@@ -4577,29 +4584,33 @@ snapshots:
4577
4584
  openai: 6.33.0(ws@8.20.0)(zod@3.25.76)
4578
4585
  zod: 3.25.76
4579
4586
  optionalDependencies:
4580
- '@almadar/core': 2.11.0
4587
+ '@almadar/core': 5.8.0
4581
4588
  transitivePeerDependencies:
4582
4589
  - '@opentelemetry/api'
4583
4590
  - '@opentelemetry/exporter-trace-otlp-proto'
4584
4591
  - '@opentelemetry/sdk-trace-base'
4585
4592
  - ws
4586
4593
 
4587
- '@almadar/operators@2.2.0': {}
4594
+ '@almadar/patterns@2.18.1':
4595
+ dependencies:
4596
+ '@almadar/core': 5.8.0
4588
4597
 
4589
- '@almadar/patterns@2.11.0': {}
4598
+ '@almadar/patterns@2.22.0':
4599
+ dependencies:
4600
+ '@almadar/core': 7.12.0
4590
4601
 
4591
- '@almadar/runtime@2.5.0(express@4.22.1)':
4602
+ '@almadar/runtime@6.3.0(express@4.22.1)':
4592
4603
  dependencies:
4593
- '@almadar/core': 2.11.0
4594
- '@almadar/evaluator': 2.6.0
4595
- '@almadar/operators': 2.2.0
4604
+ '@almadar/core': 7.12.0
4605
+ '@almadar/evaluator': 2.9.2
4606
+ '@almadar/std': 8.4.2
4596
4607
  '@faker-js/faker': 9.9.0
4597
4608
  express: 4.22.1
4598
4609
 
4599
- '@almadar/server-hono@0.1.0(@hono/zod-validator@0.4.3(hono@4.12.8)(zod@3.25.76))(express@4.22.1)':
4610
+ '@almadar/server-hono@0.2.0(@hono/zod-validator@0.4.3(hono@4.12.8)(zod@3.25.76))(express@4.22.1)':
4600
4611
  dependencies:
4601
- '@almadar/core': 2.11.0
4602
- '@almadar/server': 2.3.5(express@4.22.1)
4612
+ '@almadar/core': 5.8.0
4613
+ '@almadar/server': 2.9.0(express@4.22.1)
4603
4614
  '@hono/zod-validator': 0.4.3(hono@4.12.8)(zod@3.25.76)
4604
4615
  hono: 4.12.8
4605
4616
  transitivePeerDependencies:
@@ -4609,9 +4620,9 @@ snapshots:
4609
4620
  - supports-color
4610
4621
  - utf-8-validate
4611
4622
 
4612
- '@almadar/server@2.3.5(express@4.22.1)':
4623
+ '@almadar/server@2.9.0(express@4.22.1)':
4613
4624
  dependencies:
4614
- '@almadar/core': 4.2.0
4625
+ '@almadar/core': 5.8.0
4615
4626
  '@faker-js/faker': 9.9.0
4616
4627
  cors: 2.8.6
4617
4628
  dotenv: 16.6.1
@@ -4626,25 +4637,24 @@ snapshots:
4626
4637
  - supports-color
4627
4638
  - utf-8-validate
4628
4639
 
4629
- '@almadar/std@3.10.0':
4640
+ '@almadar/std@8.4.2':
4630
4641
  dependencies:
4631
- '@almadar/core': 2.11.0
4632
- '@almadar/operators': 2.2.0
4642
+ '@almadar/core': 5.8.0
4633
4643
 
4634
- '@almadar/syntax@1.2.1':
4644
+ '@almadar/syntax@1.4.0':
4635
4645
  dependencies:
4636
- '@almadar/core': 2.11.0
4637
- '@almadar/operators': 2.2.0
4638
- '@almadar/patterns': 2.11.0
4646
+ '@almadar/core': 5.8.0
4647
+ '@almadar/patterns': 2.18.1
4648
+ '@almadar/std': 8.4.2
4639
4649
 
4640
- '@almadar/ui@2.47.1(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.96.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.14.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)':
4650
+ '@almadar/ui@4.30.0(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.96.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.14.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)':
4641
4651
  dependencies:
4642
- '@almadar/core': 2.11.0
4643
- '@almadar/evaluator': 2.6.0
4644
- '@almadar/patterns': 2.11.0
4645
- '@almadar/runtime': 2.5.0(express@4.22.1)
4646
- '@almadar/std': 3.10.0
4647
- '@almadar/syntax': 1.2.1
4652
+ '@almadar/core': 7.12.0
4653
+ '@almadar/evaluator': 2.9.2
4654
+ '@almadar/patterns': 2.22.0
4655
+ '@almadar/runtime': 6.3.0(express@4.22.1)
4656
+ '@almadar/std': 8.4.2
4657
+ '@almadar/syntax': 1.4.0
4648
4658
  '@react-three/drei': 9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4))
4649
4659
  '@react-three/fiber': 9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)
4650
4660
  '@react-three/postprocessing': 3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1)
@@ -5953,6 +5963,10 @@ snapshots:
5953
5963
  dependencies:
5954
5964
  '@babel/types': 7.29.0
5955
5965
 
5966
+ '@types/bun@1.3.13':
5967
+ dependencies:
5968
+ bun-types: 1.3.13
5969
+
5956
5970
  '@types/caseless@0.12.5':
5957
5971
  optional: true
5958
5972
 
@@ -6363,6 +6377,10 @@ snapshots:
6363
6377
  base64-js: 1.5.1
6364
6378
  ieee754: 1.2.1
6365
6379
 
6380
+ bun-types@1.3.13:
6381
+ dependencies:
6382
+ '@types/node': 20.19.39
6383
+
6366
6384
  bundle-require@5.1.0(esbuild@0.27.7):
6367
6385
  dependencies:
6368
6386
  esbuild: 0.27.7