cowork-os 0.3.21 → 0.3.23

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 (170) hide show
  1. package/README.md +293 -6
  2. package/connectors/README.md +20 -0
  3. package/connectors/asana-mcp/README.md +24 -0
  4. package/connectors/asana-mcp/dist/index.js +427 -0
  5. package/connectors/asana-mcp/package.json +15 -0
  6. package/connectors/asana-mcp/src/index.ts +553 -0
  7. package/connectors/asana-mcp/tsconfig.json +13 -0
  8. package/connectors/hubspot-mcp/README.md +35 -0
  9. package/connectors/hubspot-mcp/dist/index.js +454 -0
  10. package/connectors/hubspot-mcp/package.json +15 -0
  11. package/connectors/hubspot-mcp/src/index.ts +562 -0
  12. package/connectors/hubspot-mcp/tsconfig.json +13 -0
  13. package/connectors/jira-mcp/README.md +49 -0
  14. package/connectors/jira-mcp/dist/index.js +588 -0
  15. package/connectors/jira-mcp/package.json +15 -0
  16. package/connectors/jira-mcp/src/index.ts +711 -0
  17. package/connectors/jira-mcp/tsconfig.json +13 -0
  18. package/connectors/linear-mcp/README.md +22 -0
  19. package/connectors/linear-mcp/dist/index.js +402 -0
  20. package/connectors/linear-mcp/package.json +15 -0
  21. package/connectors/linear-mcp/src/index.ts +522 -0
  22. package/connectors/linear-mcp/tsconfig.json +13 -0
  23. package/connectors/okta-mcp/README.md +24 -0
  24. package/connectors/okta-mcp/dist/index.js +411 -0
  25. package/connectors/okta-mcp/package.json +15 -0
  26. package/connectors/okta-mcp/src/index.ts +520 -0
  27. package/connectors/okta-mcp/tsconfig.json +13 -0
  28. package/connectors/salesforce-mcp/README.md +47 -0
  29. package/connectors/salesforce-mcp/dist/index.js +584 -0
  30. package/connectors/salesforce-mcp/package.json +15 -0
  31. package/connectors/salesforce-mcp/src/index.ts +722 -0
  32. package/connectors/salesforce-mcp/tsconfig.json +13 -0
  33. package/connectors/servicenow-mcp/README.md +26 -0
  34. package/connectors/servicenow-mcp/dist/index.js +400 -0
  35. package/connectors/servicenow-mcp/package.json +15 -0
  36. package/connectors/servicenow-mcp/src/index.ts +500 -0
  37. package/connectors/servicenow-mcp/tsconfig.json +13 -0
  38. package/connectors/templates/mcp-connector/README.md +31 -0
  39. package/connectors/templates/mcp-connector/package.json +15 -0
  40. package/connectors/templates/mcp-connector/src/index.ts +330 -0
  41. package/connectors/templates/mcp-connector/tsconfig.json +13 -0
  42. package/connectors/zendesk-mcp/README.md +40 -0
  43. package/connectors/zendesk-mcp/dist/index.js +431 -0
  44. package/connectors/zendesk-mcp/package.json +15 -0
  45. package/connectors/zendesk-mcp/src/index.ts +543 -0
  46. package/connectors/zendesk-mcp/tsconfig.json +13 -0
  47. package/dist/electron/electron/agent/daemon.js +25 -0
  48. package/dist/electron/electron/agent/executor.js +181 -26
  49. package/dist/electron/electron/agent/llm/anthropic-compatible-provider.js +177 -0
  50. package/dist/electron/electron/agent/llm/github-copilot-provider.js +97 -0
  51. package/dist/electron/electron/agent/llm/groq-provider.js +33 -0
  52. package/dist/electron/electron/agent/llm/index.js +11 -1
  53. package/dist/electron/electron/agent/llm/kimi-provider.js +33 -0
  54. package/dist/electron/electron/agent/llm/openai-compatible-provider.js +116 -0
  55. package/dist/electron/electron/agent/llm/openai-compatible.js +111 -0
  56. package/dist/electron/electron/agent/llm/openai-oauth.js +2 -1
  57. package/dist/electron/electron/agent/llm/openrouter-provider.js +1 -1
  58. package/dist/electron/electron/agent/llm/provider-factory.js +318 -4
  59. package/dist/electron/electron/agent/llm/types.js +66 -1
  60. package/dist/electron/electron/agent/llm/xai-provider.js +33 -0
  61. package/dist/electron/electron/agent/tools/box-tools.js +231 -0
  62. package/dist/electron/electron/agent/tools/builtin-settings.js +28 -0
  63. package/dist/electron/electron/agent/tools/dropbox-tools.js +237 -0
  64. package/dist/electron/electron/agent/tools/google-drive-tools.js +227 -0
  65. package/dist/electron/electron/agent/tools/notion-tools.js +312 -0
  66. package/dist/electron/electron/agent/tools/onedrive-tools.js +217 -0
  67. package/dist/electron/electron/agent/tools/registry.js +541 -0
  68. package/dist/electron/electron/agent/tools/sharepoint-tools.js +243 -0
  69. package/dist/electron/electron/agent/tools/shell-tools.js +12 -3
  70. package/dist/electron/electron/agent/tools/x-tools.js +1 -1
  71. package/dist/electron/electron/gateway/index.js +1 -0
  72. package/dist/electron/electron/gateway/router.js +123 -143
  73. package/dist/electron/electron/ipc/canvas-handlers.js +5 -0
  74. package/dist/electron/electron/ipc/handlers.js +627 -158
  75. package/dist/electron/electron/main.js +63 -0
  76. package/dist/electron/electron/mcp/oauth/connector-oauth.js +333 -0
  77. package/dist/electron/electron/mcp/registry/MCPRegistryManager.js +503 -154
  78. package/dist/electron/electron/memory/MemoryService.js +1 -1
  79. package/dist/electron/electron/preload.js +74 -1
  80. package/dist/electron/electron/settings/box-manager.js +54 -0
  81. package/dist/electron/electron/settings/dropbox-manager.js +54 -0
  82. package/dist/electron/electron/settings/google-drive-manager.js +54 -0
  83. package/dist/electron/electron/settings/notion-manager.js +56 -0
  84. package/dist/electron/electron/settings/onedrive-manager.js +54 -0
  85. package/dist/electron/electron/settings/sharepoint-manager.js +54 -0
  86. package/dist/electron/electron/utils/box-api.js +153 -0
  87. package/dist/electron/electron/utils/dropbox-api.js +144 -0
  88. package/dist/electron/electron/utils/env-migration.js +19 -0
  89. package/dist/electron/electron/utils/google-drive-api.js +152 -0
  90. package/dist/electron/electron/utils/notion-api.js +103 -0
  91. package/dist/electron/electron/utils/onedrive-api.js +113 -0
  92. package/dist/electron/electron/utils/sharepoint-api.js +109 -0
  93. package/dist/electron/electron/utils/validation.js +82 -3
  94. package/dist/electron/electron/utils/x-cli.js +1 -1
  95. package/dist/electron/shared/channelMessages.js +284 -3
  96. package/dist/electron/shared/llm-provider-catalog.js +198 -0
  97. package/dist/electron/shared/types.js +88 -1
  98. package/package.json +12 -2
  99. package/src/electron/agent/executor.ts +205 -28
  100. package/src/electron/agent/llm/anthropic-compatible-provider.ts +214 -0
  101. package/src/electron/agent/llm/github-copilot-provider.ts +117 -0
  102. package/src/electron/agent/llm/groq-provider.ts +39 -0
  103. package/src/electron/agent/llm/index.ts +5 -0
  104. package/src/electron/agent/llm/kimi-provider.ts +39 -0
  105. package/src/electron/agent/llm/openai-compatible-provider.ts +153 -0
  106. package/src/electron/agent/llm/openai-compatible.ts +133 -0
  107. package/src/electron/agent/llm/openai-oauth.ts +2 -1
  108. package/src/electron/agent/llm/openrouter-provider.ts +2 -1
  109. package/src/electron/agent/llm/provider-factory.ts +414 -6
  110. package/src/electron/agent/llm/types.ts +90 -1
  111. package/src/electron/agent/llm/xai-provider.ts +39 -0
  112. package/src/electron/agent/tools/box-tools.ts +239 -0
  113. package/src/electron/agent/tools/builtin-settings.ts +34 -0
  114. package/src/electron/agent/tools/dropbox-tools.ts +237 -0
  115. package/src/electron/agent/tools/google-drive-tools.ts +228 -0
  116. package/src/electron/agent/tools/notion-tools.ts +330 -0
  117. package/src/electron/agent/tools/onedrive-tools.ts +217 -0
  118. package/src/electron/agent/tools/registry.ts +565 -0
  119. package/src/electron/agent/tools/sharepoint-tools.ts +247 -0
  120. package/src/electron/agent/tools/shell-tools.ts +11 -3
  121. package/src/electron/agent/tools/x-tools.ts +1 -1
  122. package/src/electron/database/SecureSettingsRepository.ts +7 -1
  123. package/src/electron/gateway/index.ts +1 -0
  124. package/src/electron/gateway/router.ts +134 -149
  125. package/src/electron/ipc/canvas-handlers.ts +10 -0
  126. package/src/electron/ipc/handlers.ts +673 -153
  127. package/src/electron/main.ts +35 -0
  128. package/src/electron/mcp/oauth/connector-oauth.ts +448 -0
  129. package/src/electron/mcp/registry/MCPRegistryManager.ts +343 -12
  130. package/src/electron/memory/MemoryService.ts +5 -1
  131. package/src/electron/preload.ts +167 -4
  132. package/src/electron/settings/box-manager.ts +58 -0
  133. package/src/electron/settings/dropbox-manager.ts +58 -0
  134. package/src/electron/settings/google-drive-manager.ts +58 -0
  135. package/src/electron/settings/notion-manager.ts +60 -0
  136. package/src/electron/settings/onedrive-manager.ts +58 -0
  137. package/src/electron/settings/sharepoint-manager.ts +58 -0
  138. package/src/electron/utils/box-api.ts +184 -0
  139. package/src/electron/utils/dropbox-api.ts +171 -0
  140. package/src/electron/utils/env-migration.ts +22 -0
  141. package/src/electron/utils/google-drive-api.ts +183 -0
  142. package/src/electron/utils/notion-api.ts +126 -0
  143. package/src/electron/utils/onedrive-api.ts +137 -0
  144. package/src/electron/utils/sharepoint-api.ts +132 -0
  145. package/src/electron/utils/validation.ts +102 -1
  146. package/src/electron/utils/x-cli.ts +1 -1
  147. package/src/renderer/App.tsx +20 -2
  148. package/src/renderer/components/BoxSettings.tsx +203 -0
  149. package/src/renderer/components/BrowserView.tsx +101 -0
  150. package/src/renderer/components/BuiltinToolsSettings.tsx +105 -0
  151. package/src/renderer/components/CanvasPreview.tsx +68 -1
  152. package/src/renderer/components/ConnectorEnvModal.tsx +116 -0
  153. package/src/renderer/components/ConnectorSetupModal.tsx +566 -0
  154. package/src/renderer/components/ConnectorsSettings.tsx +397 -0
  155. package/src/renderer/components/DropboxSettings.tsx +202 -0
  156. package/src/renderer/components/GoogleDriveSettings.tsx +201 -0
  157. package/src/renderer/components/MCPSettings.tsx +56 -0
  158. package/src/renderer/components/MainContent.tsx +270 -34
  159. package/src/renderer/components/NotionSettings.tsx +231 -0
  160. package/src/renderer/components/Onboarding/Onboarding.tsx +13 -1
  161. package/src/renderer/components/OnboardingModal.tsx +70 -1
  162. package/src/renderer/components/OneDriveSettings.tsx +212 -0
  163. package/src/renderer/components/Settings.tsx +611 -8
  164. package/src/renderer/components/SharePointSettings.tsx +224 -0
  165. package/src/renderer/components/Sidebar.tsx +25 -9
  166. package/src/renderer/hooks/useOnboardingFlow.ts +21 -0
  167. package/src/renderer/styles/index.css +438 -25
  168. package/src/shared/channelMessages.ts +367 -4
  169. package/src/shared/llm-provider-catalog.ts +217 -0
  170. package/src/shared/types.ts +226 -1
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="screenshots/cowork-os-logo.png" alt="CoWork OS Logo" width="120">
2
+ <img src="screenshots/cowork-oss-logo-new.png" alt="CoWork OS Logo" width="120">
3
3
  </p>
4
4
 
5
5
  <div align="center">
@@ -26,8 +26,10 @@ Your AI needs a secure home. CoWork OS provides the runtime, security layers, an
26
26
 
27
27
  | | |
28
28
  |---|---|
29
- | **6 AI Providers** | Claude, GPT-4, Gemini, Bedrock, OpenRouter, Ollama (free/local) |
29
+ | **20+ AI Providers** | Claude, OpenAI, Gemini, Bedrock, OpenRouter, Ollama (free/local), Groq, xAI, Kimi, Mistral, Cerebras, MiniMax, Qwen, Copilot, and more |
30
30
  | **14 Messaging Channels** | WhatsApp, Telegram, Discord, Slack, Teams, Google Chat, iMessage, Signal, Mattermost, Matrix, Twitch, LINE, BlueBubbles, Email |
31
+ | **8 Enterprise Connectors** | Salesforce, Jira, HubSpot, Zendesk, ServiceNow, Linear, Asana, Okta |
32
+ | **6 Cloud Storage** | Notion, Box, OneDrive, Google Drive, Dropbox, SharePoint |
31
33
  | **Security-First** | 1800+ unit tests, configurable guardrails, approval workflows |
32
34
  | **Local-First** | Your data stays on your machine. BYOK (Bring Your Own Key) |
33
35
 
@@ -40,7 +42,7 @@ Your AI needs a secure home. CoWork OS provides the runtime, security layers, an
40
42
  <p align="center">
41
43
  <img src="screenshots/ZeroLeaks-result-010226.png" alt="ZeroLeaks Security Assessment Result" width="600">
42
44
  <br>
43
- <em>CoWork OS achieves one of the highest security scores on <a href="https://zeroleaks.ai/">ZeroLeaks</a> — outperforming solutions like OpenClaw in prompt injection resistance</em>
45
+ <em>CoWork OS achieves one of the highest security scores on <a href="https://zeroleaks.ai/">ZeroLeaks</a> — outperforming many commercial solutions in prompt injection resistance</em>
44
46
  <br>
45
47
  <a href="ZeroLeaks-Report-jn70f56art03m4rj7fp4b5k9p180aqfd.pdf">View Full Security Assessment Report</a>
46
48
  </p>
@@ -158,6 +160,34 @@ CoWork OS is **free and open source**. To run tasks, configure your own model cr
158
160
  | OpenAI (ChatGPT OAuth) | Sign in with ChatGPT account | Uses your ChatGPT subscription |
159
161
  | AWS Bedrock | AWS credentials in Settings | Pay-per-token via AWS |
160
162
  | Ollama (Local) | Install Ollama and pull models | **Free** (runs locally) |
163
+ | Groq | API key in Settings | Pay-per-token |
164
+ | xAI (Grok) | API key in Settings | Pay-per-token |
165
+ | Kimi (Moonshot) | API key in Settings | Pay-per-token |
166
+
167
+ ### Compatible / Gateway Providers
168
+
169
+ | Provider | Configuration | Billing |
170
+ |----------|---------------|---------|
171
+ | OpenCode Zen | API key + base URL in Settings | Provider billing |
172
+ | Google Vertex | Access token + base URL in Settings | Provider billing |
173
+ | Google Antigravity | Access token + base URL in Settings | Provider billing |
174
+ | Google Gemini CLI | Access token + base URL in Settings | Provider billing |
175
+ | Z.AI | API key + base URL in Settings | Provider billing |
176
+ | GLM | API key + base URL in Settings | Provider billing |
177
+ | Vercel AI Gateway | API key in Settings | Provider billing |
178
+ | Cerebras | API key in Settings | Provider billing |
179
+ | Mistral | API key in Settings | Provider billing |
180
+ | GitHub Copilot | GitHub token in Settings | Subscription-based |
181
+ | Moonshot (Kimi) | API key in Settings | Provider billing |
182
+ | Qwen Portal | API key in Settings | Provider billing |
183
+ | MiniMax | API key in Settings | Provider billing |
184
+ | MiniMax Portal | API key in Settings | Provider billing |
185
+ | Xiaomi MiMo | API key in Settings | Provider billing |
186
+ | Venice AI | API key in Settings | Provider billing |
187
+ | Synthetic | API key in Settings | Provider billing |
188
+ | Kimi Code | API key in Settings | Provider billing |
189
+ | OpenAI-Compatible (Custom) | API key + base URL in Settings | Provider billing |
190
+ | Anthropic-Compatible (Custom) | API key + base URL in Settings | Provider billing |
161
191
 
162
192
  **Your usage is billed directly by your provider.** CoWork OS does not proxy or resell model access.
163
193
 
@@ -340,7 +370,7 @@ Customize agent behavior via Settings or conversation:
340
370
  ┌─────────────────────────────────────────────────────────────────┐
341
371
  │ Execution Layer │
342
372
  │ File Operations | Document Skills | Browser Automation │
343
- │ LLM Providers (6) | Search Providers (4) | MCP Client
373
+ │ LLM Providers (20+) | Search Providers (4) | MCP Client
344
374
  └─────────────────────────────────────────────────────────────────┘
345
375
 
346
376
  ┌─────────────────────────────────────────────────────────────────┐
@@ -401,7 +431,7 @@ This is a good option for:
401
431
 
402
432
  - Node.js 18+ and npm
403
433
  - macOS 12 (Monterey) or later
404
- - One of: Anthropic API key, Google Gemini API key, OpenRouter API key, OpenAI API key, AWS Bedrock access, or Ollama installed locally
434
+ - One of: any supported LLM provider credentials (API key/token or AWS credentials) or Ollama installed locally
405
435
 
406
436
  ### Installation
407
437
 
@@ -1411,6 +1441,191 @@ Full HTTP client for API calls (curl-like).
1411
1441
 
1412
1442
  ---
1413
1443
 
1444
+ ## Notion Integration
1445
+
1446
+ Configure in **Settings > Integrations > Notion**. Use `notion_action` to search, read, and update Notion content. Write actions (create, update, append, delete) require approval.
1447
+
1448
+ ### Search pages or data sources
1449
+
1450
+ ```ts
1451
+ notion_action({
1452
+ action: "search",
1453
+ query: "Roadmap"
1454
+ });
1455
+ ```
1456
+
1457
+ ### Query a data source with filters and sorts
1458
+
1459
+ ```ts
1460
+ notion_action({
1461
+ action: "query_data_source",
1462
+ data_source_id: "YOUR_DATA_SOURCE_ID",
1463
+ filter: {
1464
+ property: "Status",
1465
+ select: { equals: "Active" }
1466
+ },
1467
+ sorts: [
1468
+ { property: "Updated", direction: "descending" }
1469
+ ],
1470
+ page_size: 25
1471
+ });
1472
+ ```
1473
+
1474
+ ### Paginate a data source query
1475
+
1476
+ ```ts
1477
+ notion_action({
1478
+ action: "query_data_source",
1479
+ data_source_id: "YOUR_DATA_SOURCE_ID",
1480
+ start_cursor: "NEXT_CURSOR_FROM_PREVIOUS_RESPONSE",
1481
+ page_size: 25
1482
+ });
1483
+ ```
1484
+
1485
+ ### Update or delete a block
1486
+
1487
+ ```ts
1488
+ notion_action({
1489
+ action: "update_block",
1490
+ block_id: "BLOCK_ID",
1491
+ block_type: "paragraph",
1492
+ block: {
1493
+ rich_text: [{ text: { content: "Updated text" } }]
1494
+ }
1495
+ });
1496
+
1497
+ notion_action({
1498
+ action: "delete_block",
1499
+ block_id: "BLOCK_ID"
1500
+ });
1501
+ ```
1502
+
1503
+ ---
1504
+
1505
+ ## Box Integration
1506
+
1507
+ Configure in **Settings > Integrations > Box**. Use `box_action` to search, read, and manage Box files and folders. Write actions (create, upload, delete) require approval.
1508
+
1509
+ ### Search for files
1510
+
1511
+ ```ts
1512
+ box_action({
1513
+ action: "search",
1514
+ query: "Q4 report",
1515
+ type: "file",
1516
+ limit: 25
1517
+ });
1518
+ ```
1519
+
1520
+ ### Upload a file
1521
+
1522
+ ```ts
1523
+ box_action({
1524
+ action: "upload_file",
1525
+ file_path: "reports/summary.pdf",
1526
+ parent_id: "0"
1527
+ });
1528
+ ```
1529
+
1530
+ ---
1531
+
1532
+ ## OneDrive Integration
1533
+
1534
+ Configure in **Settings > Integrations > OneDrive**. Use `onedrive_action` to search, read, and manage OneDrive files and folders. Write actions (create, upload, delete) require approval.
1535
+
1536
+ ### Search for files
1537
+
1538
+ ```ts
1539
+ onedrive_action({
1540
+ action: "search",
1541
+ query: "Roadmap"
1542
+ });
1543
+ ```
1544
+
1545
+ ### Upload a file
1546
+
1547
+ ```ts
1548
+ onedrive_action({
1549
+ action: "upload_file",
1550
+ file_path: "reports/summary.pdf"
1551
+ });
1552
+ ```
1553
+
1554
+ ---
1555
+
1556
+ ## Google Drive Integration
1557
+
1558
+ Configure in **Settings > Integrations > Google Drive**. Use `google_drive_action` to search, read, and manage Google Drive files and folders. Write actions (create, upload, delete) require approval.
1559
+
1560
+ ### List files
1561
+
1562
+ ```ts
1563
+ google_drive_action({
1564
+ action: "list_files",
1565
+ page_size: 20
1566
+ });
1567
+ ```
1568
+
1569
+ ### Upload a file
1570
+
1571
+ ```ts
1572
+ google_drive_action({
1573
+ action: "upload_file",
1574
+ file_path: "reports/summary.pdf"
1575
+ });
1576
+ ```
1577
+
1578
+ ---
1579
+
1580
+ ## Dropbox Integration
1581
+
1582
+ Configure in **Settings > Integrations > Dropbox**. Use `dropbox_action` to search, read, and manage Dropbox files and folders. Write actions (create, upload, delete) require approval.
1583
+
1584
+ ### List folder contents
1585
+
1586
+ ```ts
1587
+ dropbox_action({
1588
+ action: "list_folder",
1589
+ path: "/Reports"
1590
+ });
1591
+ ```
1592
+
1593
+ ### Upload a file
1594
+
1595
+ ```ts
1596
+ dropbox_action({
1597
+ action: "upload_file",
1598
+ file_path: "reports/summary.pdf",
1599
+ path: "/Reports/summary.pdf"
1600
+ });
1601
+ ```
1602
+
1603
+ ---
1604
+
1605
+ ## SharePoint Integration
1606
+
1607
+ Configure in **Settings > Integrations > SharePoint**. Use `sharepoint_action` to search sites and manage drive items. Write actions (create, upload, delete) require approval.
1608
+
1609
+ ### Search sites
1610
+
1611
+ ```ts
1612
+ sharepoint_action({
1613
+ action: "search_sites",
1614
+ query: "Marketing"
1615
+ });
1616
+ ```
1617
+
1618
+ ### Upload a file
1619
+
1620
+ ```ts
1621
+ sharepoint_action({
1622
+ action: "upload_file",
1623
+ file_path: "reports/summary.pdf"
1624
+ });
1625
+ ```
1626
+
1627
+ ---
1628
+
1414
1629
  ## Personality & Customization
1415
1630
 
1416
1631
  Tell the agent what you want:
@@ -1494,6 +1709,35 @@ Sign in with your ChatGPT subscription to use without additional API costs.
1494
1709
 
1495
1710
  ---
1496
1711
 
1712
+ ## Additional LLM Providers
1713
+
1714
+ Configure these in **Settings** > **LLM Provider** by entering API keys/tokens, model IDs, and base URLs when required.
1715
+
1716
+ | Provider | Compatibility |
1717
+ |----------|---------------|
1718
+ | OpenCode Zen | OpenAI-compatible |
1719
+ | Google Vertex | OpenAI-compatible |
1720
+ | Google Antigravity | OpenAI-compatible |
1721
+ | Google Gemini CLI | OpenAI-compatible |
1722
+ | Z.AI | OpenAI-compatible |
1723
+ | GLM | OpenAI-compatible |
1724
+ | Vercel AI Gateway | Anthropic-compatible |
1725
+ | Cerebras | OpenAI-compatible |
1726
+ | Mistral | OpenAI-compatible |
1727
+ | GitHub Copilot | OpenAI-compatible |
1728
+ | Moonshot (Kimi) | OpenAI-compatible |
1729
+ | Qwen Portal | Anthropic-compatible |
1730
+ | MiniMax | OpenAI-compatible |
1731
+ | MiniMax Portal | Anthropic-compatible |
1732
+ | Xiaomi MiMo | Anthropic-compatible |
1733
+ | Venice AI | OpenAI-compatible |
1734
+ | Synthetic | Anthropic-compatible |
1735
+ | Kimi Code | OpenAI-compatible |
1736
+ | OpenAI-Compatible (Custom) | OpenAI-compatible |
1737
+ | Anthropic-Compatible (Custom) | Anthropic-compatible |
1738
+
1739
+ ---
1740
+
1497
1741
  ## Built-in Skills (75+)
1498
1742
 
1499
1743
  | Category | Skills |
@@ -1522,6 +1766,47 @@ Browse and install servers from a catalog with one-click installation.
1522
1766
 
1523
1767
  ---
1524
1768
 
1769
+ ## Enterprise MCP Connectors
1770
+
1771
+ Pre-built MCP server connectors for enterprise integrations. Install from **Settings > MCP Servers > Browse Registry**.
1772
+
1773
+ ### Available Connectors
1774
+
1775
+ | Connector | Type | Tools |
1776
+ |-----------|------|-------|
1777
+ | **Salesforce** | CRM | `health`, `list_objects`, `describe_object`, `get_record`, `search_records`, `create_record`, `update_record` |
1778
+ | **Jira** | Issue Tracking | `health`, `list_projects`, `get_issue`, `search_issues`, `create_issue`, `update_issue` |
1779
+ | **HubSpot** | CRM | `health`, `list_contacts`, `get_contact`, `search_contacts`, `create_contact`, `update_contact` |
1780
+ | **Zendesk** | Support | `health`, `list_tickets`, `get_ticket`, `search_tickets`, `create_ticket`, `update_ticket` |
1781
+ | **ServiceNow** | ITSM | `health`, `list_incidents`, `get_incident`, `search_incidents`, `create_incident`, `update_incident` |
1782
+ | **Linear** | Product/Issue | `health`, `list_issues`, `get_issue`, `search_issues`, `create_issue`, `update_issue` |
1783
+ | **Asana** | Work Management | `health`, `list_tasks`, `get_task`, `search_tasks`, `create_task`, `update_task` |
1784
+ | **Okta** | Identity | `health`, `list_users`, `get_user`, `search_users`, `create_user`, `update_user` |
1785
+
1786
+ ### Setup
1787
+
1788
+ 1. Go to **Settings > MCP Servers > Browse Registry**
1789
+ 2. Find the connector you need (e.g., Salesforce)
1790
+ 3. Click **Install**
1791
+ 4. Configure credentials when prompted (API keys, OAuth tokens, etc.)
1792
+ 5. The connector tools become available to the agent
1793
+
1794
+ ### Building Custom Connectors
1795
+
1796
+ Use the connector template to build your own:
1797
+
1798
+ ```bash
1799
+ cp -r connectors/templates/mcp-connector connectors/my-connector
1800
+ cd connectors/my-connector
1801
+ npm install
1802
+ # Edit src/index.ts to implement your tools
1803
+ npm run build
1804
+ ```
1805
+
1806
+ See [docs/enterprise-connectors.md](docs/enterprise-connectors.md) for the full connector contract and conventions.
1807
+
1808
+ ---
1809
+
1525
1810
  ## WebSocket Control Plane
1526
1811
 
1527
1812
  Programmatic API for external automation and mobile companion apps.
@@ -1580,7 +1865,7 @@ Users must comply with their model provider's terms:
1580
1865
 
1581
1866
  ### Completed
1582
1867
 
1583
- - [x] Multi-provider LLM support (6 providers)
1868
+ - [x] Multi-provider LLM support (20+ providers including Groq, xAI, Kimi, GitHub Copilot, OpenAI/Anthropic-compatible)
1584
1869
  - [x] Multi-channel messaging (14 channels)
1585
1870
  - [x] Configurable guardrails and security
1586
1871
  - [x] Browser automation with Playwright
@@ -1598,6 +1883,8 @@ Users must comply with their model provider's terms:
1598
1883
  - [x] Persistent memory system with privacy protection
1599
1884
  - [x] Mobile Companions with LAN access support
1600
1885
  - [x] Voice Mode with ElevenLabs and OpenAI integration
1886
+ - [x] Enterprise MCP Connectors (Salesforce, Jira, HubSpot, Zendesk, ServiceNow, Linear, Asana, Okta)
1887
+ - [x] Cloud Storage Integrations (Notion, Box, OneDrive, Google Drive, Dropbox, SharePoint)
1601
1888
 
1602
1889
  ### Planned
1603
1890
 
@@ -0,0 +1,20 @@
1
+ # Connectors
2
+
3
+ This folder contains connector templates and reference implementations.
4
+
5
+ Connectors are MCP servers that expose enterprise APIs (Salesforce, Jira, etc.) to CoWork OS via tools. They are designed to run outside the desktop app so they can be deployed locally or as a managed service.
6
+
7
+ Templates:
8
+ - `connectors/templates/mcp-connector`
9
+
10
+ Reference implementations:
11
+ - `connectors/salesforce-mcp`
12
+ - `connectors/jira-mcp`
13
+ - `connectors/hubspot-mcp`
14
+ - `connectors/zendesk-mcp`
15
+ - `connectors/servicenow-mcp`
16
+ - `connectors/linear-mcp`
17
+ - `connectors/asana-mcp`
18
+ - `connectors/okta-mcp`
19
+
20
+ See `docs/enterprise-connectors.md` for the Phase 1 connector contract.
@@ -0,0 +1,24 @@
1
+ # Asana MCP Connector (MVP)
2
+
3
+ This connector exposes Asana APIs to CoWork OS through MCP tools.
4
+
5
+ ## Requirements
6
+
7
+ - `ASANA_ACCESS_TOKEN` (required)
8
+
9
+ ## Build & Run
10
+
11
+ ```bash
12
+ npm install
13
+ npm run build
14
+ npm start
15
+ ```
16
+
17
+ ## Tools
18
+
19
+ - `asana.health`
20
+ - `asana.list_projects`
21
+ - `asana.get_task`
22
+ - `asana.search_tasks`
23
+ - `asana.create_task`
24
+ - `asana.update_task`