machinaos 0.0.29 → 0.0.30
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 -5
- package/client/dist/assets/{index-D2gw60bu.js → index-CrO9AyeN.js} +157 -108
- package/client/dist/index.html +1 -1
- package/client/package.json +1 -1
- package/client/src/Dashboard.tsx +3 -0
- package/client/src/assets/icons/google/calendar.svg +12 -0
- package/client/src/assets/icons/google/contacts.svg +5 -0
- package/client/src/assets/icons/google/drive.svg +10 -0
- package/client/src/assets/icons/google/gmail.svg +7 -0
- package/client/src/assets/icons/google/index.ts +34 -0
- package/client/src/assets/icons/google/sheets.svg +8 -0
- package/client/src/assets/icons/google/tasks.svg +7 -0
- package/client/src/components/CredentialsModal.tsx +33 -20
- package/client/src/components/SquareNode.tsx +2 -13
- package/client/src/components/parameterPanel/InputSection.tsx +153 -0
- package/client/src/components/ui/ComponentItem.tsx +9 -7
- package/client/src/contexts/WebSocketContext.tsx +2 -2
- package/client/src/nodeDefinitions/calendarNodes.ts +393 -0
- package/client/src/nodeDefinitions/contactsNodes.ts +455 -0
- package/client/src/nodeDefinitions/driveNodes.ts +372 -0
- package/client/src/nodeDefinitions/gmailNodes.ts +1 -14
- package/client/src/nodeDefinitions/sheetsNodes.ts +276 -0
- package/client/src/nodeDefinitions/tasksNodes.ts +364 -0
- package/client/src/nodeDefinitions.ts +31 -1
- package/client/src/services/executionService.ts +14 -1
- package/client/src/vite-env.d.ts +6 -0
- package/package.json +1 -1
- package/server/config/google_apis.json +116 -0
- package/server/config/pricing.json +109 -0
- package/server/core/config.py +2 -1
- package/server/core/database.py +51 -33
- package/server/main.py +3 -3
- package/server/models/database.py +7 -6
- package/server/routers/{gmail.py → google.py} +56 -53
- package/server/routers/websocket.py +32 -32
- package/server/services/ai.py +506 -0
- package/server/services/{gmail_oauth.py → google_oauth.py} +144 -27
- package/server/services/handlers/calendar.py +444 -0
- package/server/services/handlers/contacts.py +522 -0
- package/server/services/handlers/drive.py +476 -0
- package/server/services/handlers/gmail.py +10 -10
- package/server/services/handlers/sheets.py +323 -0
- package/server/services/handlers/tasks.py +444 -0
- package/server/services/handlers/tools.py +390 -0
- package/server/services/node_executor.py +43 -0
- package/server/skills/GUIDE.md +50 -11
- package/server/skills/productivity_agent/calendar-skill/SKILL.md +161 -0
- package/server/skills/productivity_agent/contacts-skill/SKILL.md +188 -0
- package/server/skills/productivity_agent/drive-skill/SKILL.md +202 -0
- package/server/skills/productivity_agent/gmail-skill/SKILL.md +140 -0
- package/server/skills/productivity_agent/sheets-skill/SKILL.md +181 -0
- package/server/skills/productivity_agent/tasks-skill/SKILL.md +183 -0
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<a href="https://opensource.org/licenses/MIT" target="_blank"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
|
|
5
5
|
<a href="https://discord.gg/NHUEQVSC" target="_blank"><img src="https://img.shields.io/discord/1455977012308086895?logo=discord&logoColor=white&label=Discord" alt="Discord"></a>
|
|
6
6
|
|
|
7
|
-
Open-source platform to build your own personal AI assistant. A mashup of
|
|
7
|
+
Open-source platform to build your own personal AI assistant. A mashup of clawdbot/openclaw and n8n with better UI, full visibility of each action, and restricted control access.
|
|
8
8
|
|
|
9
9
|
## Demo
|
|
10
10
|
|
|
@@ -14,7 +14,7 @@ Open-source platform to build your own personal AI assistant. A mashup of Claude
|
|
|
14
14
|
|
|
15
15
|
<img width="1280" height="671" alt="func_img" src="https://github.com/user-attachments/assets/2f14b6c8-3995-4ccc-b076-e40749a83df2" />
|
|
16
16
|
|
|
17
|
-
**
|
|
17
|
+
**109 nodes** | **6 AI providers** | **13 specialized agents** | **Agent Teams** | **WebSocket-first** | **Self-hosted**
|
|
18
18
|
|
|
19
19
|
## Prerequisites
|
|
20
20
|
|
|
@@ -76,6 +76,7 @@ npm run start
|
|
|
76
76
|
|
|
77
77
|
### Platform Integrations
|
|
78
78
|
|
|
79
|
+
- **Google Workspace** - Gmail, Calendar, Drive, Sheets, Tasks, Contacts with unified OAuth
|
|
79
80
|
- **WhatsApp** - Send/receive messages with QR pairing, filters, group support
|
|
80
81
|
- **Twitter/X** - Send tweets, search, user lookup with OAuth 2.0 authentication
|
|
81
82
|
- **Android** - 16 service nodes for device control (battery, WiFi, Bluetooth, apps, camera, sensors)
|
|
@@ -122,15 +123,16 @@ Build teams of specialized agents that work together on complex tasks:
|
|
|
122
123
|
| Specialized Agents | 13 | Android, Coding, Web, Task, Social, Travel, Orchestrator, etc. |
|
|
123
124
|
| AI Skills | 11 | WhatsApp, Maps, HTTP, Scheduler, Android, Code, etc. |
|
|
124
125
|
| AI Tools | 9 | Calculator, Time, Search, Android Toolkit, Code Executors |
|
|
126
|
+
| Google Workspace | 26 | Gmail, Calendar, Drive, Sheets, Tasks, Contacts |
|
|
125
127
|
| WhatsApp | 3 | Send, Receive, Database |
|
|
126
|
-
| Twitter |
|
|
128
|
+
| Twitter | 4 | Send, Search, User, Receive |
|
|
127
129
|
| Android | 16 | Device control and monitoring |
|
|
128
130
|
| Documents | 6 | RAG pipeline nodes |
|
|
129
131
|
| Utilities | 6 | HTTP, Webhooks, Chat Trigger, Console, Team Monitor |
|
|
130
132
|
| Location | 3 | Google Maps integration |
|
|
131
|
-
| Workflow |
|
|
133
|
+
| Workflow | 2 | Start, Task Trigger |
|
|
132
134
|
|
|
133
|
-
**Total:
|
|
135
|
+
**Total: 109 nodes**
|
|
134
136
|
|
|
135
137
|
## CLI Commands
|
|
136
138
|
|