omnish 1.6.6 → 2.0.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.
- package/CHANGELOG.md +32 -0
- package/README.md +26 -18
- package/config.example.json +1 -0
- package/dist/downloads/omnish-claude/install.sh +174 -0
- package/dist/downloads/omnish-claude/uninstall.sh +114 -0
- package/dist/downloads/omnish-claude.tar.gz +0 -0
- package/dist/downloads/omnish-cursor/install.sh +162 -0
- package/dist/downloads/omnish-cursor/uninstall.sh +107 -0
- package/dist/downloads/omnish-cursor.tar.gz +0 -0
- package/dist/index.js +424 -392
- package/dist/omnish-claude/README.md +80 -0
- package/dist/omnish-claude/hooks/omnish-notify.py +213 -0
- package/dist/omnish-claude/hooks/omnish-notify.sh +13 -0
- package/dist/omnish-claude/install.sh +174 -0
- package/dist/omnish-claude/omnish-notify.json.example +8 -0
- package/dist/omnish-claude/scripts/doctor.sh +99 -0
- package/dist/omnish-claude/skill/SKILL.md +39 -0
- package/dist/omnish-claude/skill/files-and-sharing.md +94 -0
- package/dist/omnish-claude/skill/notifications.md +113 -0
- package/dist/omnish-claude/skill/setup-paths.md +81 -0
- package/dist/omnish-claude/uninstall.sh +114 -0
- package/dist/omnish-cursor/README.md +176 -0
- package/dist/omnish-cursor/hooks/__pycache__/omnish-notify.cpython-313.pyc +0 -0
- package/dist/omnish-cursor/hooks/omnish-notify.py +563 -0
- package/dist/omnish-cursor/hooks/omnish-notify.sh +13 -0
- package/dist/omnish-cursor/hooks/omnish-session-start.sh +48 -0
- package/dist/omnish-cursor/install.sh +162 -0
- package/dist/omnish-cursor/omnish-notify.json.example +13 -0
- package/dist/omnish-cursor/rules/omnish-notify.mdc +45 -0
- package/dist/omnish-cursor/scripts/doctor.sh +126 -0
- package/dist/omnish-cursor/skill/SKILL.md +129 -0
- package/dist/omnish-cursor/skill/files-and-sharing.md +94 -0
- package/dist/omnish-cursor/skill/notifications.md +155 -0
- package/dist/omnish-cursor/skill/setup-paths.md +81 -0
- package/dist/omnish-cursor/uninstall.sh +107 -0
- package/dist/ui/assets/{index-aUJGrxrr.js → index-BwG51a2I.js} +10 -10
- package/dist/ui/index.html +16 -1
- package/package.json +12 -4
package/dist/ui/index.html
CHANGED
|
@@ -11,7 +11,22 @@
|
|
|
11
11
|
href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap"
|
|
12
12
|
rel="stylesheet"
|
|
13
13
|
/>
|
|
14
|
-
<script
|
|
14
|
+
<script>
|
|
15
|
+
window.LEAPTR_CONFIG = {
|
|
16
|
+
featureTracking: true,
|
|
17
|
+
formTracking: true,
|
|
18
|
+
frustrationSignals: true,
|
|
19
|
+
mobileSignals: true,
|
|
20
|
+
};
|
|
21
|
+
</script>
|
|
22
|
+
<script
|
|
23
|
+
src="https://leaptr.com/collector.js"
|
|
24
|
+
data-endpoint="https://leaptr.com/api/ingest"
|
|
25
|
+
data-key="ik_d9ed944a752b5851dbfa2acedcb1eee4467d"
|
|
26
|
+
data-leaptr-collector="1"
|
|
27
|
+
async
|
|
28
|
+
></script>
|
|
29
|
+
<script type="module" crossorigin src="/assets/index-BwG51a2I.js"></script>
|
|
15
30
|
<link rel="stylesheet" crossorigin href="/assets/index-D6NDVsng.css">
|
|
16
31
|
</head>
|
|
17
32
|
<body class="min-h-dvh antialiased">
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnish",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "omnish — allowlisted inbox → your real shell (WhatsApp
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "omnish — allowlisted inbox → your real shell (WhatsApp, Telegram, Discord, Slack, and 20+ channels). No AI.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"keywords": [
|
|
@@ -42,12 +42,17 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@parcel/watcher": "^2.5.1",
|
|
45
|
+
"@slack/bolt": "^4.7.2",
|
|
45
46
|
"@whiskeysockets/baileys": "7.0.0-rc13",
|
|
46
47
|
"better-sqlite3": "^12.9.0",
|
|
48
|
+
"discord.js": "^14.22.1",
|
|
47
49
|
"grammy": "^1.42.0",
|
|
50
|
+
"matrix-js-sdk": "^41.4.0",
|
|
48
51
|
"node-pty": "^1.1.0",
|
|
52
|
+
"nostr-tools": "^2.17.0",
|
|
49
53
|
"pino": "^9.6.0",
|
|
50
54
|
"qrcode-terminal": "^0.12.0",
|
|
55
|
+
"tmi.js": "^1.8.5",
|
|
51
56
|
"ws": "^8.18.3"
|
|
52
57
|
},
|
|
53
58
|
"devDependencies": {
|
|
@@ -55,6 +60,7 @@
|
|
|
55
60
|
"@types/node": "^22.10.0",
|
|
56
61
|
"@types/qrcode-terminal": "^0.12.2",
|
|
57
62
|
"@types/ws": "^8.18.1",
|
|
63
|
+
"dependency-cruiser": "^17.4.3",
|
|
58
64
|
"esbuild": "^0.24.2",
|
|
59
65
|
"prettier": "^3.5.3",
|
|
60
66
|
"tsx": "^4.19.2",
|
|
@@ -70,7 +76,7 @@
|
|
|
70
76
|
},
|
|
71
77
|
"scripts": {
|
|
72
78
|
"reinstall": "rm -rf node_modules && pnpm install",
|
|
73
|
-
"postinstall": "node scripts/fix-node-pty-perms.mjs",
|
|
79
|
+
"postinstall": "node scripts/check-native-modules.mjs && node scripts/fix-node-pty-perms.mjs",
|
|
74
80
|
"build": "node scripts/build-bundle.mjs",
|
|
75
81
|
"build:doc-index": "node scripts/build-doc-index.mjs",
|
|
76
82
|
"typecheck": "tsc --noEmit",
|
|
@@ -79,10 +85,12 @@
|
|
|
79
85
|
"format": "prettier --write .",
|
|
80
86
|
"format:check": "prettier --check .",
|
|
81
87
|
"test": "tsx --test 'src/**/*.test.ts'",
|
|
88
|
+
"arch:check": "depcruise src --config .dependency-cruiser.cjs",
|
|
89
|
+
"channel:parity": "tsx scripts/channel-parity.mjs",
|
|
82
90
|
"omnish": "tsx src/index.ts",
|
|
83
91
|
"link": "tsx src/index.ts link",
|
|
84
92
|
"run": "tsx src/index.ts run",
|
|
85
|
-
"local": "omnish stop
|
|
93
|
+
"local": "omnish stop || true; node scripts/build-bundle.mjs && npm link && omnish start",
|
|
86
94
|
"logout": "tsx src/index.ts logout"
|
|
87
95
|
}
|
|
88
96
|
}
|