ohwow 0.4.7 → 0.5.1
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 +16 -0
- package/dist/index.js +778 -597
- package/dist/migrations/078-doc-mounts.sql +42 -0
- package/dist/migrations/079-agent-mounted-docs.sql +8 -0
- package/dist/migrations/080-doc-mount-peer-mirrors.sql +25 -0
- package/dist/migrations/081-sequential-sequences.sql +26 -0
- package/dist/migrations/082-agent-evolution-lifecycle.sql +59 -0
- package/dist/web/assets/index-BzNoDH-l.css +1 -0
- package/dist/web/assets/index-CrPddhEZ.js +100 -0
- package/dist/web/index.html +2 -2
- package/package.json +3 -2
- package/dist/web/assets/index-C47z59TE.css +0 -1
- package/dist/web/assets/index-Cs_PMxvk.js +0 -100
package/README.md
CHANGED
|
@@ -206,6 +206,22 @@ 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
|
+
|
|
209
225
|
## Desktop Control
|
|
210
226
|
|
|
211
227
|
Your agents aren't trapped in a chat window. They operate your computer.
|