@meridiona/meridian-darwin-arm64 1.36.0 → 1.37.1
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/lib-trello-setup.sh +34 -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.1
|
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.1",
|
|
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": {
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# meridian — normalises screenpipe activity into structured app sessions
|
|
2
|
+
#
|
|
3
|
+
# Shared Trello credential-collection helper for install-from-bundle.sh.
|
|
4
|
+
# Trello uses a legacy token grant delivered via URL fragment — the daemon
|
|
5
|
+
# handles the relay; users just click Accept in the browser.
|
|
6
|
+
#
|
|
7
|
+
# Depends (late-binding) on info/ok/warn from the sourcing installer.
|
|
8
|
+
|
|
9
|
+
# _connect_trello <env_file> <meridian_bin> — Browser token flow.
|
|
10
|
+
# On bundle installs the binary is always ready; when it isn't, prints a
|
|
11
|
+
# manual command the user can run after the build completes.
|
|
12
|
+
_connect_trello() {
|
|
13
|
+
local env_file="$1" bin="${2:-}"
|
|
14
|
+
|
|
15
|
+
info "Trello sign-in opens your browser — you'll grant Meridian read/write access."
|
|
16
|
+
read -r -p " Connect Trello in your browser? [Y/n] " ans
|
|
17
|
+
if [[ "$ans" =~ ^[Nn] ]]; then
|
|
18
|
+
info "Skipped. To connect later: meridian oauth-login trello"
|
|
19
|
+
return 0
|
|
20
|
+
fi
|
|
21
|
+
|
|
22
|
+
if [[ -n "$bin" && -x "$bin" ]]; then
|
|
23
|
+
info "Opening your browser to authorize Trello…"
|
|
24
|
+
if "$bin" oauth-login trello; then
|
|
25
|
+
ok "Trello connected via browser OAuth"
|
|
26
|
+
else
|
|
27
|
+
warn "Browser sign-in didn't complete."
|
|
28
|
+
warn "To connect later: meridian oauth-login trello"
|
|
29
|
+
fi
|
|
30
|
+
else
|
|
31
|
+
info "Run this once the install finishes:"
|
|
32
|
+
info " meridian oauth-login trello"
|
|
33
|
+
fi
|
|
34
|
+
}
|
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.1"
|
|
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
|