context-mode 1.0.80 → 1.0.81

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.
Files changed (43) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/.openclaw-plugin/openclaw.plugin.json +1 -1
  4. package/.openclaw-plugin/package.json +1 -1
  5. package/build/cli.js +57 -0
  6. package/build/server.js +94 -1
  7. package/cli.bundle.mjs +106 -99
  8. package/insight/components.json +25 -0
  9. package/insight/index.html +13 -0
  10. package/insight/package.json +54 -0
  11. package/insight/server.mjs +624 -0
  12. package/insight/src/components/analytics.tsx +112 -0
  13. package/insight/src/components/ui/badge.tsx +52 -0
  14. package/insight/src/components/ui/button.tsx +58 -0
  15. package/insight/src/components/ui/card.tsx +103 -0
  16. package/insight/src/components/ui/chart.tsx +371 -0
  17. package/insight/src/components/ui/collapsible.tsx +19 -0
  18. package/insight/src/components/ui/input.tsx +20 -0
  19. package/insight/src/components/ui/progress.tsx +83 -0
  20. package/insight/src/components/ui/scroll-area.tsx +55 -0
  21. package/insight/src/components/ui/separator.tsx +23 -0
  22. package/insight/src/components/ui/table.tsx +114 -0
  23. package/insight/src/components/ui/tabs.tsx +82 -0
  24. package/insight/src/components/ui/tooltip.tsx +64 -0
  25. package/insight/src/lib/api.ts +71 -0
  26. package/insight/src/lib/utils.ts +6 -0
  27. package/insight/src/main.tsx +22 -0
  28. package/insight/src/routeTree.gen.ts +189 -0
  29. package/insight/src/router.tsx +19 -0
  30. package/insight/src/routes/__root.tsx +55 -0
  31. package/insight/src/routes/enterprise.tsx +316 -0
  32. package/insight/src/routes/index.tsx +914 -0
  33. package/insight/src/routes/knowledge.tsx +221 -0
  34. package/insight/src/routes/knowledge_.$dbHash.$sourceId.tsx +137 -0
  35. package/insight/src/routes/search.tsx +97 -0
  36. package/insight/src/routes/sessions.tsx +179 -0
  37. package/insight/src/routes/sessions_.$dbHash.$sessionId.tsx +181 -0
  38. package/insight/src/styles.css +104 -0
  39. package/insight/tsconfig.json +29 -0
  40. package/insight/vite.config.ts +19 -0
  41. package/openclaw.plugin.json +1 -1
  42. package/package.json +2 -1
  43. package/server.bundle.mjs +76 -72
@@ -0,0 +1,25 @@
1
+ {
2
+ "$schema": "https://ui.shadcn.com/schema.json",
3
+ "style": "base-nova",
4
+ "rsc": false,
5
+ "tsx": true,
6
+ "tailwind": {
7
+ "config": "",
8
+ "css": "src/styles.css",
9
+ "baseColor": "neutral",
10
+ "cssVariables": true,
11
+ "prefix": ""
12
+ },
13
+ "iconLibrary": "lucide",
14
+ "rtl": false,
15
+ "aliases": {
16
+ "components": "#/components",
17
+ "utils": "#/lib/utils",
18
+ "ui": "#/components/ui",
19
+ "lib": "#/lib",
20
+ "hooks": "#/hooks"
21
+ },
22
+ "menuColor": "default",
23
+ "menuAccent": "subtle",
24
+ "registries": {}
25
+ }
@@ -0,0 +1,13 @@
1
+
2
+ <!doctype html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Context Mode Insight</title>
8
+ </head>
9
+ <body>
10
+ <div id="app"></div>
11
+ <script type="module" src="/src/main.tsx"></script>
12
+ </body>
13
+ </html>
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "memory-ui",
3
+ "private": true,
4
+ "type": "module",
5
+ "imports": {
6
+ "#/*": "./src/*"
7
+ },
8
+ "scripts": {
9
+ "dev": "vite dev --port 3000",
10
+ "build": "vite build",
11
+ "preview": "vite preview",
12
+ "test": "vitest run"
13
+ },
14
+ "dependencies": {
15
+ "@base-ui/react": "^1.4.0",
16
+ "@fontsource-variable/geist": "^5.2.8",
17
+ "@tailwindcss/vite": "^4.1.18",
18
+ "@tanstack/react-devtools": "latest",
19
+ "@tanstack/react-router": "latest",
20
+ "@tanstack/react-router-devtools": "latest",
21
+ "@tanstack/router-plugin": "^1.132.0",
22
+ "class-variance-authority": "^0.7.1",
23
+ "clsx": "^2.1.1",
24
+ "lucide-react": "^0.545.0",
25
+ "react": "^19.2.0",
26
+ "react-dom": "^19.2.0",
27
+ "recharts": "^3.8.1",
28
+ "shadcn": "^4.2.0",
29
+ "tailwind-merge": "^3.5.0",
30
+ "tailwindcss": "^4.1.18",
31
+ "tw-animate-css": "^1.4.0"
32
+ },
33
+ "devDependencies": {
34
+ "@tailwindcss/typography": "^0.5.16",
35
+ "@tanstack/devtools-vite": "latest",
36
+ "@tanstack/router-plugin": "latest",
37
+ "@testing-library/dom": "^10.4.1",
38
+ "@testing-library/react": "^16.3.0",
39
+ "@types/node": "^22.10.2",
40
+ "@types/react": "^19.2.0",
41
+ "@types/react-dom": "^19.2.0",
42
+ "@vitejs/plugin-react": "^6.0.1",
43
+ "jsdom": "^28.1.0",
44
+ "typescript": "^5.7.2",
45
+ "vite": "^8.0.0",
46
+ "vitest": "^3.0.5"
47
+ },
48
+ "pnpm": {
49
+ "onlyBuiltDependencies": [
50
+ "esbuild",
51
+ "lightningcss"
52
+ ]
53
+ }
54
+ }