@meridiona/meridian-darwin-arm64 1.23.2 → 1.23.3
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/VERSION +1 -1
- package/bin/meridian +0 -0
- package/package.json +1 -1
- package/scripts/install-from-bundle.sh +19 -0
- package/services/pyproject.toml +1 -1
- package/ui.tar.gz +0 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.23.
|
|
1
|
+
1.23.3
|
package/bin/meridian
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meridiona/meridian-darwin-arm64",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.3",
|
|
4
4
|
"description": "Prebuilt Meridian app for macOS arm64 (daemon binary + dashboard + Python services). Installed via @meridiona/meridian.",
|
|
5
5
|
"homepage": "https://github.com/Meridiona/meridian",
|
|
6
6
|
"repository": {
|
|
@@ -335,6 +335,25 @@ else
|
|
|
335
335
|
fi
|
|
336
336
|
fi
|
|
337
337
|
|
|
338
|
+
# On macOS 26+, install apple-fm-sdk so Apple Intelligence is used instead of
|
|
339
|
+
# downloading a large MLX model. This runs after both venv paths (tarball or uv
|
|
340
|
+
# sync) so the package is available regardless of how the venv was built.
|
|
341
|
+
# apple-fm-sdk only installs on macOS 26+ (links against system frameworks);
|
|
342
|
+
# on older macOS pip will fail gracefully and MLX is used as the fallback.
|
|
343
|
+
_macos_major="$(sw_vers -productVersion 2>/dev/null | cut -d. -f1)"
|
|
344
|
+
if [[ "${_macos_major:-0}" -ge 26 ]]; then
|
|
345
|
+
if "${VENV}/bin/python" -c "import apple_fm_sdk" 2>/dev/null; then
|
|
346
|
+
ok "apple-fm-sdk already installed — Apple Intelligence will be used"
|
|
347
|
+
else
|
|
348
|
+
info "macOS ${_macos_major} detected — installing apple-fm-sdk for Apple Intelligence (no MLX model download needed)…"
|
|
349
|
+
if "${VENV}/bin/pip" install --quiet "apple-fm-sdk" 2>/dev/null; then
|
|
350
|
+
ok "apple-fm-sdk installed — Apple Intelligence will be used"
|
|
351
|
+
else
|
|
352
|
+
warn "apple-fm-sdk install failed — MLX model download will be used instead"
|
|
353
|
+
fi
|
|
354
|
+
fi
|
|
355
|
+
fi
|
|
356
|
+
|
|
338
357
|
# ── 5. macOS permissions for screenpipe (manual — can't be automated) ────────
|
|
339
358
|
if [[ "${SKIP_PERMISSIONS}" -eq 0 ]]; then
|
|
340
359
|
echo "→ screenpipe needs 2 macOS permissions: Screen Recording and Accessibility."
|
package/services/pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "meridian-agents"
|
|
7
|
-
version = "1.23.
|
|
7
|
+
version = "1.23.3"
|
|
8
8
|
description = "Meridian agents — hermes task linking and Jira progress updates for meridian.db"
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
authors = [{ name = "Meridiona" }]
|
package/ui.tar.gz
CHANGED
|
Binary file
|