ohwow 0.1.10 → 0.1.12

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 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. Free to use with [Ollama](https://ollama.com) for local models. Enterprise features (cloud dashboard sync, WhatsApp, Telegram, scheduling, proactive engine, automations, voice) unlock with an [ohwow.fun](https://ohwow.fun) subscription.
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) (for free tier / local models)
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. For the free tier, just point it at your Ollama instance. For enterprise features, enter your license key (from the ohwow.fun dashboard, under Settings > License) and your Anthropic API key.
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 (enterprise)
69
+ - **Approvals** — review pending items before execution
70
70
  - **Activity** — live feed of everything happening
71
- - **Automations** — webhook-based automation triggers (enterprise)
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 (enterprise).
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
- ## Enterprise Mode
167
+ ## Connected Mode (Cloud)
168
168
 
169
- Enterprise mode keeps your business data on your infrastructure while syncing operational metadata to the cloud dashboard.
169
+ Connect to ohwow.fun to add cloud features on top of the free local runtime.
170
170
 
171
- **What syncs to the cloud:**
172
- - Agent configurations (pulled from the dashboard)
173
- - Task metadata: titles, status, token counts, costs
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:
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ try {
3
+ const { startMcpServer } = await import('../dist/mcp-server/index.js');
4
+ await startMcpServer();
5
+ } catch (err) {
6
+ process.stderr.write(`ohwow-mcp failed to start: ${err.message || err}\n`);
7
+ process.exit(1);
8
+ }