@dotdrelle/wiki-manager 0.6.26 → 0.6.27

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
@@ -33,7 +33,7 @@ and a *replaceable* toolbox of *external* MCP servers — to produce the **core
33
33
  wiki** outputs, all driven by an agentic, multi-model orchestrator and grounded
34
34
  in isolated workspaces.
35
35
 
36
- ![wikiLLM functional diagram — inputs, MCP calls and outputs around the agentic orchestrator and workspaces](docs/architecture.svg)
36
+ ![wikiLLM functional diagram — inputs, MCP calls and outputs around the agentic orchestrator and workspaces](https://raw.githubusercontent.com/dotdrelle/llm-wiki-manager/main/docs/architecture.svg)
37
37
 
38
38
  ## Quick start — your first wiki in ~5 minutes
39
39
 
@@ -56,7 +56,7 @@ mkdir -p ~/llm-wiki && cd ~/llm-wiki # all manager state lives here
56
56
  **2 — Set the environment.**
57
57
  Copy the template and keep the defaults — nothing is mandatory for the local
58
58
  demo (tokens/credentials are only needed when you connect real sources, see
59
- [docs/usage.md](docs/usage.md)). The `mcp.endpoints.json` file is created
59
+ [docs/usage.md](https://raw.githubusercontent.com/dotdrelle/llm-wiki-manager/main/docs/usage.md)). The `mcp.endpoints.json` file is created
60
60
  automatically on the first command.
61
61
 
62
62
  ```bash
@@ -137,7 +137,7 @@ wiki-workspace wiki demo build # or, in the shell: /skills run pipeli
137
137
  ```
138
138
 
139
139
  That's the whole loop. Next: the four ways to use it and how to configure the
140
- external agents (CME & co.) live in [docs/usage.md](docs/usage.md); the detailed
140
+ external agents (CME & co.) live in [docs/usage.md](https://raw.githubusercontent.com/dotdrelle/llm-wiki-manager/main/docs/usage.md); the detailed
141
141
  story is in [The journey](#the-journey-from-first-launch-to-first-result); and
142
142
  installing from source is in [Initial Setup](#initial-setup).
143
143
 
@@ -149,7 +149,7 @@ language), and the **shared external agents** (the common toolbox). Each externa
149
149
  agent (Confluence export with **CME**, document conversion, mail) also needs a
150
150
  little setup the first time.
151
151
 
152
- Both are covered in **[docs/usage.md](docs/usage.md)**.
152
+ Both are covered in **[docs/usage.md](https://raw.githubusercontent.com/dotdrelle/llm-wiki-manager/main/docs/usage.md)**.
153
153
 
154
154
  ## The journey: from first launch to first result
155
155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotdrelle/wiki-manager",
3
- "version": "0.6.26",
3
+ "version": "0.6.27",
4
4
  "description": "Agentic shell and orchestration cockpit for llm-wiki workspaces.",
5
5
  "license": "PolyForm-Noncommercial-1.0.0",
6
6
  "author": "dotrelle",
package/src/core/mcp.js CHANGED
@@ -205,7 +205,7 @@ async function mcpRequest(endpoint, method, params, signal, options = {}) {
205
205
  params: {
206
206
  protocolVersion: '2025-06-18',
207
207
  capabilities: {},
208
- clientInfo: { name: 'wiki-manager', version: '0.6.26' },
208
+ clientInfo: { name: 'wiki-manager', version: '0.6.27' },
209
209
  },
210
210
  }),
211
211
  });