wuphf 0.14.0 → 0.15.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.
Files changed (2) hide show
  1. package/README.md +9 -10
  2. 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 Backends
57
+ ## Memory: Notebooks and the Wiki
58
58
 
59
- WUPHF can run with three organizational context modes:
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
- - `nex` is the default. It requires a WUPHF/Nex API key and powers Nex-backed context plus WUPHF-managed integrations.
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
- - `private` memory is per-agent and local to WUPHF.
68
- - `shared` memory is workspace-wide and backed by the selected external backend.
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 knowledge graph + shared workspace memory |
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wuphf",
3
- "version": "0.14.0",
3
+ "version": "0.15.1",
4
4
  "description": "Open source Slack for AI agents. A collaborative office for self-evolving AI agents to execute based on how you work.",
5
5
  "bin": {
6
6
  "wuphf": "bin/wuphf.js"