create-merlin-brain 3.20.0 → 3.20.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.
|
@@ -17,7 +17,7 @@ HOOKS_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
17
17
|
# ── Main sync logic (runs in background) ────────────────────────
|
|
18
18
|
_merlin_memory_sync() {
|
|
19
19
|
local merlin_dir="${HOME}/.claude/merlin"
|
|
20
|
-
local api_url="${MERLIN_API_URL:-https://
|
|
20
|
+
local api_url="${MERLIN_API_URL:-https://auth.merlin.build}"
|
|
21
21
|
local api_key="${MERLIN_API_KEY:-}"
|
|
22
22
|
local state_file="${merlin_dir}/session-memory.json"
|
|
23
23
|
local cwd="${PWD:-$(pwd)}"
|
|
@@ -97,7 +97,7 @@ _merlin_sync_agents() {
|
|
|
97
97
|
local agents_dir="${HOME}/.claude/agents"
|
|
98
98
|
local merlin_dir="${HOME}/.claude/merlin"
|
|
99
99
|
local last_sync="${merlin_dir}/.last-agent-sync"
|
|
100
|
-
local api_url="${MERLIN_API_URL:-https://
|
|
100
|
+
local api_url="${MERLIN_API_URL:-https://auth.merlin.build}"
|
|
101
101
|
|
|
102
102
|
[ -d "${agents_dir}" ] || return 0
|
|
103
103
|
|
package/files/loop/lib/blend.sh
CHANGED
|
@@ -386,7 +386,7 @@ _blend_fetch_sights_context() {
|
|
|
386
386
|
_blend_pull_cloud_agents() {
|
|
387
387
|
local task="$1"
|
|
388
388
|
local api_key="${MERLIN_API_KEY:-}"
|
|
389
|
-
local api_url="${MERLIN_API_URL:-https://
|
|
389
|
+
local api_url="${MERLIN_API_URL:-https://auth.merlin.build}"
|
|
390
390
|
|
|
391
391
|
# Skip if no API key
|
|
392
392
|
[ -z "$api_key" ] && return
|
|
@@ -6,7 +6,7 @@ set -euo pipefail
|
|
|
6
6
|
AGENTS_DIR="${HOME}/.claude/agents"
|
|
7
7
|
MERLIN_DIR="${HOME}/.claude/merlin"
|
|
8
8
|
LAST_SYNC="${MERLIN_DIR}/.last-agent-sync"
|
|
9
|
-
API_URL="${MERLIN_API_URL:-https://
|
|
9
|
+
API_URL="${MERLIN_API_URL:-https://auth.merlin.build}"
|
|
10
10
|
|
|
11
11
|
RED='\033[0;31m'; GREEN='\033[0;32m'; YELLOW='\033[1;33m'
|
|
12
12
|
CYAN='\033[0;36m'; MAGENTA='\033[0;35m'; BOLD='\033[1m'
|
package/package.json
CHANGED