wuphf 0.117.1 → 0.117.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 +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,28 +43,30 @@ Supported platforms: macOS, Linux, and Windows 10+ on x64 or arm64. The native b
|
|
|
43
43
|
|
|
44
44
|
| Flag | What it does |
|
|
45
45
|
|------|-------------|
|
|
46
|
-
| `--memory-backend <name>` | Pick the organizational memory backend (`nex`, `gbrain`, `none`) |
|
|
46
|
+
| `--memory-backend <name>` | Pick the organizational memory backend (`markdown`, `nex`, `gbrain`, `none`) |
|
|
47
47
|
| `--no-nex` | Skip the Nex backend (no context graph, no Nex-managed integrations) |
|
|
48
48
|
| `--tui` | Use the tmux TUI instead of the web UI |
|
|
49
49
|
| `--no-open` | Don't auto-open the browser |
|
|
50
50
|
| `--pack <name>` | Pick an agent pack (`starter`, `founding-team`, `coding-team`, `lead-gen-agency`, `revops`) |
|
|
51
51
|
| `--opus-ceo` | Upgrade CEO from Sonnet to Opus |
|
|
52
|
-
| `--provider <name>` | LLM provider override (`claude-code`, `codex`) |
|
|
52
|
+
| `--provider <name>` | LLM provider override (`claude-code`, `codex`, `opencode`) |
|
|
53
53
|
| `--collab` | Start in collaborative mode — all agents see all messages (this is the default) |
|
|
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
57
|
## Memory: Notebooks and the Wiki
|
|
58
58
|
|
|
59
|
-
Every agent gets its own **notebook**. The team shares a **wiki**.
|
|
59
|
+
Every agent gets its own **notebook**. The team shares a **wiki**. New installs get the wiki as a local git repo of markdown articles. Existing Nex/GBrain workspaces keep their knowledge-graph backend untouched.
|
|
60
60
|
|
|
61
61
|
**Backends for the wiki:**
|
|
62
62
|
|
|
63
|
-
- `
|
|
63
|
+
- `markdown` (the "team wiki" tile in onboarding) is the default for new installs since v0.0.6. It stores typed facts, entity briefs, cited lookup answers, and lintable wiki articles in a local git repo at `~/.wuphf/wiki/`. No API key required.
|
|
64
|
+
- `nex` was the previous default. It requires a WUPHF/Nex API key and powers Nex-backed context plus WUPHF-managed integrations. Existing users stay on `nex` via persisted config.
|
|
64
65
|
- `gbrain` mounts `gbrain serve` as the wiki backend.
|
|
65
|
-
- `none` disables the
|
|
66
|
+
- `none` disables the shared wiki entirely. Notebooks still work locally.
|
|
66
67
|
|
|
67
68
|
```bash
|
|
69
|
+
wuphf --memory-backend markdown
|
|
68
70
|
wuphf --memory-backend nex
|
|
69
71
|
wuphf --memory-backend gbrain
|
|
70
72
|
wuphf --memory-backend none
|