jivamai 0.1.4-dev.63d462c

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 (50) hide show
  1. package/CHANGELOG.md +170 -0
  2. package/README.md +94 -0
  3. package/assets/icon.icns +0 -0
  4. package/assets/icon.iconset/icon_128x128.png +0 -0
  5. package/assets/icon.iconset/icon_128x128@2x.png +0 -0
  6. package/assets/icon.iconset/icon_16x16.png +0 -0
  7. package/assets/icon.iconset/icon_16x16@2x.png +0 -0
  8. package/assets/icon.iconset/icon_256x256.png +0 -0
  9. package/assets/icon.iconset/icon_256x256@2x.png +0 -0
  10. package/assets/icon.iconset/icon_32x32.png +0 -0
  11. package/assets/icon.iconset/icon_32x32@2x.png +0 -0
  12. package/assets/icon.iconset/icon_512x512.png +0 -0
  13. package/assets/icon.iconset/icon_512x512@2x.png +0 -0
  14. package/assets/icon.png +0 -0
  15. package/assets/logo.png +0 -0
  16. package/bin/jivam.js +7 -0
  17. package/dist/assets/index-CisS1YJo.css +10 -0
  18. package/dist/assets/index-DftBqc_W.js +510 -0
  19. package/dist/assets/logo-CJttTQkq.png +0 -0
  20. package/dist/icon-192.png +0 -0
  21. package/dist/icon-512.png +0 -0
  22. package/dist/index.html +19 -0
  23. package/dist/logo.png +0 -0
  24. package/dist/manifest.json +24 -0
  25. package/dist-server/icon-192.png +0 -0
  26. package/dist-server/icon-512.png +0 -0
  27. package/dist-server/index.js +292 -0
  28. package/dist-server/index.js.map +1 -0
  29. package/dist-server/logo.png +0 -0
  30. package/dist-server/manifest.json +24 -0
  31. package/docs/README.md +55 -0
  32. package/docs/architecture/cloud-mode.md +204 -0
  33. package/docs/architecture/code-agent-integration.md +276 -0
  34. package/docs/architecture/ipc-contract.md +162 -0
  35. package/docs/architecture/jiva-core-integration.md +147 -0
  36. package/docs/architecture/overview.md +87 -0
  37. package/docs/architecture/startup-flow.md +108 -0
  38. package/docs/architecture/state-management.md +153 -0
  39. package/docs/guides/adding-features.md +196 -0
  40. package/docs/guides/design-guide.md +308 -0
  41. package/docs/release_notes/.gitkeep +0 -0
  42. package/electron-builder.yml +86 -0
  43. package/index.html +18 -0
  44. package/package.json +62 -0
  45. package/portal_home.png +0 -0
  46. package/proposal.md +61 -0
  47. package/public/icon-192.png +0 -0
  48. package/public/icon-512.png +0 -0
  49. package/public/logo.png +0 -0
  50. package/public/manifest.json +24 -0
package/proposal.md ADDED
@@ -0,0 +1,61 @@
1
+ # Proposal – Unified Data Ingestion API & Dashboard
2
+
3
+ **Prepared for:** The Weston Group – www.weston.com
4
+ **Prepared by:** Gritsa LTD – www.gritsa.com
5
+
6
+ ---
7
+
8
+ ## Service Overview
9
+ Gritsa LTD will deliver a **single‑point data ingestion platform** that consolidates all of The Weston Group’s disparate data streams into a unified storage model and presents the information through an intuitive, filter‑rich dashboard.
10
+
11
+ ### Key Benefits
12
+ - **Simplified Integration** – One API endpoint for all sources (webhooks, SaaS, on‑prem systems).
13
+ - **Automatic Normalisation** – Incoming payloads are identified, validated and transformed to a common data model without manual mapping.
14
+ - **Actionable Insights** – A responsive dashboard provides aggregated views, drill‑down filters and export capabilities, enabling rapid decision‑making.
15
+
16
+ ---
17
+
18
+ ## Technical Approach
19
+ 1. **Unified Ingestion API**
20
+ - Expose a single HTTPS endpoint (`https://api.weston.com/ingest`).
21
+ - Accept JSON, CSV, raw logs, etc., via POST (webhook‑style) from any system.
22
+ - Authenticate requests using API keys or OAuth2.
23
+ 2. **Smart Data Detection & Normalisation**
24
+ - Inspect payload schema to infer data type.
25
+ - Apply transformation rules to map fields onto the unified data model.
26
+ - Store the cleaned records in a central PostgreSQL (or equivalent) data store.
27
+ 3. **Dashboard Layer**
28
+ - Implemented with a free‑for‑commercial‑use solution such as **Looker Studio** or **Metabase**.
29
+ - Pre‑defined filters (date, source, category) and custom aggregation widgets.
30
+ - Role‑based access control for secure multi‑user access.
31
+
32
+ ---
33
+
34
+ ## Pricing
35
+ | Scope | Effort (hrs) | Fixed Cost |
36
+ |-------|--------------|------------|
37
+ | End‑to‑end solution (API + normalisation + dashboard) | 40‑60 | **$4,000** |
38
+
39
+ ### Optional Time‑and‑Materials Support
40
+ - **Integration Assistance** – If The Weston Group prefers to handle webhook implementation themselves, we can provide hourly support for any remaining “last‑mile” work.
41
+ - **Rate:** $120 / hour (or as mutually agreed).
42
+
43
+ ---
44
+
45
+ ## Contact
46
+ **Name:** Abi Chatterjee
47
+ **Email:** abi@gritsa.com
48
+ **Phone:** +447436855207
49
+
50
+ ---
51
+
52
+ ## Next Steps
53
+ 1. **Kick‑off meeting** – Align on data sources, security requirements and UI preferences.
54
+ 2. **Prototype delivery** – 2‑week sprint to expose the ingestion endpoint and a basic dashboard.
55
+ 3. **Iterative refinement** – Incorporate feedback, add source‑specific adapters, and finalise the UI.
56
+
57
+ We look forward to partnering with The Weston Group to turn fragmented data into a single, actionable asset.
58
+
59
+ ---
60
+
61
+ *Prepared on $(date)*
Binary file
Binary file
Binary file
@@ -0,0 +1,24 @@
1
+ {
2
+ "id": "/",
3
+ "name": "Jivam",
4
+ "short_name": "Jivam",
5
+ "description": "Desktop UI for the Jiva autonomous AI agent",
6
+ "start_url": "/",
7
+ "display": "standalone",
8
+ "background_color": "#0d0d0d",
9
+ "theme_color": "#8b5cf6",
10
+ "icons": [
11
+ {
12
+ "src": "/icon-192.png",
13
+ "sizes": "192x192",
14
+ "type": "image/png",
15
+ "purpose": "any maskable"
16
+ },
17
+ {
18
+ "src": "/icon-512.png",
19
+ "sizes": "512x512",
20
+ "type": "image/png",
21
+ "purpose": "any maskable"
22
+ }
23
+ ]
24
+ }