@mulmoclaude/google-plugin 0.2.0 → 0.2.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 +7 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -5,9 +5,13 @@ account** to the chat agent as one `google` tool (kind-discriminated
5
5
  dispatch). Server-only — no Vue View.
6
6
 
7
7
  - Engine: `@mulmoclaude/core/google` (OAuth loopback + PKCE, token store at
8
- the host-neutral `~/.config/mulmo/google-token.json`, Calendar v3 REST).
9
- The host's settings UI, remote commands, auth CLI, and this tool share one
10
- link state — across hosts, too.
8
+ the host-neutral `~/.config/mulmo/google-token.json`, Calendar / Tasks /
9
+ Drive REST). The host's settings UI, remote commands, auth CLI, and this
10
+ tool share one link state — across hosts, too.
11
+ - Linking needs **no Google Cloud setup**: the mulmoserver broker applies the
12
+ OAuth client secret Google requires and stores nothing; tokens stay on the
13
+ user's machine. A `~/.secrets/client_secret_*.json` (advanced) keeps the
14
+ whole flow local instead.
11
15
  - Kinds: `status`; Calendar (`calendarListEvents`, `calendarCreateEvent`);
12
16
  Tasks (`taskListsList`, `tasksList`, `tasksCreate`, `tasksComplete`);
13
17
  Drive (`driveList`, `driveCreate`, `driveRead`).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mulmoclaude/google-plugin",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Google integration tool for MulmoClaude — operates the user's locally linked Google account (Calendar now; Tasks / Drive ride the same grant later). Server-only; no Vue View.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -21,7 +21,7 @@
21
21
  "test": "tsx --test test/test_*.ts"
22
22
  },
23
23
  "dependencies": {
24
- "@mulmoclaude/core": "^0.21.0"
24
+ "@mulmoclaude/core": "^0.22.0"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "gui-chat-protocol": "^0.4.0",