jivamai 0.1.4-dev.1ff0405

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.
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
+ }
@@ -0,0 +1,86 @@
1
+ appId: ai.karmaloop.jivam
2
+ productName: Jivam
3
+ copyright: Copyright © 2026 Karmaloop AI
4
+
5
+ directories:
6
+ output: release
7
+ buildResources: assets
8
+
9
+ files:
10
+ - dist/**/*
11
+ - dist-electron/**/*
12
+ - package.json
13
+
14
+ asar: true
15
+
16
+ mac:
17
+ category: public.app-category.productivity
18
+ icon: assets/icon.icns
19
+ minimumSystemVersion: "13.0"
20
+ target:
21
+ - target: dmg
22
+ arch: universal
23
+ - target: zip
24
+ arch: universal
25
+ darkModeSupport: true
26
+ # Code signing — uncomment and set env vars when Apple Developer certificate is ready:
27
+ # notarize:
28
+ # teamId: ${APPLE_TEAM_ID}
29
+
30
+ dmg:
31
+ title: "Jivam ${version}"
32
+ contents:
33
+ - x: 130
34
+ y: 220
35
+ - x: 410
36
+ y: 220
37
+ type: link
38
+ path: /Applications
39
+ window:
40
+ width: 540
41
+ height: 380
42
+
43
+ win:
44
+ icon: assets/icon.png
45
+ target:
46
+ - target: nsis
47
+ arch:
48
+ - x64
49
+ - arm64
50
+ - target: portable
51
+ arch: x64
52
+ # Azure Trusted Signing — uncomment and set env vars when certificate is ready:
53
+ # azureSignOptions:
54
+ # endpoint: ${AZURE_SIGNING_ENDPOINT}
55
+ # certificateProfileName: ${AZURE_CERT_PROFILE_NAME}
56
+ # codeSigningAccountName: ${AZURE_SIGNING_ACCOUNT_NAME}
57
+
58
+ nsis:
59
+ artifactName: ${productName}-Setup-${version}.exe
60
+ oneClick: false
61
+ perMachine: false # install to %LocalAppData% — no UAC elevation needed
62
+ allowToChangeInstallationDirectory: true
63
+ createDesktopShortcut: true
64
+ createStartMenuShortcut: true
65
+
66
+ portable:
67
+ artifactName: ${productName}-${version}-portable.exe
68
+
69
+ appImage:
70
+ artifactName: ${productName}-${version}-${arch}.AppImage
71
+
72
+ linux:
73
+ icon: assets/icon.png
74
+ category: Utility
75
+ target:
76
+ - target: AppImage
77
+ arch:
78
+ - x64
79
+ - arm64
80
+ - target: deb
81
+ arch: x64
82
+
83
+ publish:
84
+ provider: github
85
+ owner: KarmaloopAI
86
+ repo: JivamAI
package/index.html ADDED
@@ -0,0 +1,18 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; connect-src 'self' ws://localhost:* wss://localhost:* http://localhost:* https:; img-src 'self' data: blob:;" />
7
+ <meta name="theme-color" content="#8b5cf6" />
8
+ <link rel="manifest" href="/manifest.json" />
9
+ <title>Jivam</title>
10
+ <link rel="preconnect" href="https://fonts.googleapis.com">
11
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
13
+ </head>
14
+ <body>
15
+ <div id="root"></div>
16
+ <script type="module" src="/src/main.tsx"></script>
17
+ </body>
18
+ </html>
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "jivamai",
3
+ "version": "0.1.4-dev.1ff0405",
4
+ "description": "Jivam - Desktop UI for the Jiva autonomous AI agent",
5
+ "main": "dist-server/index.js",
6
+ "bin": {
7
+ "jivam": "bin/jivam.js"
8
+ },
9
+ "scripts": {
10
+ "dev": "concurrently \"vite\" \"cross-env NODE_ENV=development tsx server/index.ts\"",
11
+ "build": "npm run build:unobfuscated && node scripts/obfuscate.js",
12
+ "build:unobfuscated": "vite build && vite build --config vite.server.config.ts",
13
+ "start": "node dist-server/index.js",
14
+ "preview": "vite preview"
15
+ },
16
+ "keywords": [],
17
+ "author": {
18
+ "name": "Karmaloop AI",
19
+ "email": "achatterjee@gritsa.com"
20
+ },
21
+ "license": "MIT",
22
+ "jivaCompatibleVersion": "0.3.44",
23
+ "dependencies": {
24
+ "@tanstack/react-virtual": "^3.14.5",
25
+ "clsx": "^2.1.1",
26
+ "electron-updater": "^6.3.9",
27
+ "express": "^5.2.1",
28
+ "framer-motion": "^11.18.2",
29
+ "highlight.js": "^11.11.1",
30
+ "lucide-react": "^0.462.0",
31
+ "multer": "^2.2.0",
32
+ "open": "^11.0.0",
33
+ "react": "^18.3.1",
34
+ "react-dom": "^18.3.1",
35
+ "react-markdown": "^9.1.0",
36
+ "rehype-highlight": "^7.0.2",
37
+ "remark-gfm": "^4.0.1",
38
+ "tailwind-merge": "^2.6.1",
39
+ "ws": "^8.21.0",
40
+ "zustand": "^4.5.7"
41
+ },
42
+ "devDependencies": {
43
+ "@types/express": "^5.0.6",
44
+ "@types/multer": "^2.2.0",
45
+ "@types/node": "^22.19.11",
46
+ "@types/react": "^18.3.28",
47
+ "@types/react-dom": "^18.3.7",
48
+ "@types/ws": "^8.18.1",
49
+ "@vitejs/plugin-react": "^4.7.0",
50
+ "autoprefixer": "^10.4.24",
51
+ "concurrently": "^10.0.3",
52
+ "cross-env": "^7.0.3",
53
+ "electron": "^33.4.11",
54
+ "electron-builder": "^25.1.8",
55
+ "javascript-obfuscator": "^5.4.3",
56
+ "postcss": "^8.5.6",
57
+ "tailwindcss": "^3.4.19",
58
+ "tsx": "^4.22.4",
59
+ "typescript": "^5.9.3",
60
+ "vite": "^5.4.21",
61
+ "vite-plugin-electron": "^0.28.8",
62
+ "vite-plugin-electron-renderer": "^0.14.6"
63
+ }
64
+ }
Binary file
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
+ }