@meridiona/meridian-darwin-arm64 1.33.0 → 1.34.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 CHANGED
@@ -24,12 +24,29 @@
24
24
  # MERIDIAN_UI_PORT=3939
25
25
 
26
26
  # ---------------------------------------------------------------------------
27
- # Jira (all three required to enable the Jira connector)
27
+ # Jira choose ONE auth path:
28
+ #
29
+ # (A) Browser OAuth (recommended): just run `meridian oauth-login jira`.
30
+ # It opens your browser, you click Accept, and tokens land in
31
+ # ~/.meridian/oauth/jira.json (auto-refreshed). No env vars, no API
32
+ # token; the site is discovered automatically. Then `meridian restart`.
33
+ #
34
+ # (B) Static API token (legacy): set JIRA_BASE_URL + JIRA_EMAIL + JIRA_API_TOKEN.
35
+ #
36
+ # If both are present, OAuth wins. JIRA_PROJECT_KEYS applies to either.
28
37
  # ---------------------------------------------------------------------------
29
38
 
39
+ # (A) OAuth needs NO config — Meridian ships a public client id. The vars below are
40
+ # optional overrides (e.g. a self-hosted app or a non-default redirect port).
41
+ # JIRA_OAUTH_CLIENT_ID=your-atlassian-app-client-id # override the baked-in client id
42
+ # JIRA_OAUTH_REDIRECT_PORT=9123 # must match the app's registered redirect
43
+ # http://127.0.0.1:<port>/callback
44
+
45
+ # (B) Static API token
30
46
  # JIRA_BASE_URL=https://your-org.atlassian.net
31
47
  # JIRA_EMAIL=you@your-org.com
32
48
  # JIRA_API_TOKEN=your-api-token-here
49
+
33
50
  # JIRA_PROJECT_KEYS=KAN,ENG # optional — comma-separated; empty = all projects
34
51
 
35
52
  # ---------------------------------------------------------------------------
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.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.33.0",
3
+ "version": "1.34.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": {
@@ -84,6 +84,9 @@ collect_credentials() {
84
84
  echo " (edit later anytime: meridian config edit)" >&2
85
85
  echo >&2
86
86
  if prompt_category "Jira"; then
87
+ info "Easiest: skip the token prompts below and, after install, run"
88
+ info " meridian oauth-login jira — connect in your browser, no API token."
89
+ info "Or fill these in for the legacy API-token path:"
87
90
  prompt_env_var "JIRA_BASE_URL" "Jira URL (e.g. https://your-org.atlassian.net)" 0 "$env_file"
88
91
  # The Python side reads JIRA_URL, the Rust side JIRA_BASE_URL — keep both in sync.
89
92
  local jira_url; jira_url="$(get_env_value JIRA_BASE_URL "$env_file")"
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "meridian-agents"
7
- version = "1.33.0"
7
+ version = "1.34.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