wuphf 0.14.0 → 0.15.0
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 +9 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,18 +54,15 @@ Supported platforms: macOS and Linux on x64 or arm64. The native binary is lazy-
|
|
|
54
54
|
| `--unsafe` | Bypass agent permission checks (local dev only) |
|
|
55
55
|
| `--web-port <n>` | Change the web UI port (default 7891) |
|
|
56
56
|
|
|
57
|
-
## Memory
|
|
57
|
+
## Memory: Notebooks and the Wiki
|
|
58
58
|
|
|
59
|
-
|
|
59
|
+
Every agent gets its own **notebook**. The team shares a **wiki**. When a conclusion in an agent's notebook holds up, it gets promoted to the wiki so the whole office benefits. Both are knowledge graphs under the hood, on Garry Tan's GBrain or Nex.
|
|
60
60
|
|
|
61
|
-
|
|
62
|
-
- `gbrain` mounts `gbrain serve` as the office memory layer.
|
|
63
|
-
- `none` disables the external memory layer entirely.
|
|
64
|
-
|
|
65
|
-
Two memory scopes sit above those backends:
|
|
61
|
+
**Backends for the wiki:**
|
|
66
62
|
|
|
67
|
-
- `
|
|
68
|
-
- `
|
|
63
|
+
- `nex` is the default. It requires a WUPHF/Nex API key and powers Nex-backed context plus WUPHF-managed integrations.
|
|
64
|
+
- `gbrain` mounts `gbrain serve` as the wiki backend.
|
|
65
|
+
- `none` disables the external wiki entirely. Notebooks still work locally.
|
|
69
66
|
|
|
70
67
|
```bash
|
|
71
68
|
wuphf --memory-backend nex
|
|
@@ -73,6 +70,8 @@ wuphf --memory-backend gbrain
|
|
|
73
70
|
wuphf --memory-backend none
|
|
74
71
|
```
|
|
75
72
|
|
|
73
|
+
Internal naming for code spelunkers: notebook = `private` memory, wiki = `shared` memory.
|
|
74
|
+
|
|
76
75
|
## Other Commands
|
|
77
76
|
|
|
78
77
|
```bash
|
|
@@ -123,7 +122,7 @@ Two action providers ship by default — pick whichever fits your style.
|
|
|
123
122
|
| Live visibility | Stdout streaming |
|
|
124
123
|
| Mid-task steering | DM any agent, no restart |
|
|
125
124
|
| Runtimes | Mix Claude Code, Codex, and OpenClaw in one channel |
|
|
126
|
-
| Memory | Per-agent
|
|
125
|
+
| Memory | Per-agent notebook + shared workspace wiki (knowledge graphs on GBrain or Nex) |
|
|
127
126
|
| Price | Free and open source (MIT, self-hosted, your API keys) |
|
|
128
127
|
|
|
129
128
|
## Benchmark
|
package/package.json
CHANGED