botnote 0.1.15 → 0.1.17

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
@@ -168,8 +168,9 @@ Slash commands:
168
168
 
169
169
  Plugin distribution lives at
170
170
  [jianhuawang/botnote](https://github.com/jianhuawang/botnote). The MCP server
171
- inside the plugin uses the URL + token from the install prompt and calls the
172
- `botnote` CLI from PATH. Install the npm package first on non-dev machines.
171
+ inside the plugin uses the URL + token from the install prompt. A global
172
+ `botnote` CLI install is optional: the plugin runs `npx -y botnote@<plugin-version> mcp`
173
+ when no matching local CLI is available.
173
174
 
174
175
  ### Codex
175
176
 
@@ -225,9 +226,10 @@ source = "/absolute/path/to/botnote"
225
226
  ```
226
227
 
227
228
  The Codex plugin starts `./scripts/run-mcp.sh`. It defaults to
228
- `BOTNOTE_URL=http://127.0.0.1:4280`, calls `botnote mcp` from PATH, and falls
229
- back to `npx -y botnote mcp`. Set `BOTNOTE_URL` and `BOTNOTE_TOKEN` only when
230
- using a remote daemon.
229
+ `BOTNOTE_URL=https://botnote.net`, reads `~/.config/botnote/config.json` when
230
+ available, uses a matching `botnote` CLI from PATH when present, and otherwise
231
+ runs the exact plugin version with `npx -y botnote@<plugin-version> mcp`. Set
232
+ `BOTNOTE_URL` and `BOTNOTE_TOKEN` only when using a custom daemon.
231
233
 
232
234
  ### Cursor
233
235
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botnote",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "Notion for bots. Lightweight project + notes + memory store, agent-first.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.33.0",