automyx-publish 2.5.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.
Files changed (3) hide show
  1. package/README.md +308 -0
  2. package/index.mjs +65 -0
  3. package/package.json +27 -0
package/README.md ADDED
@@ -0,0 +1,308 @@
1
+ <div align="center">
2
+ <img src="assets/logo.png" alt="Automyx Logo" width="150">
3
+
4
+ <h1>AUTOMYX</h1>
5
+ <h3>Professional Automation Suite with AI</h3>
6
+
7
+ <p>The most advanced AI automation engine with full system control, 2D/3D professional editing, real-time voice, and 100% impactful autonomy.</p>
8
+
9
+ <p>
10
+ <a href="#features">Features</a> •
11
+ <a href="#installation">Installation</a> •
12
+ <a href="#getting-started">Getting Started</a> •
13
+ <a href="#license">License</a>
14
+ </p>
15
+ </div>
16
+
17
+ ---
18
+
19
+ ## 📖 What is Automyx?
20
+
21
+ Automyx is an open-source, all-in-one artificial intelligence automation suite that provides:
22
+ - Full control over your computer (terminal, file management, app opening)
23
+ - Professional 2D image and 3D model editing with Blender integration
24
+ - Real-time voice interaction
25
+ - Project Autopilot for autonomous project management
26
+ - Universal App Control for any desktop app
27
+ - Support for both cloud and local AI models (via Ollama)
28
+
29
+ ---
30
+
31
+ ## 🚀 Features
32
+
33
+ ### Unique Features
34
+ - **AUMFORMBRING™**: Auto-learning and self-improvement system
35
+ - **Project Autopilot™**: Full project autonomy (analyze, detect bugs, fix, document)
36
+ - **Universal App Control™**: Total control over any desktop app using UI automation
37
+ - **Professional Gateway**: Advanced security system with access tokens
38
+ - **Fixed Port 3500**: Always accessible at http://localhost:3500
39
+
40
+ ### Professional 2D & 3D Editing
41
+ - Blender integration: Create, edit, animate, and render professional 3D models
42
+ - 3D primitives (cubes, spheres, toruses, cylinders, cones)
43
+ - Materials, textures, and transformations
44
+ - Animations and rendering
45
+ - Model import/export
46
+ - Professional Photo Editor: Advanced image editing with Pillow
47
+ - Resize, crop, rotate, flip
48
+ - Brightness, contrast, saturation, and exposure adjustments
49
+ - Professional filters
50
+ - Watermarks (text and image)
51
+ - Thumbnails and collages
52
+
53
+ ### Real-Time Voice
54
+ - **ElevenLabs TTS**: Natural and professional voice
55
+ - **Speech Recognition**: Talk directly to Automyx
56
+ - **Real-Time Calls**: Fluid and natural conversations
57
+
58
+ ### System Control
59
+ - **Integrated Terminal**: Execute PowerShell/CMD commands
60
+ - **File Management**: Read, write, copy, move, delete
61
+ - **Open Programs**: Launch any application
62
+ - **UI Automation**: Click, type, hotkeys, drag & drop
63
+ - **Screenshots**: Take screenshots of specific regions
64
+
65
+ ### Web & Networks
66
+ - **Web Search**: Advanced searches
67
+ - **Browser Control**: Open sites, fill out forms, analyze content
68
+ - **Social Networks**: WhatsApp, Telegram, TikTok, Facebook
69
+ - **OSINT**: Open-source intelligence
70
+
71
+ ### Data & DevOps
72
+ - **Data Analysis**: CSV, charts
73
+ - **Docker Management**: Container control
74
+ - **Git Integration**: Automatic commits, pushes, pulls
75
+
76
+ ### Audio & Video
77
+ - **Auto-Tune**: Professional voice effects
78
+ - **Mixing & Mastering**: Studio-quality audio
79
+ - **Video Editing**: Crop, concatenate, subtitles, effects
80
+
81
+ ### AI & Agents
82
+ - **Multi-Agent**: Create and manage multiple agents with different personalities
83
+ - **Skills System**: Extensible skill system
84
+ - **Persistent Memory**: Remembers past conversations
85
+ - **Ollama Support**: Local models for maximum privacy
86
+
87
+ ---
88
+
89
+ ## 💻 Installation
90
+
91
+ ### Prerequisites
92
+ - Python 3.10 or higher
93
+ - [Ollama](https://ollama.ai/) (optional, for local models)
94
+ - [Blender](https://www.blender.org/) (optional, for 3D tools)
95
+
96
+ ### Step 1: Clone or download the project
97
+ ```bash
98
+ git clone <your-repository-url>
99
+ cd "AUTOMIX 2.5win, mac, rasberry pi"
100
+ ```
101
+
102
+ ### Step 2: Install Python dependencies
103
+ ```bash
104
+ pip install -r requirements.txt
105
+ ```
106
+
107
+ ### Step 3: Install the npm wrapper (for `ollama launch`)
108
+ ```bash
109
+ cd npm-package
110
+ npm install -g .
111
+ ```
112
+
113
+ ### Step 4: Run Automyx
114
+ ```bash
115
+ # Option 1: Using ollama launch (like OpenClaw)
116
+ ollama launch automyx --model llama3.1:8b
117
+
118
+ # Option 2: Using the CLI
119
+ python automix.py gateway
120
+
121
+ # Option 3: Using the npm CLI
122
+ automyx
123
+ ```
124
+
125
+ ### Step 5: Access the interface
126
+ Open your browser and go to: http://localhost:3500
127
+
128
+ **IMPORTANT**: Copy the gateway token that appears in the terminal and paste it into the interface to connect!
129
+
130
+ ---
131
+
132
+ ## 📚 Tutorial - Getting Started
133
+
134
+ ### Using the Web Interface (Easiest)
135
+ 1. Start Automyx (see Installation above)
136
+ 2. Open http://localhost:3500 in your browser
137
+ 3. Use the chat to talk directly to Automyx
138
+ 4. You have access to all tools and options!
139
+
140
+ ### Using the CLI
141
+ ```bash
142
+ # See all available commands
143
+ python automix.py --help
144
+
145
+ # See help for a specific command
146
+ python automix.py gateway --help
147
+ ```
148
+
149
+ ### Using Ollama (Local Models)
150
+ Automyx supports local models via Ollama for maximum privacy:
151
+ 1. Make sure Ollama is installed and running locally
152
+ 2. List installed Ollama models:
153
+ ```bash
154
+ python automix.py ollama list
155
+ ```
156
+
157
+ ### Using the Custom Automyx Ollama Model
158
+ You can create a custom Ollama model with Automyx's system prompt using the included Modelfile:
159
+ 1. Build the custom model:
160
+ ```bash
161
+ ollama create NEXORATECHNOLOGYGEO/automyx -f Modelfile
162
+ ```
163
+ 2. Run the custom model:
164
+ ```bash
165
+ ollama run NEXORATECHNOLOGYGEO/automyx
166
+ ```
167
+ 3. Or use it with Automyx:
168
+ ```bash
169
+ python automix.py ollama launch --model NEXORATECHNOLOGYGEO/automyx --location local
170
+ ```
171
+
172
+ ### Publishing to Ollama
173
+ To publish your model to Ollama for others to use:
174
+ 1. Login to Ollama with your `NEXORATECHNOLOGYGEO` account:
175
+ ```bash
176
+ ollama login
177
+ ```
178
+ 2. Push your model:
179
+ ```bash
180
+ ollama push NEXORATECHNOLOGYGEO/automyx
181
+ ```
182
+ 3. Now anyone can use your model:
183
+ ```bash
184
+ ollama pull NEXORATECHNOLOGYGEO/automyx
185
+ ```
186
+ 3. Download a model if you don't have one:
187
+ ```bash
188
+ python automix.py ollama pull llama3.2:1b
189
+ ```
190
+ 4. Launch Automyx with a local Ollama model:
191
+ ```bash
192
+ # Option 1: Using the CLI
193
+ python automix.py ollama launch --model llama3.2:1b --location local
194
+
195
+ # Option 2: Using ollama_launch.py
196
+ python ollama_launch.py --model llama3.2:1b --location local
197
+
198
+ # Option 3: Using an environment variable
199
+ $env:AUTOMYX_MODEL="ollama/llama3.2:1b" # Windows PowerShell
200
+ # export AUTOMYX_MODEL="ollama/llama3.2:1b" # macOS/Linux
201
+ python automix.py gateway
202
+ ```
203
+
204
+ ### Using the API (For Developers)
205
+ Automyx comes with a complete REST API to integrate it into your projects:
206
+ - Base URL: http://localhost:3500
207
+ - Authentication: A token is required (generated when starting the server)
208
+
209
+ ### Using the Python Client
210
+ You can import and use Automyx directly in your Python scripts:
211
+ ```python
212
+ from core.agent import AutomyxAgent
213
+
214
+ agent = AutomyxAgent()
215
+ response = agent.run("Tell me a joke")
216
+ print(response)
217
+ ```
218
+
219
+ ---
220
+
221
+ ## 🔧 All Automyx Tools
222
+
223
+ | Category | Tools |
224
+ |-----------|--------------|
225
+ | System | Execute commands, file management, open programs, screenshot |
226
+ | Blender 3D | Create objects, materials, animations, render, import/export |
227
+ | Photo Editor | Edit photos, filters, watermarks, collages |
228
+ | Project Autopilot | Analyze project, detect bugs, auto-improve, git, docs |
229
+ | Universal App Control | Activate windows, click, type, hotkeys, automate sequences |
230
+ | AUMFORMBRING | Auto-learning, memory, patterns, self-improvement, learned skills |
231
+ | Web | Search, browser, scraping, form filler |
232
+ | Social Networks | WhatsApp, Telegram, TikTok, Facebook |
233
+ | Audio/Video | Auto-tune, mix, edit video, subtitles |
234
+ | Data | CSV analysis, charts, Excel |
235
+ | DevOps | Docker, system resources |
236
+ | Email | Read emails, create drafts |
237
+ | HR | Read PDFs, CVs |
238
+ | Skills | Create and manage custom skills |
239
+ | Voice | ElevenLabs TTS, speech recognition |
240
+ | Scheduled Tasks | Cron jobs, automation |
241
+
242
+ ---
243
+
244
+ ## 📝 AUMFORMBRING - The Self-Learning Brain
245
+
246
+ AUMFORMBRING is Automyx's revolutionary self-learning system:
247
+ - **Perpetual Memory**: Automatically stores all your conversations
248
+ - **Pattern Extraction**: Learns what you frequently ask for
249
+ - **Auto-Created Skills**: When you ask "how" to do something, it saves it as a new skill
250
+ - **Continuous Self-Improvement**: Analyzes its own performance and optimizes itself
251
+ - **Smart Recall**: Remembers similar conversations to respond better
252
+
253
+ ### AUMFORMBRING Commands
254
+ - "Show me your learning statistics"
255
+ - "What skills have you learned?"
256
+ - "Remember a conversation similar to [something]"
257
+ - "Search your memory about [topic]"
258
+ - "Perform a self-improvement"
259
+ - "Create a custom skill"
260
+
261
+ ---
262
+
263
+ ## 🔒 Security
264
+
265
+ Automyx includes a professional security system with:
266
+ - Unique gateway token generated on every startup
267
+ - Mandatory verification for all API requests
268
+ - Fixed port 3500 for secure access
269
+ - Token configuration screen in the interface
270
+
271
+ ---
272
+
273
+ ## 📄 License
274
+
275
+ This project is open-source and licensed under the [MIT License](LICENSE).
276
+
277
+ ---
278
+
279
+ ## 💡 Usage Examples
280
+
281
+ ### Blender 3D
282
+ > "Create a red cube in Blender, place it in the center, and render an image"
283
+
284
+ ### Photo Editing
285
+ > "Open the photo 'vacations.jpg', increase brightness by 20%, add a watermark with my name, and save it as 'vacations_edited.jpg'"
286
+
287
+ ### Project Autopilot
288
+ > "Analyze my project, detect bugs, and fix them"
289
+
290
+ ### Universal App Control
291
+ > "Open Notepad, type 'Hello from Automyx!', save the file, and close the window"
292
+
293
+ ### Real-Time Voice
294
+ > Activate the voice button in the interface and talk directly to Automyx
295
+
296
+ ### AUMFORMBRING - Auto-Learning
297
+ > "What skills have you learned so far?"
298
+ > "Show me your learning statistics"
299
+ > "Search your memory about Blender"
300
+ > "Perform a self-improvement"
301
+
302
+ ---
303
+
304
+ <div align="center">
305
+ <strong>Designed, Developed & Presented by NEXORA TECHNOLOGY LLC</strong>
306
+ <br>
307
+ Version 2.5 - Ultra Elite
308
+ </div>
package/index.mjs ADDED
@@ -0,0 +1,65 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { spawn } from 'child_process';
4
+ import { fileURLToPath } from 'url';
5
+ import { dirname, join } from 'path';
6
+ import { existsSync } from 'fs';
7
+
8
+ const __filename = fileURLToPath(import.meta.url);
9
+ const __dirname = dirname(__filename);
10
+
11
+ // Parse arguments (--model, --location, etc.)
12
+ const args = process.argv.slice(2);
13
+ const modelIndex = args.indexOf('--model');
14
+ const locationIndex = args.indexOf('--location');
15
+
16
+ let model = 'llama3.1:8b';
17
+ let location = 'local';
18
+
19
+ if (modelIndex !== -1 && args[modelIndex + 1]) {
20
+ model = args[modelIndex + 1];
21
+ }
22
+
23
+ if (locationIndex !== -1 && args[locationIndex + 1]) {
24
+ location = args[locationIndex + 1];
25
+ }
26
+
27
+ // Find the Python automyx script
28
+ const ollamaLaunchPy = join(__dirname, '..', 'ollama_launch.py');
29
+ const automyxPy = join(__dirname, '..', 'automix.py');
30
+
31
+ let scriptToRun = null;
32
+ let scriptArgs = [];
33
+
34
+ if (existsSync(ollamaLaunchPy)) {
35
+ scriptToRun = ollamaLaunchPy;
36
+ scriptArgs = ['--model', model, '--location', location];
37
+ } else if (existsSync(automyxPy)) {
38
+ scriptToRun = automyxPy;
39
+ scriptArgs = ['ollama', 'launch', '--model', model, '--location', location];
40
+ } else {
41
+ console.error('❌ Automyx scripts not found!');
42
+ process.exit(1);
43
+ }
44
+
45
+ console.log('🚀 Launching Automyx...');
46
+ console.log(` Model: ${model}`);
47
+ console.log(` Location: ${location}`);
48
+
49
+ // Run the Python script
50
+ const pythonProcess = spawn('python', [scriptToRun, ...scriptArgs], {
51
+ stdio: 'inherit',
52
+ cwd: join(__dirname, '..')
53
+ });
54
+
55
+ pythonProcess.on('error', (err) => {
56
+ console.error('❌ Failed to start Automyx:', err);
57
+ process.exit(1);
58
+ });
59
+
60
+ pythonProcess.on('exit', (code) => {
61
+ if (code !== 0) {
62
+ console.error(`❌ Automyx exited with code ${code}`);
63
+ }
64
+ process.exit(code);
65
+ });
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "automyx-publish",
3
+ "version": "2.5.0",
4
+ "description": "Automyx - Professional AI automation suite with full system control, 2D/3D editing, and real-time voice capabilities",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "NEXORA TECHNOLOGY LLC",
8
+ "homepage": "https://github.com/NEXORATECHNOLOGYGEO/automyx",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/NEXORATECHNOLOGYGEO/automyx.git"
12
+ },
13
+ "bin": {
14
+ "automyx": "index.mjs"
15
+ },
16
+ "files": [
17
+ "index.mjs",
18
+ "README.md"
19
+ ],
20
+ "keywords": [
21
+ "ai",
22
+ "automation",
23
+ "ollama",
24
+ "agent",
25
+ "openclaw"
26
+ ]
27
+ }