@omiron33/omi-neuron-web 0.1.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.
Files changed (55) hide show
  1. package/README.md +55 -0
  2. package/dist/api/index.cjs +943 -0
  3. package/dist/api/index.cjs.map +1 -0
  4. package/dist/api/index.d.cts +140 -0
  5. package/dist/api/index.d.ts +140 -0
  6. package/dist/api/index.js +934 -0
  7. package/dist/api/index.js.map +1 -0
  8. package/dist/chunk-BSOSHBDR.cjs +300 -0
  9. package/dist/chunk-BSOSHBDR.cjs.map +1 -0
  10. package/dist/chunk-COO66N7H.cjs +950 -0
  11. package/dist/chunk-COO66N7H.cjs.map +1 -0
  12. package/dist/chunk-FXKXMSLY.cjs +270 -0
  13. package/dist/chunk-FXKXMSLY.cjs.map +1 -0
  14. package/dist/chunk-PSDVPB7Y.js +289 -0
  15. package/dist/chunk-PSDVPB7Y.js.map +1 -0
  16. package/dist/chunk-RQCGONPN.js +937 -0
  17. package/dist/chunk-RQCGONPN.js.map +1 -0
  18. package/dist/chunk-RTSFO7BW.cjs +592 -0
  19. package/dist/chunk-RTSFO7BW.cjs.map +1 -0
  20. package/dist/chunk-TFLMPBX7.js +262 -0
  21. package/dist/chunk-TFLMPBX7.js.map +1 -0
  22. package/dist/chunk-XNR42GCJ.js +547 -0
  23. package/dist/chunk-XNR42GCJ.js.map +1 -0
  24. package/dist/cli/index.cjs +571 -0
  25. package/dist/cli/index.cjs.map +1 -0
  26. package/dist/cli/index.d.cts +1 -0
  27. package/dist/cli/index.d.ts +1 -0
  28. package/dist/cli/index.js +563 -0
  29. package/dist/cli/index.js.map +1 -0
  30. package/dist/database-B0vplyA4.d.cts +41 -0
  31. package/dist/database-B0vplyA4.d.ts +41 -0
  32. package/dist/edge-BzsYe2Ed.d.cts +269 -0
  33. package/dist/edge-BzsYe2Ed.d.ts +269 -0
  34. package/dist/index.cjs +895 -0
  35. package/dist/index.cjs.map +1 -0
  36. package/dist/index.d.cts +1484 -0
  37. package/dist/index.d.ts +1484 -0
  38. package/dist/index.js +654 -0
  39. package/dist/index.js.map +1 -0
  40. package/dist/migration/index.cjs +32 -0
  41. package/dist/migration/index.cjs.map +1 -0
  42. package/dist/migration/index.d.cts +51 -0
  43. package/dist/migration/index.d.ts +51 -0
  44. package/dist/migration/index.js +3 -0
  45. package/dist/migration/index.js.map +1 -0
  46. package/dist/query-helpers-D8po5Mn-.d.cts +777 -0
  47. package/dist/query-helpers-DvQTA2_Z.d.ts +777 -0
  48. package/dist/visualization/index.cjs +485 -0
  49. package/dist/visualization/index.cjs.map +1 -0
  50. package/dist/visualization/index.d.cts +134 -0
  51. package/dist/visualization/index.d.ts +134 -0
  52. package/dist/visualization/index.js +460 -0
  53. package/dist/visualization/index.js.map +1 -0
  54. package/docker/docker-compose.template.yml +28 -0
  55. package/package.json +116 -0
package/README.md ADDED
@@ -0,0 +1,55 @@
1
+ # omi-neuron-web
2
+
3
+ A drop-in Next.js library for data analysis and 3D visualization with OpenAI-powered insights.
4
+
5
+ ## Features
6
+
7
+ - 🔮 **AI-powered analysis** - OpenAI integration for embeddings, clustering, and relationship inference
8
+ - 🕸️ **Interactive visualization** - Three.js graph with customizable themes and interactions
9
+ - 🐘 **Zero-config database** - Docker PostgreSQL with pgvector automatically provisioned
10
+ - 📊 **Smart clustering** - K-means and DBSCAN algorithms for grouping similar nodes
11
+ - 🎨 **Fully customizable** - Themes, colors, node types, and domains configurable per project
12
+ - 🔌 **Simple React API** - Provider and hooks for seamless integration
13
+
14
+ ## Quick Start
15
+
16
+ ```bash
17
+ # Initialize in your Next.js project
18
+ npx omi-neuron init
19
+
20
+ # Start the database
21
+ npx omi-neuron db:up
22
+
23
+ # Run your Next.js app
24
+ npm run dev
25
+ ```
26
+
27
+ ## Documentation
28
+
29
+ - [Getting Started](./docs/getting-started.md)
30
+ - [Configuration](./docs/configuration.md)
31
+ - [API Reference](./docs/api-reference.md)
32
+ - [Hooks Reference](./docs/hooks-reference.md)
33
+ - [Component Props](./docs/component-props.md)
34
+ - [CLI Reference](./docs/cli-reference.md)
35
+ - [Architecture](./docs/architecture.md)
36
+ - [Troubleshooting](./docs/troubleshooting.md)
37
+
38
+ ### Phase Overview
39
+
40
+ 1. **Foundation** - Core types, Docker setup, migrations, CLI
41
+ 2. **Analysis Engine** - Embeddings, clustering, relationships, events
42
+ 3. **API Layer** - REST endpoints, repositories, query builder
43
+ 4. **Visualization** - Three.js component, themes, interactions
44
+ 5. **Integration** - Provider, hooks, examples
45
+ 6. **Validation** - Tests, documentation, npm publishing
46
+
47
+ ## Development Status
48
+
49
+ 🟥 **In Planning** - Implementation not yet started
50
+
51
+ See [plans/master-plan-planner.md](./plans/master-plan-planner.md) for current status.
52
+
53
+ ## License
54
+
55
+ MIT