zilmate 1.10.3 → 1.10.4
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/README.md +364 -360
- package/SDK.md +1 -1
- package/dist/agents/manager.d.ts.map +1 -1
- package/dist/agents/manager.js +18 -3
- package/dist/agents/manager.js.map +1 -1
- package/dist/cli/doctor.d.ts.map +1 -1
- package/dist/cli/doctor.js +27 -0
- package/dist/cli/doctor.js.map +1 -1
- package/dist/cli/format.d.ts.map +1 -1
- package/dist/cli/format.js +183 -38
- package/dist/cli/format.js.map +1 -1
- package/dist/cli/setup.d.ts.map +1 -1
- package/dist/cli/setup.js +1 -0
- package/dist/cli/setup.js.map +1 -1
- package/dist/config/env.d.ts +1 -0
- package/dist/config/env.d.ts.map +1 -1
- package/dist/config/env.js +1 -0
- package/dist/config/env.js.map +1 -1
- package/dist/daemon/mac-installer.d.ts +4 -0
- package/dist/daemon/mac-installer.d.ts.map +1 -0
- package/dist/daemon/mac-installer.js +353 -0
- package/dist/daemon/mac-installer.js.map +1 -0
- package/dist/daemon/service.d.ts +15 -0
- package/dist/daemon/service.d.ts.map +1 -0
- package/dist/daemon/service.js +196 -0
- package/dist/daemon/service.js.map +1 -0
- package/dist/daemon/win-listener.ps1 +222 -0
- package/dist/index.js +48 -1
- package/dist/index.js.map +1 -1
- package/dist/runtime/progress.d.ts +7 -0
- package/dist/runtime/progress.d.ts.map +1 -1
- package/dist/runtime/progress.js +10 -0
- package/dist/runtime/progress.js.map +1 -1
- package/dist/runtime/swarm.d.ts.map +1 -1
- package/dist/runtime/swarm.js +19 -12
- package/dist/runtime/swarm.js.map +1 -1
- package/install.ps1 +1 -1
- package/package.json +6 -5
- package/scripts/copy-resources.mjs +18 -0
- package/scripts/release-github.mjs +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zilmate",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.4",
|
|
4
4
|
"description": "Production-grade CLI multi-agent AI assistant, real-time voice controller, and automated background job scheduler for local and cloud environments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/server.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"build": "tsc",
|
|
23
|
+
"build": "tsc && node scripts/copy-resources.mjs",
|
|
24
24
|
"cli": "tsx src/index.ts",
|
|
25
25
|
"zilmate": "tsx src/index.ts",
|
|
26
26
|
"zilmate chat": "tsx src/index.ts chat",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"config": "tsx src/index.ts config",
|
|
33
33
|
"memory": "tsx src/index.ts memory",
|
|
34
34
|
"triggers": "tsx src/index.ts triggers",
|
|
35
|
+
"daemon": "tsx src/index.ts daemon",
|
|
35
36
|
"test": "npm run build",
|
|
36
37
|
"prepare": "npm run build",
|
|
37
38
|
"postinstall": "node scripts/postinstall.mjs",
|
|
@@ -110,12 +111,12 @@
|
|
|
110
111
|
],
|
|
111
112
|
"repository": {
|
|
112
113
|
"type": "git",
|
|
113
|
-
"url": "git+https://github.com/zester4/
|
|
114
|
+
"url": "git+https://github.com/zester4/zilmate.git"
|
|
114
115
|
},
|
|
115
116
|
"bugs": {
|
|
116
|
-
"url": "https://github.com/zester4/
|
|
117
|
+
"url": "https://github.com/zester4/zilmate/issues"
|
|
117
118
|
},
|
|
118
|
-
"homepage": "https://github.com/zester4/
|
|
119
|
+
"homepage": "https://github.com/zester4/zilmate#readme",
|
|
119
120
|
"engines": {
|
|
120
121
|
"node": ">=20.0.0"
|
|
121
122
|
},
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { copyFileSync, mkdirSync } from 'node:fs';
|
|
2
|
+
import { join, dirname } from 'node:path';
|
|
3
|
+
import { fileURLToPath } from 'node:url';
|
|
4
|
+
|
|
5
|
+
const __dirname = fileURLToPath(new URL('.', import.meta.url));
|
|
6
|
+
const projectRoot = join(__dirname, '..');
|
|
7
|
+
|
|
8
|
+
const srcPs1 = join(projectRoot, 'src', 'daemon', 'win-listener.ps1');
|
|
9
|
+
const destPs = join(projectRoot, 'dist', 'daemon', 'win-listener.ps1');
|
|
10
|
+
|
|
11
|
+
try {
|
|
12
|
+
mkdirSync(dirname(destPs), { recursive: true });
|
|
13
|
+
copyFileSync(srcPs1, destPs);
|
|
14
|
+
console.log('✓ Copied win-listener.ps1 to dist/daemon/');
|
|
15
|
+
} catch (error) {
|
|
16
|
+
console.error('Failed to copy win-listener.ps1:', error);
|
|
17
|
+
process.exit(1);
|
|
18
|
+
}
|
|
@@ -27,6 +27,10 @@ zilmate status
|
|
|
27
27
|
|
|
28
28
|
## 🌌 Swarm Architecture Highlights (Digital Corporation Blueprint)
|
|
29
29
|
|
|
30
|
+
- **🌐 ZilMate Ubiquity Background Service** — Zero-dependency background service offering system-wide hotkeys:
|
|
31
|
+
- **Global Hotkey Integration**: Press \`Ctrl+Shift+Z\` (Windows) or \`Cmd+Shift+Z\` (macOS) in any application (Notion, WhatsApp, browser, etc.) to intercept, process, and replace selected text in-place.
|
|
32
|
+
- **Zero-Dependency Native Listeners**: PowerShell-compiled WinForms hooks on Windows, and programmatically constructed native Service Workflows on macOS.
|
|
33
|
+
- **Secure Local API Daemon**: High-speed communication protected by single-use bearer tokens, guarding from cross-origin hijacking.
|
|
30
34
|
- **🏛️ Departmental Topology** — Organizes 30+ AI specialists across 6 core corporate divisions:
|
|
31
35
|
- **Strategy & Product** (Product Manager, UX Researcher, Market Analyst)
|
|
32
36
|
- **Engineering & Creative** (Architect, Full-Stack Coder, QA Engineer, SRE, Video Producer, Security Auditors)
|
|
@@ -40,6 +44,7 @@ zilmate status
|
|
|
40
44
|
- **🛡️ Semantic Approvals Firewall (\`approvals.ts\`)** — Intercepts filesystem and terminal commands via high-speed regex checks and low-latency LLM guardrails to prevent OWASP and host shell exploits.
|
|
41
45
|
- **🛑 Departmental Suspension** — Safe-guards operation by enabling operators to halt or resume specific departments at any time without halting the global swarm.
|
|
42
46
|
|
|
47
|
+
|
|
43
48
|
## 🛠️ Also Included in the 1.10.x Release Train
|
|
44
49
|
- **☁️ Cloud Storage Integration** — Stream-safe chunked uploads, recursive directory purging, and timed pre-signed URL generation.
|
|
45
50
|
- **🎙️ Multimedia Engine** — Resilient 3-tier Speech-to-text and Text-To-Speech pipelines featuring offline native OS speech synthesis engine fallbacks.
|
|
@@ -83,7 +88,7 @@ run(
|
|
|
83
88
|
'create',
|
|
84
89
|
tag,
|
|
85
90
|
'--repo',
|
|
86
|
-
'zester4/
|
|
91
|
+
'zester4/zilmate',
|
|
87
92
|
'--title',
|
|
88
93
|
title,
|
|
89
94
|
'--notes-file',
|