vortix 1.0.5 → 1.2.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 +86 -0
- package/README.md +132 -23
- package/agent/agent.js +820 -134
- package/agent/package.json +2 -1
- package/bin/vortix.js +29 -2
- package/package.json +32 -5
package/agent/package.json
CHANGED
package/bin/vortix.js
CHANGED
|
@@ -53,9 +53,14 @@ function showHelp() {
|
|
|
53
53
|
console.log(' 📚 Available Commands:\n');
|
|
54
54
|
console.log(' vortix login Set device password');
|
|
55
55
|
console.log(' vortix start Start the agent');
|
|
56
|
-
console.log(' vortix
|
|
56
|
+
console.log(' vortix enable-autostart Enable auto-start on system boot');
|
|
57
|
+
console.log(' vortix disable-autostart Disable auto-start');
|
|
58
|
+
console.log(' vortix status Check agent and auto-start status');
|
|
57
59
|
console.log(' vortix help Show this help message');
|
|
58
60
|
console.log('');
|
|
61
|
+
console.log(' ☁️ Cloud Backend:');
|
|
62
|
+
console.log(' Backend runs automatically in the cloud - no setup required!');
|
|
63
|
+
console.log('');
|
|
59
64
|
console.log(' 📖 Documentation:');
|
|
60
65
|
console.log(' https://github.com/Vaibhav262610/vortix');
|
|
61
66
|
console.log('');
|
|
@@ -117,8 +122,30 @@ switch (command) {
|
|
|
117
122
|
runAgent('start');
|
|
118
123
|
break;
|
|
119
124
|
|
|
125
|
+
case 'enable-autostart':
|
|
126
|
+
runAgent('enable-autostart');
|
|
127
|
+
break;
|
|
128
|
+
|
|
129
|
+
case 'disable-autostart':
|
|
130
|
+
runAgent('disable-autostart');
|
|
131
|
+
break;
|
|
132
|
+
|
|
133
|
+
case 'status':
|
|
134
|
+
runAgent('status');
|
|
135
|
+
break;
|
|
136
|
+
|
|
120
137
|
case 'backend':
|
|
121
|
-
|
|
138
|
+
console.log('');
|
|
139
|
+
console.log('🚀 Backend is now cloud-hosted!');
|
|
140
|
+
console.log('');
|
|
141
|
+
console.log('The Vortix backend runs automatically in the cloud.');
|
|
142
|
+
console.log('No need to start it manually - just use:');
|
|
143
|
+
console.log('');
|
|
144
|
+
console.log(' vortix login # Set up your device');
|
|
145
|
+
console.log(' vortix start # Start the agent');
|
|
146
|
+
console.log('');
|
|
147
|
+
console.log('Then visit: https://vortixai.vercel.app');
|
|
148
|
+
console.log('');
|
|
122
149
|
break;
|
|
123
150
|
|
|
124
151
|
default:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vortix",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "AI-powered OS control system with
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "AI-powered remote OS control system with natural language commands, real-time monitoring, and modern web dashboard",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"vortix": "./bin/vortix.js"
|
|
@@ -15,7 +15,27 @@
|
|
|
15
15
|
"remote-control",
|
|
16
16
|
"cli",
|
|
17
17
|
"os-control",
|
|
18
|
-
"agent"
|
|
18
|
+
"agent",
|
|
19
|
+
"nodejs",
|
|
20
|
+
"websocket",
|
|
21
|
+
"command-execution",
|
|
22
|
+
"screen-sharing",
|
|
23
|
+
"file-transfer",
|
|
24
|
+
"multi-device",
|
|
25
|
+
"real-time-monitoring",
|
|
26
|
+
"system-stats",
|
|
27
|
+
"natural-language",
|
|
28
|
+
"dashboard",
|
|
29
|
+
"mobile-support",
|
|
30
|
+
"cloud-backend",
|
|
31
|
+
"multi-platform",
|
|
32
|
+
"windows",
|
|
33
|
+
"macos",
|
|
34
|
+
"linux",
|
|
35
|
+
"typescript",
|
|
36
|
+
"nextjs",
|
|
37
|
+
"react",
|
|
38
|
+
"framer-motion"
|
|
19
39
|
],
|
|
20
40
|
"author": "Vaibhav Rajpoot <vaibhavrajpoot2626@gmail.com>",
|
|
21
41
|
"license": "MIT",
|
|
@@ -23,6 +43,11 @@
|
|
|
23
43
|
"type": "git",
|
|
24
44
|
"url": "https://github.com/Vaibhav262610/vortix.git"
|
|
25
45
|
},
|
|
46
|
+
"homepage": "https://vortixai.vercel.app",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/Vaibhav262610/vortix/issues",
|
|
49
|
+
"email": "vaibhavrajpoot2626@gmail.com"
|
|
50
|
+
},
|
|
26
51
|
"engines": {
|
|
27
52
|
"node": ">=14.0.0"
|
|
28
53
|
},
|
|
@@ -31,10 +56,12 @@
|
|
|
31
56
|
"agent/",
|
|
32
57
|
"backend/",
|
|
33
58
|
"scripts/",
|
|
34
|
-
"README.md"
|
|
59
|
+
"README.md",
|
|
60
|
+
"CHANGELOG.md"
|
|
35
61
|
],
|
|
36
62
|
"dependencies": {
|
|
37
63
|
"axios": "^1.6.0",
|
|
38
|
-
"ws": "^8.19.0"
|
|
64
|
+
"ws": "^8.19.0",
|
|
65
|
+
"screenshot-desktop": "^1.15.0"
|
|
39
66
|
}
|
|
40
67
|
}
|