@meridiona/meridian-darwin-arm64 1.70.0 → 1.71.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 +30 -0
- package/VERSION +1 -1
- package/bin/meridian +0 -0
- package/bin/meridian-tray +0 -0
- package/package.json +1 -1
- package/services/pyproject.toml +1 -1
package/.env.example
CHANGED
|
@@ -158,6 +158,36 @@
|
|
|
158
158
|
# AZURE_DEVOPS_URL=https://dev.azure.com/your-org/your-project
|
|
159
159
|
# AZURE_DEVOPS_PAT=your-pat-here
|
|
160
160
|
|
|
161
|
+
# ---------------------------------------------------------------------------
|
|
162
|
+
# PostHog product analytics (tray/DMG build only)
|
|
163
|
+
#
|
|
164
|
+
# A release build bakes the PostHog project API key in at compile time
|
|
165
|
+
# (CI-only, from the POSTHOG_API_KEY repo secret; never committed to source).
|
|
166
|
+
# A LOCAL SOURCE BUILD (cargo run / npm run tauri dev) has no baked-in key, so
|
|
167
|
+
# analytics compiles in silently disabled unless you set POSTHOG_API_KEY below
|
|
168
|
+
# — only needed if you're specifically testing the analytics capture path.
|
|
169
|
+
# ---------------------------------------------------------------------------
|
|
170
|
+
|
|
171
|
+
# POSTHOG_API_KEY=phc_your_project_api_key_here
|
|
172
|
+
|
|
173
|
+
# ---------------------------------------------------------------------------
|
|
174
|
+
# Clerk email sign-in (setup wizard's Sign-in step, tray/DMG build only)
|
|
175
|
+
#
|
|
176
|
+
# A release build bakes the Clerk publishable key in at compile time (CI-only,
|
|
177
|
+
# from the MERIDIAN_CLERK_PUBLISHABLE_KEY repo secret; never committed to
|
|
178
|
+
# source) — see tray/src-tauri/src/commands/account.rs. A LOCAL SOURCE BUILD
|
|
179
|
+
# has no baked-in key, so set CLERK_PUBLISHABLE_KEY below and the tray will
|
|
180
|
+
# pick it up on the next `cargo run`/`npm run tauri dev` — unlike most of this
|
|
181
|
+
# file, the tray reads this ONE key straight out of this file itself (see
|
|
182
|
+
# `install::env_key_from_path`), not via dotenvy auto-load, so no shell
|
|
183
|
+
# export is needed. Get the dev instance's key with `clerk env pull` after
|
|
184
|
+
# `clerk link --app app_3GIemyKuI07XdI7jFuYxpBqy9y3` (publishable key only —
|
|
185
|
+
# this is a public identifier, safe to keep here; never set CLERK_SECRET_KEY,
|
|
186
|
+
# the tray has no server-side use for it).
|
|
187
|
+
# ---------------------------------------------------------------------------
|
|
188
|
+
|
|
189
|
+
# CLERK_PUBLISHABLE_KEY=pk_test_your_publishable_key_here
|
|
190
|
+
|
|
161
191
|
# ---------------------------------------------------------------------------
|
|
162
192
|
# Python LLM backend — cloud fallback for the coding-agent summariser (Claude/
|
|
163
193
|
# Codex paths). The MLX classifier server ignores these.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.71.0
|
package/bin/meridian
CHANGED
|
Binary file
|
package/bin/meridian-tray
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.71.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": {
|
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.71.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" }]
|