ohwow 0.1.10 → 0.1.11
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 +17 -12
- package/bin/ohwow-mcp.js +8 -0
- package/dist/index.js +567 -420
- package/dist/mcp-server/index.d.ts +8 -0
- package/dist/mcp-server/index.js +50 -0
- package/dist/migrations/036-peer-capabilities.sql +10 -0
- package/dist/migrations/037-unified-people.sql +8 -0
- package/dist/web/assets/index-D6DkPUkA.js +100 -0
- package/dist/web/assets/index-DSojxPLI.css +1 -0
- package/dist/web/index.html +2 -2
- package/package.json +4 -2
- package/dist/web/assets/index-Bdy41GAz.css +0 -1
- package/dist/web/assets/index-BhWfGYMm.js +0 -100
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Send me a message for support at ogsus@ohwow.fun
|
|
4
4
|
|
|
5
|
-
A local AI agent runtime.
|
|
5
|
+
A free and open-source local AI agent runtime. Full-featured out of the box with [Ollama](https://ollama.com) for local models. Cloud features (sync, OAuth integrations, cloud task dispatch, webhook relay) available with an [ohwow.fun](https://ohwow.fun) subscription.
|
|
6
6
|
|
|
7
7
|
## Getting Started
|
|
8
8
|
|
|
@@ -15,7 +15,7 @@ npm install ohwow -g
|
|
|
15
15
|
### Requirements
|
|
16
16
|
|
|
17
17
|
- Node.js 20+
|
|
18
|
-
- [Ollama](https://ollama.com)
|
|
18
|
+
- [Ollama](https://ollama.com) for local models
|
|
19
19
|
- Optional: Anthropic API key (for Claude models)
|
|
20
20
|
- Optional: Playwright browsers (`npx playwright install chromium`) for browser automation
|
|
21
21
|
- Optional: C++ compiler may be needed on some platforms for `better-sqlite3`
|
|
@@ -28,7 +28,7 @@ ohwow
|
|
|
28
28
|
|
|
29
29
|
## First Launch
|
|
30
30
|
|
|
31
|
-
A setup wizard appears in your terminal.
|
|
31
|
+
A setup wizard appears in your terminal. Point it at your Ollama instance to get started. To connect to ohwow.fun cloud, enter your license key (from the ohwow.fun dashboard, under Settings > License).
|
|
32
32
|
|
|
33
33
|
Config is saved to `~/.ohwow/config.json`. You only do this once.
|
|
34
34
|
|
|
@@ -66,9 +66,9 @@ The terminal UI opens into a chat interface with tab navigation. Use arrow keys
|
|
|
66
66
|
- **Dashboard** — overview of your workspace
|
|
67
67
|
- **Agents** — manage agent configs, memory, and capabilities
|
|
68
68
|
- **Tasks** — view and manage running/completed tasks
|
|
69
|
-
- **Approvals** — review pending items before execution
|
|
69
|
+
- **Approvals** — review pending items before execution
|
|
70
70
|
- **Activity** — live feed of everything happening
|
|
71
|
-
- **Automations** — webhook-based automation triggers
|
|
71
|
+
- **Automations** — webhook-based automation triggers
|
|
72
72
|
- **Contacts** — CRM with leads, customers, partners
|
|
73
73
|
- **Settings** — config, connections, license
|
|
74
74
|
|
|
@@ -138,7 +138,7 @@ Organize tasks into projects with Kanban boards (backlog, todo, in progress, rev
|
|
|
138
138
|
|
|
139
139
|
### Automations and Triggers
|
|
140
140
|
|
|
141
|
-
Webhook-based automations that fire on external events. Configure field mapping to extract data from incoming payloads and route it to agents or workflows. Managed from the Automations tab
|
|
141
|
+
Webhook-based automations that fire on external events. Configure field mapping to extract data from incoming payloads and route it to agents or workflows. Managed from the Automations tab.
|
|
142
142
|
|
|
143
143
|
### Workflows
|
|
144
144
|
|
|
@@ -164,15 +164,18 @@ If you run [Ollama](https://ollama.com) locally, the runtime routes lightweight
|
|
|
164
164
|
|
|
165
165
|
If ohwow.fun becomes unreachable, the runtime continues with cached agent configs. Tasks still execute, results still store locally. When connectivity returns, everything syncs back up.
|
|
166
166
|
|
|
167
|
-
##
|
|
167
|
+
## Connected Mode (Cloud)
|
|
168
168
|
|
|
169
|
-
|
|
169
|
+
Connect to ohwow.fun to add cloud features on top of the free local runtime.
|
|
170
170
|
|
|
171
|
-
**
|
|
172
|
-
-
|
|
173
|
-
-
|
|
171
|
+
**Cloud features (require connection):**
|
|
172
|
+
- Cloud sync: agent configs sync from your dashboard
|
|
173
|
+
- Cloud task dispatch: receive tasks dispatched from the web
|
|
174
|
+
- OAuth integrations: Gmail, Slack, and other cloud-based integrations
|
|
175
|
+
- Webhook relay: cloud-proxied webhooks for external services
|
|
176
|
+
- Heartbeats and health monitoring
|
|
174
177
|
|
|
175
|
-
**What stays local:**
|
|
178
|
+
**What stays local (always):**
|
|
176
179
|
- Prompts and system instructions
|
|
177
180
|
- Agent outputs and full conversations
|
|
178
181
|
- Long-term agent memory
|
|
@@ -184,6 +187,8 @@ Enterprise mode keeps your business data on your infrastructure while syncing op
|
|
|
184
187
|
|
|
185
188
|
Activate with a license key from the ohwow.fun dashboard (Settings > License). The runtime connects to the control plane via long-polling, receives task dispatches, and sends back status updates. Heartbeats confirm the device is online. Each license is locked to a single device. The cloud dashboard gives you a web interface for managing agents, reviewing tasks, and monitoring your workspace without touching the terminal.
|
|
186
189
|
|
|
190
|
+
All local features (agents, scheduling, WhatsApp, Telegram, A2A, browser automation, voice, CRM, automations, approvals) work without a cloud connection.
|
|
191
|
+
|
|
187
192
|
## Headless / Daemon Mode
|
|
188
193
|
|
|
189
194
|
For servers, containers, or always-on deployments:
|
package/bin/ohwow-mcp.js
ADDED