vortix 1.2.0 → 1.2.1
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 +8 -0
- package/README.md +41 -35
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.1] - 2024-03-29
|
|
4
|
+
|
|
5
|
+
### 📝 Documentation
|
|
6
|
+
|
|
7
|
+
- **Improved README** - More professional documentation with reduced emojis
|
|
8
|
+
- **Better Formatting** - Cleaner structure and more natural tone
|
|
9
|
+
- **Enhanced Readability** - Less AI-generated appearance
|
|
10
|
+
|
|
3
11
|
## [1.2.0] - 2024-03-21
|
|
4
12
|
|
|
5
13
|
### 🎨 Major UI/UX Overhaul
|
package/README.md
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
# Vortix
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
AI-powered remote OS control system with natural language command execution,
|
|
4
|
+
real-time monitoring, and advanced device management.
|
|
5
5
|
|
|
6
|
-
##
|
|
6
|
+
## Features
|
|
7
7
|
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
8
|
+
- **AI Command Generation** - Convert natural language to system commands
|
|
9
|
+
- **Real-time System Monitoring** - CPU, Memory, and Disk usage tracking
|
|
10
|
+
- **Screen Sharing** - Live desktop streaming capabilities
|
|
11
|
+
- **File Transfer** - Upload and download files remotely
|
|
12
|
+
- **Multi-device Control** - Execute commands across multiple devices
|
|
13
|
+
- **Secure Authentication** - Password-protected device access
|
|
14
|
+
- **Auto-start on Boot** - Automatic agent startup
|
|
15
|
+
- **Modern Web Dashboard** - Responsive UI with mobile support
|
|
16
16
|
|
|
17
|
-
##
|
|
17
|
+
## Quick Start
|
|
18
18
|
|
|
19
19
|
### Installation
|
|
20
20
|
|
|
@@ -41,7 +41,7 @@ vortix start
|
|
|
41
41
|
|
|
42
42
|
That's it! No backend setup required - everything runs in the cloud.
|
|
43
43
|
|
|
44
|
-
##
|
|
44
|
+
## Commands
|
|
45
45
|
|
|
46
46
|
| Command | Description |
|
|
47
47
|
| -------------- | ------------------------------------- |
|
|
@@ -49,7 +49,7 @@ That's it! No backend setup required - everything runs in the cloud.
|
|
|
49
49
|
| `vortix start` | Start the agent on current machine |
|
|
50
50
|
| `vortix help` | Show help information |
|
|
51
51
|
|
|
52
|
-
##
|
|
52
|
+
## Use Cases
|
|
53
53
|
|
|
54
54
|
- **Remote Work** - Control your office computer from home
|
|
55
55
|
- **Server Management** - Monitor and manage remote servers
|
|
@@ -57,14 +57,14 @@ That's it! No backend setup required - everything runs in the cloud.
|
|
|
57
57
|
- **Home Automation** - Control your home PC from anywhere
|
|
58
58
|
- **Development** - Manage multiple development environments
|
|
59
59
|
|
|
60
|
-
##
|
|
60
|
+
## Architecture
|
|
61
61
|
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
62
|
+
- **Cloud Backend** - Hosted WebSocket server (always online)
|
|
63
|
+
- **Local Agent** - Runs on your devices, executes commands
|
|
64
|
+
- **Web Dashboard** - Modern React/Next.js interface
|
|
65
|
+
- **Secure Connection** - End-to-end encrypted communication
|
|
66
66
|
|
|
67
|
-
##
|
|
67
|
+
## Example Commands
|
|
68
68
|
|
|
69
69
|
Try these natural language commands in the dashboard:
|
|
70
70
|
|
|
@@ -77,7 +77,7 @@ Try these natural language commands in the dashboard:
|
|
|
77
77
|
"check disk space"
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
##
|
|
80
|
+
## Advanced Features
|
|
81
81
|
|
|
82
82
|
### Auto-start on Boot
|
|
83
83
|
|
|
@@ -99,7 +99,7 @@ Upload and download files directly through the web interface.
|
|
|
99
99
|
|
|
100
100
|
Execute the same command across multiple connected devices simultaneously.
|
|
101
101
|
|
|
102
|
-
##
|
|
102
|
+
## Dashboard Features
|
|
103
103
|
|
|
104
104
|
- **Command Center** - Execute commands with AI assistance
|
|
105
105
|
- **Device Management** - View and control all connected devices
|
|
@@ -108,20 +108,20 @@ Execute the same command across multiple connected devices simultaneously.
|
|
|
108
108
|
- **Screen Viewer** - Live desktop streaming
|
|
109
109
|
- **Mobile Support** - Full functionality on mobile devices
|
|
110
110
|
|
|
111
|
-
##
|
|
111
|
+
## Security
|
|
112
112
|
|
|
113
113
|
- Password-protected device authentication
|
|
114
114
|
- Secure WebSocket connections (WSS)
|
|
115
115
|
- Command approval system for dangerous operations
|
|
116
116
|
- No data stored on servers (commands executed locally)
|
|
117
117
|
|
|
118
|
-
##
|
|
118
|
+
## Supported Platforms
|
|
119
119
|
|
|
120
|
-
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
120
|
+
- Windows (7, 8, 10, 11)
|
|
121
|
+
- macOS (10.14+)
|
|
122
|
+
- Linux (Ubuntu, CentOS, Debian, etc.)
|
|
123
123
|
|
|
124
|
-
##
|
|
124
|
+
## Troubleshooting
|
|
125
125
|
|
|
126
126
|
### Agent won't connect?
|
|
127
127
|
|
|
@@ -141,15 +141,21 @@ Execute the same command across multiple connected devices simultaneously.
|
|
|
141
141
|
- Report issues on [GitHub](https://github.com/Vaibhav262610/vortix/issues)
|
|
142
142
|
- Contact support: vaibhavrajpoot2626@gmail.com
|
|
143
143
|
|
|
144
|
-
##
|
|
144
|
+
## What's New in v1.2.1
|
|
145
145
|
|
|
146
|
-
-
|
|
147
|
-
-
|
|
148
|
-
-
|
|
149
|
-
- 🔧 **Enhanced UI** - Better navigation and user experience
|
|
150
|
-
- 🌐 **Cloud-first Architecture** - No backend setup required
|
|
146
|
+
- **Improved Documentation** - More professional README with better formatting
|
|
147
|
+
- **Enhanced Readability** - Cleaner structure and natural tone
|
|
148
|
+
- **Better User Experience** - Less cluttered documentation
|
|
151
149
|
|
|
152
|
-
|
|
150
|
+
### Previous Updates (v1.2.0)
|
|
151
|
+
|
|
152
|
+
- **Redesigned Dashboard** - Modern Command Center interface
|
|
153
|
+
- **Mobile Optimization** - Perfect mobile experience
|
|
154
|
+
- **Performance Improvements** - Faster real-time updates
|
|
155
|
+
- **Enhanced UI** - Better navigation and user experience
|
|
156
|
+
- **Cloud-first Architecture** - No backend setup required
|
|
157
|
+
|
|
158
|
+
## License
|
|
153
159
|
|
|
154
160
|
MIT License - see
|
|
155
161
|
[LICENSE](https://github.com/Vaibhav262610/vortix/blob/main/LICENSE) for
|