mulmoclaude 1.7.0 → 1.7.2
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 +1 -1
- package/bin/mulmoclaude.js +12 -0
- package/client/assets/{index-BF0-YCkn.js → index-MNdG25W1.js} +12 -12
- package/client/assets/{marp-DQlBGbuq.js → marp-DLKQhlvf.js} +1 -1
- package/client/index.html +1 -1
- package/package.json +3 -3
- package/server/index.ts +14 -1
- package/server/system/envFile.ts +27 -0
- package/server/system/loadEnv.ts +38 -0
- package/server/system/shadowedEnv.ts +192 -0
- package/src/lang/de.ts +4 -0
- package/src/lang/en.ts +4 -0
- package/src/lang/es.ts +4 -0
- package/src/lang/fr.ts +4 -0
- package/src/lang/ja.ts +4 -0
- package/src/lang/ko.ts +4 -0
- package/src/lang/pt-BR.ts +4 -0
- package/src/lang/zh.ts +4 -0
- package/src/plugins/wiki/history/HistoryDetail.vue +1 -1
- package/src/plugins/wiki/history/HistoryTab.vue +1 -1
- package/src/plugins/wiki/history/RestoreConfirm.vue +1 -1
- package/server/system/logs/aaa +0 -737
- package/server/system/logs/bb +0 -446
package/README.md
CHANGED
|
@@ -123,7 +123,7 @@ Recommended: ≥ 32 characters of random data (shorter values trigger a startup
|
|
|
123
123
|
|
|
124
124
|
## Optional features
|
|
125
125
|
|
|
126
|
-
- **Gemini API key** (`GEMINI_API_KEY` in environment or `.env`) — enables AI image generation (`generateImage`), audio / video. Free tier suffices for everyday use; get one from [Google AI Studio](https://aistudio.google.com/).
|
|
126
|
+
- **Gemini API key** (`GEMINI_API_KEY` in environment or `.env`) — enables AI image generation (`generateImage`), audio / video. Free tier suffices for everyday use; get one from [Google AI Studio](https://aistudio.google.com/). Set it in both places and the exported shell value wins, `.env` is ignored — the app now says so in the notification bell instead of leaving you editing a file that has no effect.
|
|
127
127
|
- **Local voice input** (macOS only, opt-in) — `whisper.cpp` for dictating chat messages without sending audio to a cloud API.
|
|
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.
|
package/bin/mulmoclaude.js
CHANGED
|
@@ -235,6 +235,18 @@ const serverEnv = {
|
|
|
235
235
|
if (devPluginPaths.length > 0) {
|
|
236
236
|
serverEnv.MULMOCLAUDE_DEV_PLUGINS = devPluginPaths.join(PATH_DELIMITER);
|
|
237
237
|
}
|
|
238
|
+
// Hand the shell-shadowed `.env` keys to the server so it can raise an
|
|
239
|
+
// in-app notification (#2604). The log line above is easy to scroll past,
|
|
240
|
+
// and a user who edits `.env` while a stale shell export wins gets no
|
|
241
|
+
// other hint that the file is being ignored. Key NAMES only, never values.
|
|
242
|
+
// Deleted first, not just conditionally set: this var is ours to
|
|
243
|
+
// compute, and a value inherited from the shell (or from the `.env` we
|
|
244
|
+
// just merged) would otherwise reach the server and be reported as a
|
|
245
|
+
// conflict that does not exist.
|
|
246
|
+
delete serverEnv.MULMOCLAUDE_SHADOWED_ENV_KEYS;
|
|
247
|
+
if (skippedKeys.length > 0) {
|
|
248
|
+
serverEnv.MULMOCLAUDE_SHADOWED_ENV_KEYS = skippedKeys.join(",");
|
|
249
|
+
}
|
|
238
250
|
// Boolean CLI flags that mirror an env var (#1089 + bundle): inject
|
|
239
251
|
// the corresponding VAR=1 into the spawned server so the flag is
|
|
240
252
|
// equivalent to the env-var prefix. The server reads these via
|