Merge origin/main into feat/graph-data-viz

Resolve App.tsx header conflict: keep main's "Privacy-limited" badge AND the
"Team memory" graph button (both in the header action group). server.ts and
backend/package.json auto-merged cleanly — main's closeMemory/shutdown and the
graph:seed script are both preserved.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
sb-iam
2026-06-27 18:54:10 -07:00
37 changed files with 1802 additions and 269 deletions
+5 -2
View File
@@ -3,13 +3,16 @@
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"main": "./dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"dev": "pnpm run dev:server",
"dev:server": "tsx watch src/server.ts",
"dev:agent": "tsx watch src/agent.ts",
"graph:seed": "tsx src/graph/seed.ts",
"start": "node dist/server.js",
"start:server": "node dist/server.js",
"start:agent": "node dist/agent.js",
"start:all": "node dist/hermes.js",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit"
},