ohwow 0.4.8 → 0.5.2

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
@@ -206,6 +206,46 @@ Or add to any project's `.mcp.json`:
206
206
 
207
207
  **Example**: "Research the top 5 competitors in our space, add the findings to the knowledge base, then create a contact for each CEO." Claude uses ohwow's research, knowledge, and CRM tools seamlessly.
208
208
 
209
+ ### Use Claude Code as Your AI Provider
210
+
211
+ If you have Claude Code installed and authenticated, ohwow can use it as the AI backend for all agent tasks. No API key needed.
212
+
213
+ ```bash
214
+ # Via environment variable
215
+ OHWOW_MODEL_SOURCE=claude-code npx ohwow
216
+
217
+ # Or press Ctrl+O in the dashboard and select "Claude Code"
218
+ ```
219
+
220
+ This routes all model calls through `claude --print`, using your existing Claude subscription. Two modes work together:
221
+
222
+ - **Provider mode** (`modelSource: claude-code`): single-turn completions for orchestrator chat, memory extraction, planning
223
+ - **Full delegation** (`modelSource: claude-code-cli`): entire tasks delegated to Claude Code with its own tool loop
224
+
225
+ ## If You Already Use AI Agents
226
+
227
+ You probably already have an AI assistant with memory, tool use, and web browsing. ChatGPT remembers things about you. Claude Code edits your files. Gemini searches the web. They're good. So why would you also want ohwow?
228
+
229
+ Because there's a gap between "AI that can answer questions and use tools" and "AI that actually runs part of your business." That gap is what ohwow fills.
230
+
231
+ **Your agent's memory is rented.** ChatGPT's memory lives on OpenAI's servers. Claude's lives on Anthropic's. If you switch providers, cancel a subscription, or the service changes its terms, your agent's learned context disappears. ohwow stores everything in SQLite on your machine. Your agent's memory, skills, identity, and full task history belong to you. Back it up, fork it, migrate it. No vendor can take it away.
232
+
233
+ **Your agent is locked to one provider.** A Custom GPT only runs on OpenAI. A Claude project only runs on Anthropic. ohwow's model router runs any model from any provider through the same persistent body. Use Llama locally for simple tasks, Claude for complex reasoning, GPT for specific workflows. Switch models without losing a single memory, skill, or learned pattern. Your agent's intelligence accumulates regardless of which brain is powering it today.
234
+
235
+ **Your agent doesn't learn from its own work.** ChatGPT remembers facts you tell it. ohwow agents learn from execution. After 200 outreach messages, the Sales Agent knows which opening lines get responses. After 50 support tickets, the Support Agent knows which issues it can resolve alone. This isn't prompt engineering. It's skill synthesis from real outcomes: Thompson sampling routes tasks to the agent most likely to succeed, strategic principles emerge from patterns in what worked, and practice sessions let agents rehearse before doing.
236
+
237
+ **Your agent doesn't self-regulate.** When a tool starts failing silently, your current agent doesn't notice. ohwow runs homeostatic control loops that detect drift in error rates, throughput, and cognitive load, then trigger corrective action automatically. An immune system learns threat signatures and escalates alert levels. Somatic markers tag tool outcomes with emotional valence, so the agent develops intuition: not just "this failed once" but "this approach in this context feels wrong."
238
+
239
+ **Your agent waits to be asked.** It doesn't notice that your lead pipeline is drying up, or that a task it completed yesterday created a follow-up opportunity, or that Tuesday mornings are when you're sharpest for strategic decisions. ohwow's BIOS layer learns your circadian rhythm from activity patterns, estimates cognitive load in real time, and uses that to act at the right moment. It surfaces the competitive analysis when you're sharp enough to make decisions on it. It notices a lead went cold and drafts a follow-up before you think to ask. It detects that you've been sprinting all week and shifts toward reflective work. The goal isn't fewer interruptions. It's an agent that reads the room and moves first.
240
+
241
+ **Your agent works alone.** ohwow agents coordinate. A multi-device mesh shares discoveries across your machines with zero configuration. When one device learns something, every peer knows. Tasks route to the best device. If one goes offline, another picks up. Agents delegate to each other via the A2A protocol, with trust earned per domain, not granted all at once.
242
+
243
+ None of this replaces your existing AI tools. It gives them a persistent, self-improving, provider-independent body that's yours to keep.
244
+
245
+ ```bash
246
+ npm install ohwow -g && ohwow
247
+ ```
248
+
209
249
  ## Desktop Control
210
250
 
211
251
  Your agents aren't trapped in a chat window. They operate your computer.