mulmoclaude 1.5.0 → 1.6.0
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 +10 -1
- package/client/assets/{index-DvmIkM2Y.js → index-Hhh71NtH.js} +12 -12
- package/client/assets/{marp-CenqCdMV.js → marp-DUfJYrcF.js} +1 -1
- package/client/index.html +1 -1
- package/package.json +24 -20
- package/server/agent/mcp-tools/manageCollection.ts +11 -5
- package/server/api/routes/collectionCalendarRefresh.ts +41 -0
- package/server/api/routes/collections.ts +28 -25
- package/server/api/routes/config-refresh.ts +5 -0
- package/server/remoteHost/handlers/googleCalendar.ts +54 -0
- package/server/remoteHost/handlers/index.ts +10 -1
- package/server/services/google/initialCalendarSync.ts +30 -0
- package/server/utils/singleFlight.ts +57 -0
- package/src/config/apiRoutes.ts +3 -2
package/README.md
CHANGED
|
@@ -128,7 +128,8 @@ Recommended: ≥ 32 characters of random data (shorter values trigger a startup
|
|
|
128
128
|
- **Marp slides** — `marp: true` frontmatter on any markdown file renders a slide deck in the canvas with PDF export. Custom themes via `config/marp-themes/<name>.css`.
|
|
129
129
|
- **Auto memory** — the agent maintains a typed memory layout (`conversations/memory/<type>/<topic>.md`) and reads it ambient-style.
|
|
130
130
|
- **Web Push on task finish** — enable in Settings → Notifications to get a push on your phone when the answer to a question you asked is ready, even with the browser closed. Requires the RemoteHost connection + a registered device (see [`docs/remote-host.md`](https://github.com/receptron/mulmoclaude/blob/main/docs/remote-host.md#web-push-on-task-finish-2086)).
|
|
131
|
-
- **Google (Calendar / Tasks / Drive)** — link your Google account in Settings → Plugins → Google and consent in the browser; no Google Cloud setup needed. The agent then gets a `google` tool
|
|
131
|
+
- **Google (Calendar / Tasks / Drive)** — link your Google account in Settings → Plugins → Google and consent in the browser; no Google Cloud setup needed. The agent then gets a `google` tool covering the full round trip — list, create, edit and delete calendar events and tasks (including putting a completed task back on the list), plus the Drive files it creates — and the phone remote can trigger the same commands.
|
|
132
|
+
- **Google Calendar → collection sync** — a collection can mirror one of your calendars and keep itself current: the first sync starts as soon as you ask for the collection, an hourly pass follows, and a Sync button forces one. It calls the Calendar API directly rather than routing the events through the agent, so keeping it fresh costs no tokens. **The refresh token stays on your machine** (`~/.config/mulmo/`) — the sign-in service applies the OAuth client secret Google requires and keeps nothing. Prefer your own OAuth client? Drop a *desktop-app* client JSON in `~/.secrets/` and the whole flow stays local (see [`docs/remote-host.md`](https://github.com/receptron/mulmoclaude/blob/main/docs/remote-host.md)).
|
|
132
133
|
|
|
133
134
|
## Plugin authoring (`--dev-plugin`)
|
|
134
135
|
|
|
@@ -142,6 +143,14 @@ Server-side `definePlugin` factory edits still require a launcher restart (Node
|
|
|
142
143
|
- Architecture, scripts, and the publish flow live in `docs/developer.md` of the repo.
|
|
143
144
|
- Publish flow for this package: see `bin/prepare-dist.js` header comment plus `.claude/skills/publish-mulmoclaude/SKILL.md`.
|
|
144
145
|
|
|
146
|
+
## Related projects
|
|
147
|
+
|
|
148
|
+
This launcher is published by [Receptron](https://github.com/receptron), who also build MulmoTerminal below.
|
|
149
|
+
|
|
150
|
+
- **[MulmoClaude on GitHub](https://github.com/receptron/mulmoclaude)** — source, issues, and the full documentation for the app this package launches.
|
|
151
|
+
- **[MulmoTerminal](https://github.com/receptron/mulmoterminal)** — a terminal-first cockpit for running many AI coding agents in parallel. One roster showing every session's summary and PR status, tmux-backed session persistence, git-worktree isolation, one-click PRs, and mobile push with remote reply.
|
|
152
|
+
- **[MulmoTerminal manual](https://receptron.github.io/mulmoterminal/)** — setup, workflows, feature reference, configuration, mobile notifications, and alternative / local model providers. Available in English and Japanese.
|
|
153
|
+
|
|
145
154
|
## License
|
|
146
155
|
|
|
147
156
|
MIT
|