machinaos 0.0.39 → 0.0.41
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 +7 -0
- package/client/dist/assets/{index-D4OYAF84.js → index-XWFeL8Y6.js} +161 -161
- package/client/dist/index.html +1 -1
- package/client/package.json +1 -1
- package/client/src/Dashboard.tsx +4 -0
- package/client/src/components/CredentialsModal.tsx +2 -64
- package/client/src/components/ParameterRenderer.tsx +195 -0
- package/client/src/components/parameterPanel/InputSection.tsx +30 -1
- package/client/src/contexts/WebSocketContext.tsx +17 -0
- package/client/src/nodeDefinitions/crawleeNodes.ts +254 -0
- package/client/src/nodeDefinitions/whatsappNodes.ts +174 -5
- package/client/src/nodeDefinitions.ts +7 -1
- package/client/src/services/executionService.ts +3 -0
- package/install.sh +12 -1
- package/package.json +2 -2
- package/scripts/build.js +24 -11
- package/scripts/daemon.js +23 -3
- package/scripts/dev.js +2 -1
- package/scripts/docker.js +15 -4
- package/scripts/port_kill.py +4 -2
- package/scripts/serve-client.js +8 -1
- package/scripts/utils.js +33 -2
- package/server/Dockerfile +3 -0
- package/server/config/model_registry.json +87 -106
- package/server/pyproject.toml +4 -0
- package/server/routers/websocket.py +7 -0
- package/server/routers/whatsapp.py +52 -3
- package/server/services/ai.py +73 -5
- package/server/services/event_waiter.py +9 -0
- package/server/services/google_oauth.py +7 -0
- package/server/services/handlers/__init__.py +5 -0
- package/server/services/handlers/crawlee.py +324 -0
- package/server/services/handlers/tools.py +117 -3
- package/server/services/handlers/whatsapp.py +369 -1
- package/server/services/node_executor.py +3 -0
- package/server/skills/social_agent/whatsapp-db-skill/SKILL.md +131 -3
- package/server/skills/social_agent/whatsapp-send-skill/SKILL.md +22 -8
- package/server/skills/web_agent/crawlee-scraper-skill/SKILL.md +61 -0
- package/server/start.sh +1 -1
- package/workflows/AI Employee.json +1308 -0
package/README.md
CHANGED
|
@@ -72,17 +72,24 @@ Create AI agents that remember conversations, use tools, and work together. Choo
|
|
|
72
72
|
### Control Your Devices
|
|
73
73
|
- Send WhatsApp messages automatically
|
|
74
74
|
- Post to Twitter/X
|
|
75
|
+
- Send Telegram messages via bot
|
|
75
76
|
- Control your Android phone (WiFi, Bluetooth, apps, camera)
|
|
76
77
|
- Schedule tasks and reminders
|
|
77
78
|
|
|
78
79
|
### Process Documents
|
|
79
80
|
- Scrape websites
|
|
81
|
+
- Route requests through residential proxies with geo-targeting
|
|
82
|
+
- Run Apify actors for social media and search engine scraping
|
|
80
83
|
- Parse PDFs and documents
|
|
81
84
|
- Search your files with AI
|
|
82
85
|
|
|
83
86
|
### Build Agent Teams
|
|
84
87
|
Create teams of specialized agents that delegate tasks to each other - a coding agent, a web agent, and a task agent working together.
|
|
85
88
|
|
|
89
|
+
### Run Code
|
|
90
|
+
- Execute Python, JavaScript, and TypeScript code
|
|
91
|
+
- Persistent Node.js server for fast JS/TS execution
|
|
92
|
+
|
|
86
93
|
## Visual Workflow Builder
|
|
87
94
|
|
|
88
95
|
Drag-and-drop interface to connect AI models, services, and triggers. No code required.
|