mulmoclaude 1.8.0 → 1.9.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 +8 -1
- package/client/assets/JsonEditor-BktU9OHD.js +10 -0
- package/client/assets/{PluginScopedRoot-BsxEmnEH.js → PluginScopedRoot-C8w5S4g8.js} +1 -1
- package/client/assets/{index-BJXZkShh.js → index-jQFYMjfF.js} +138 -138
- package/client/assets/index-rxM8QYSF.css +2 -0
- package/client/assets/{marp-CrH-2RaR.js → marp-BRMJ-LDQ.js} +1 -1
- package/client/assets/vue-i18n-DwyyKgu3.js +3 -0
- package/client/index.html +4 -4
- package/package.json +4 -4
- package/server/agent/config.ts +46 -3
- package/server/agent/messageDecorate.ts +83 -9
- package/server/agent/prompt.ts +3 -2
- package/server/api/routes/agent.ts +44 -30
- package/server/build/mcp-server.mjs +6679 -0
- package/server/index.ts +5 -1
- package/server/prompts/system/system.md +15 -0
- package/server/system/env.ts +11 -14
- package/server/utils/claudeConfigPath.ts +25 -4
- package/server/utils/envCoerce.ts +42 -0
- package/server/workspace/roles.ts +158 -11
- package/src/App.vue +9 -9
- package/src/components/SentAttachmentChip.vue +13 -3
- package/src/components/SettingsModal.vue +6 -3
- package/src/plugins/textResponse/Preview.vue +3 -2
- package/src/plugins/textResponse/View.vue +4 -3
- package/src/plugins/textResponse/types.ts +8 -5
- package/src/types/attachment.ts +22 -0
- package/src/types/session.ts +6 -4
- package/src/types/sse.ts +7 -5
- package/src/utils/agent/pastedAttachment.ts +13 -2
- package/src/utils/agent/request.ts +20 -13
- package/src/utils/attachment/entries.ts +32 -0
- package/src/utils/session/sessionHelpers.ts +6 -5
- package/src/utils/tools/result.ts +18 -8
- package/client/assets/JsonEditor-BrZEdf9X.js +0 -10
- package/client/assets/index-Ck5fULZq.css +0 -2
- package/client/assets/vue-i18n-n-3qAdTj.js +0 -3
package/README.md
CHANGED
|
@@ -149,7 +149,7 @@ Recommended: ≥ 32 characters of random data (shorter values trigger a startup
|
|
|
149
149
|
- **Auto memory** — the agent maintains a typed memory layout (`conversations/memory/<type>/<topic>.md`) and reads it ambient-style.
|
|
150
150
|
- **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)).
|
|
151
151
|
- **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.
|
|
152
|
-
- **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. A **Push to Google** button beside it sends the other way, creating events for records you added and updating ones you edited — it never deletes, and it skips anything edited on both sides rather than picking a winner.
|
|
152
|
+
- **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. A **Push to Google** button beside it sends the other way, creating events for records you added and updating ones you edited — it never deletes, and it skips anything edited on both sides rather than picking a winner. Ask for **two-way sync** and the collection pushes on the same schedule it pulls on, as one cycle, so there is no button to forget; a record the push could not send is then left alone by the pull instead of being overwritten. Without it the pull is automatic and the push is a button, so push before you sync — a pull overwrites a locally edited record as soon as Google reports a change to that event. Event **notes and location** travel in both directions alongside the title, times and colour. **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)).
|
|
153
153
|
|
|
154
154
|
## Plugin authoring (`--dev-plugin`)
|
|
155
155
|
|
|
@@ -163,6 +163,13 @@ Server-side `definePlugin` factory edits still require a launcher restart (Node
|
|
|
163
163
|
- Architecture, scripts, and the publish flow live in `docs/developer.md` of the repo.
|
|
164
164
|
- Publish flow for this package: see `bin/prepare-dist.js` header comment plus `.claude/skills/publish-mulmoclaude/SKILL.md`.
|
|
165
165
|
|
|
166
|
+
## Updates
|
|
167
|
+
|
|
168
|
+
New releases and features are announced on X, **in Japanese**.
|
|
169
|
+
|
|
170
|
+
- [Singularity Society (@SingularitySoci)](https://x.com/SingularitySoci) — release and feature announcements
|
|
171
|
+
- [Satoshi Nakajima (@snakajima)](https://x.com/snakajima) — MulmoClaude's owner
|
|
172
|
+
|
|
166
173
|
## Related projects
|
|
167
174
|
|
|
168
175
|
This launcher is published by [Receptron](https://github.com/receptron), who also build MulmoTerminal below.
|