@meridiona/meridian-darwin-arm64 1.35.1 → 1.37.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/.env.example +9 -0
- package/VERSION +1 -1
- package/bin/meridian +0 -0
- package/package.json +1 -1
- package/scripts/install-from-bundle.sh +5 -0
- package/scripts/meridian-cli.sh +24 -0
- package/services/pyproject.toml +1 -1
- package/ui.tar.gz +0 -0
package/.env.example
CHANGED
|
@@ -111,6 +111,15 @@
|
|
|
111
111
|
# LINEAR_API_KEY=lin_api_your_key_here
|
|
112
112
|
# LINEAR_TEAM_IDS=ENG,DESIGN # optional — comma-separated team KEY or id; empty = all teams
|
|
113
113
|
|
|
114
|
+
# ---------------------------------------------------------------------------
|
|
115
|
+
# Trello — browser OAuth (`meridian oauth-login trello`).
|
|
116
|
+
# TRELLO_APP_KEY is Meridian's Power-Up identity key (like an OAuth client_id).
|
|
117
|
+
# It is injected into the bundle .env by package-release.sh — never commit the
|
|
118
|
+
# real key to source. Users connect with their own Trello account via OAuth;
|
|
119
|
+
# their personal token lands in ~/.meridian/oauth/trello.json.
|
|
120
|
+
# ---------------------------------------------------------------------------
|
|
121
|
+
# TRELLO_APP_KEY= # injected at package time
|
|
122
|
+
|
|
114
123
|
# ---------------------------------------------------------------------------
|
|
115
124
|
# Python LLM backend — cloud fallback for the coding-agent summariser (Claude/
|
|
116
125
|
# Codex paths). The MLX classifier server ignores these.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.37.0
|
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.
|
|
3
|
+
"version": "1.37.0",
|
|
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": {
|
|
@@ -105,12 +105,17 @@ collect_credentials() {
|
|
|
105
105
|
prompt_env_var "LINEAR_API_KEY" "Linear API key" 1 "$env_file"
|
|
106
106
|
prompt_env_var "LINEAR_TEAM_IDS" "Linear team IDs (optional, comma-sep)" 0 "$env_file"
|
|
107
107
|
fi
|
|
108
|
+
echo >&2
|
|
109
|
+
if prompt_category "Trello"; then
|
|
110
|
+
_connect_trello "$env_file" "${APP_ROOT}/bin/meridian"
|
|
111
|
+
fi
|
|
108
112
|
ok "Credential collection complete"
|
|
109
113
|
}
|
|
110
114
|
|
|
111
115
|
# GitHub + Jira setup helpers — shared with install.sh.
|
|
112
116
|
source "${APP_ROOT}/scripts/lib-github-setup.sh"
|
|
113
117
|
source "${APP_ROOT}/scripts/lib-jira-setup.sh"
|
|
118
|
+
source "${APP_ROOT}/scripts/lib-trello-setup.sh"
|
|
114
119
|
|
|
115
120
|
GUI_TARGET="gui/$(id -u)"
|
|
116
121
|
LAUNCH_AGENTS="${HOME}/Library/LaunchAgents"
|
package/scripts/meridian-cli.sh
CHANGED
|
@@ -531,6 +531,30 @@ PYEOF
|
|
|
531
531
|
info "Claude Code SessionEnd hook removed"
|
|
532
532
|
fi
|
|
533
533
|
|
|
534
|
+
# 8. Remove downloaded MLX model weights from the HuggingFace cache.
|
|
535
|
+
# Only delete models in meridian's catalog — avoids touching models the user
|
|
536
|
+
# downloaded separately for other tools (Ollama, LM Studio, etc.).
|
|
537
|
+
local _hf_cache="${HOME}/.cache/huggingface/hub"
|
|
538
|
+
local _meridian_models=(
|
|
539
|
+
"models--mlx-community--Llama-3.3-70B-Instruct-4bit"
|
|
540
|
+
"models--mlx-community--DeepSeek-R1-Distill-Llama-70B-4bit"
|
|
541
|
+
"models--mlx-community--Qwen3.6-35B-A3B-4bit"
|
|
542
|
+
"models--mlx-community--DeepSeek-R1-Distill-Qwen-32B-4bit"
|
|
543
|
+
"models--mlx-community--phi-4-4bit"
|
|
544
|
+
"models--mlx-community--DeepSeek-R1-Distill-Qwen-14B-4bit"
|
|
545
|
+
"models--mlx-community--gemma-3-12b-it-qat-4bit"
|
|
546
|
+
"models--mlx-community--Qwen3.5-9B-OptiQ-4bit"
|
|
547
|
+
"models--mlx-community--Qwen3.5-4B-MLX-4bit"
|
|
548
|
+
"models--mlx-community--Llama-3.2-3B-Instruct-4bit"
|
|
549
|
+
)
|
|
550
|
+
for _mdir in "${_meridian_models[@]}"; do
|
|
551
|
+
local _mpath="${_hf_cache}/${_mdir}"
|
|
552
|
+
if [[ -d "${_mpath}" ]]; then
|
|
553
|
+
rm -rf "${_mpath}"
|
|
554
|
+
info "removed model: ${_mdir}"
|
|
555
|
+
fi
|
|
556
|
+
done
|
|
557
|
+
|
|
534
558
|
set -e
|
|
535
559
|
|
|
536
560
|
ok "Meridian uninstalled"
|
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.
|
|
7
|
+
version = "1.37.0"
|
|
8
8
|
description = "Meridian agents — MLX classifier server and Jira worklog synthesis for meridian.db"
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
authors = [{ name = "Meridiona" }]
|
package/ui.tar.gz
CHANGED
|
Binary file
|