agenticros 0.2.2 → 0.2.3

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": "agenticros",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "type": "module",
5
5
  "description": "AgenticROS - agentic AI for ROS-powered robots. Single CLI to launch real-robot or simulated demos, manage configuration, and inspect status.",
6
6
  "keywords": [
@@ -1,5 +1,5 @@
1
1
  {
2
- "packedAt": "2026-06-15T15:08:30.323Z",
2
+ "packedAt": "2026-06-16T15:51:42.302Z",
3
3
  "repo": "https://github.com/PlaiPin/agenticros",
4
4
  "note": "This directory is a snapshot of the agenticros monorepo source. `agenticros init` will copy it to ~/agenticros and run pnpm install + colcon build there.",
5
5
  "layout": {
@@ -62,14 +62,6 @@
62
62
  "optionalDependencies": {
63
63
  "rclnodejs": "^1.8.1"
64
64
  },
65
- "peerDependencies": {
66
- "mem0ai": "^2.0.0"
67
- },
68
- "peerDependenciesMeta": {
69
- "mem0ai": {
70
- "optional": true
71
- }
72
- },
73
65
  "devDependencies": {
74
66
  "@types/node": "^20.17.0",
75
67
  "@types/ws": "^8.5.13",
@@ -196,9 +196,12 @@ export async function createMem0Provider(args: {
196
196
  const { config } = args;
197
197
  let MemoryCtor: any;
198
198
  try {
199
- // mem0ai is an optional peer dependency — resolved at runtime, never
200
- // installed unless the user opts into backend: "mem0".
201
- // @ts-ignore: optional peer dep not declared in this package's deps
199
+ // mem0ai is an optional runtime dependency — NOT listed in @agenticros/core's
200
+ // package.json (neither as a regular dep nor as a peer dep) because it pulls
201
+ // in a long native-build chain (better-sqlite3, etc.) that breaks installs in
202
+ // restricted sandboxes (NemoClaw, Docker without build tools, etc.). Users who
203
+ // opt into `backend: "mem0"` install it themselves — see docs/memory.md.
204
+ // @ts-ignore: intentionally not declared in this package's deps
202
205
  const mod: any = await import("mem0ai/oss");
203
206
  MemoryCtor = mod.Memory ?? mod.default?.Memory;
204
207
  } catch {