claude-multiacc 2.0.15 → 2.0.16
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/bin/claude +159 -3
- package/lib/__pycache__/audit.cpython-312.pyc +0 -0
- package/lib/__pycache__/keychain.cpython-312.pyc +0 -0
- package/lib/__pycache__/selector_policy.cpython-312.pyc +0 -0
- package/lib/__pycache__/selector_primitives.cpython-312.pyc +0 -0
- package/package.json +1 -1
- package/tests/run-tests.sh +56 -3
package/bin/claude
CHANGED
|
@@ -160,8 +160,119 @@ sel_log() {
|
|
|
160
160
|
printf '%s %s\n' "$(date -u +%Y-%m-%dT%H:%M:%SZ)" "$*" 2>/dev/null >> "$ACC_ROOT/selection.log" || true
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
+
# ---- model-scoped limits ------------------------------------------------------
|
|
164
|
+
# A usage bucket can be scoped to ONE MODEL ("weekly_scoped:Fable"), and such a bucket
|
|
165
|
+
# says nothing about the account's ability to serve a DIFFERENT model. The limits
|
|
166
|
+
# refresher parks the whole account for it all the same, and the >=90% cutoff reads the
|
|
167
|
+
# peak across every bucket — so on 2026-08-29 acct-02/06/07 sat at Fable 100% with their
|
|
168
|
+
# session buckets at 51/23/25%, were excluded from every selection, and a pool of eleven
|
|
169
|
+
# accounts offered nothing usable: the all-limited fallback handed out a
|
|
170
|
+
# session-exhausted account that rejected the operator's very first request. The retry
|
|
171
|
+
# layer already knew a scoped limit means "switch model, not account" (MODEL_LIMITPAT
|
|
172
|
+
# below); selection has to know it too.
|
|
173
|
+
FALLBACK_MODEL="${CLAUDE_MULTIACC_FALLBACK_MODEL:-claude-opus-5}"
|
|
174
|
+
|
|
175
|
+
# The model THIS invocation asks for ("" when it pins none), read from the caller's own
|
|
176
|
+
# argv: an explicit --model is never second-guessed, so an account whose Fable bucket is
|
|
177
|
+
# full stays genuinely unusable for `--model claude-fable-5`.
|
|
178
|
+
RUN_MODEL=""
|
|
179
|
+
_sel_next_is_model=0
|
|
180
|
+
for _sel_arg in "$@"; do
|
|
181
|
+
if [ "$_sel_next_is_model" = 1 ]; then
|
|
182
|
+
RUN_MODEL="$_sel_arg"; _sel_next_is_model=0; continue
|
|
183
|
+
fi
|
|
184
|
+
case "$_sel_arg" in
|
|
185
|
+
--model) _sel_next_is_model=1 ;;
|
|
186
|
+
--model=*) RUN_MODEL="${_sel_arg#--model=}" ;;
|
|
187
|
+
esac
|
|
188
|
+
done
|
|
189
|
+
unset _sel_arg _sel_next_is_model
|
|
190
|
+
|
|
191
|
+
sel_lc() { printf '%s' "${1:-}" | LC_ALL=C tr 'A-Z' 'a-z'; }
|
|
192
|
+
|
|
193
|
+
# The model token a `.limited` marker is scoped to ("Fable"); empty when the marker is
|
|
194
|
+
# not model-scoped (session, weekly_all, client:…).
|
|
195
|
+
scoped_tok_of_marker() { # $1 = acct dir
|
|
196
|
+
local line=""
|
|
197
|
+
[ -f "$1/.limited" ] && line="$(sed -n 2p "$1/.limited" 2>/dev/null)"
|
|
198
|
+
case "$line" in
|
|
199
|
+
*bucket=weekly_scoped:*) line="${line#*bucket=weekly_scoped:}"; printf '%s' "${line%% *}" ;;
|
|
200
|
+
esac
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
# Does a bucket scoped to model token $1 constrain THIS run?
|
|
204
|
+
# pinned to that model -> yes; the caller asked for exactly it
|
|
205
|
+
# pinned to another model -> no
|
|
206
|
+
# unpinned -> no, PROVIDED the fallback model escapes the bucket. The
|
|
207
|
+
# pick path then pins that fallback before exec, so an
|
|
208
|
+
# unpinned run never walks into the exhausted model.
|
|
209
|
+
scoped_blocks_run() { # $1 = model token
|
|
210
|
+
local tok run fb
|
|
211
|
+
tok="$(sel_lc "$1")"
|
|
212
|
+
[ -n "$tok" ] || return 1
|
|
213
|
+
run="$(sel_lc "${RUN_MODEL:-}")"
|
|
214
|
+
if [ -n "$run" ]; then
|
|
215
|
+
case "$run" in *"$tok"*) return 0 ;; *) return 1 ;; esac
|
|
216
|
+
fi
|
|
217
|
+
fb="$(sel_lc "$FALLBACK_MODEL")"
|
|
218
|
+
case "$fb" in *"$tok"*) return 0 ;; esac # nothing left to switch to
|
|
219
|
+
return 1
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
# Peak percent over the buckets that constrain THIS run — scoped buckets belonging to
|
|
223
|
+
# other models are skipped. Prints nothing when the reading predates per-bucket
|
|
224
|
+
# telemetry, so the caller falls back to the flat max_percent it used to trust.
|
|
225
|
+
applicable_peak() { # $1 = acct dir
|
|
226
|
+
local f="$1/limits.json"
|
|
227
|
+
[ -f "$f" ] || return 1
|
|
228
|
+
LC_ALL=C tr '{},' '\n\n\n' < "$f" 2>/dev/null \
|
|
229
|
+
| LC_ALL=C awk -v run="$(sel_lc "${RUN_MODEL:-}")" -v fb="$(sel_lc "$FALLBACK_MODEL")" '
|
|
230
|
+
function applies(name, tok) {
|
|
231
|
+
if (index(name, "weekly_scoped:") != 1) return 1
|
|
232
|
+
tok = substr(name, 15)
|
|
233
|
+
if (run != "") return index(run, tok) > 0
|
|
234
|
+
return index(fb, tok) > 0
|
|
235
|
+
}
|
|
236
|
+
/"name"[[:space:]]*:/ {
|
|
237
|
+
n = $0
|
|
238
|
+
sub(/.*"name"[[:space:]]*:[[:space:]]*"/, "", n); sub(/".*/, "", n)
|
|
239
|
+
name = tolower(n); next
|
|
240
|
+
}
|
|
241
|
+
/"percent"[[:space:]]*:/ {
|
|
242
|
+
p = $0
|
|
243
|
+
sub(/.*"percent"[[:space:]]*:[[:space:]]*/, "", p); sub(/[^0-9].*/, "", p)
|
|
244
|
+
if (p != "") { seen = 1; if (applies(name) && p + 0 > best) best = p + 0 }
|
|
245
|
+
next
|
|
246
|
+
}
|
|
247
|
+
END { if (seen) print best + 0 }
|
|
248
|
+
'
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
# The model token of a scoped bucket that is itself at/over the threshold ("" when
|
|
252
|
+
# none) — what the pick path needs to know to pin the fallback for an unpinned run.
|
|
253
|
+
scoped_over_tok() { # $1 = acct dir
|
|
254
|
+
local f="$1/limits.json"
|
|
255
|
+
[ -f "$f" ] || return 0
|
|
256
|
+
LC_ALL=C tr '{},' '\n\n\n' < "$f" 2>/dev/null \
|
|
257
|
+
| LC_ALL=C awk -v thr="${CLAUDE_MULTIACC_THRESHOLD:-90}" '
|
|
258
|
+
/"name"[[:space:]]*:/ {
|
|
259
|
+
n = $0
|
|
260
|
+
sub(/.*"name"[[:space:]]*:[[:space:]]*"/, "", n); sub(/".*/, "", n)
|
|
261
|
+
name = n; next
|
|
262
|
+
}
|
|
263
|
+
/"percent"[[:space:]]*:/ {
|
|
264
|
+
p = $0
|
|
265
|
+
sub(/.*"percent"[[:space:]]*:[[:space:]]*/, "", p); sub(/[^0-9].*/, "", p)
|
|
266
|
+
if (p != "" && p + 0 >= thr + 0 && index(tolower(name), "weekly_scoped:") == 1) {
|
|
267
|
+
print substr(name, 15); exit
|
|
268
|
+
}
|
|
269
|
+
next
|
|
270
|
+
}
|
|
271
|
+
'
|
|
272
|
+
}
|
|
273
|
+
|
|
163
274
|
marker_active() { # true if $1/.limited is still in force; clears cleanly-expired markers
|
|
164
|
-
local m="$1/.limited" reset=""
|
|
275
|
+
local m="$1/.limited" reset="" tok
|
|
165
276
|
[ -f "$m" ] || return 1
|
|
166
277
|
IFS= read -r reset < "$m" 2>/dev/null || reset=""
|
|
167
278
|
if ! num_ok "$reset"; then
|
|
@@ -174,6 +285,11 @@ marker_active() { # true if $1/.limited is still in force; clears cleanly-expire
|
|
|
174
285
|
rm -f "$m" 2>/dev/null
|
|
175
286
|
return 1
|
|
176
287
|
fi
|
|
288
|
+
# A park scoped to ONE model does not stop a run that will use another one.
|
|
289
|
+
tok="$(scoped_tok_of_marker "$1")"
|
|
290
|
+
if [ -n "$tok" ] && ! scoped_blocks_run "$tok"; then
|
|
291
|
+
return 1
|
|
292
|
+
fi
|
|
177
293
|
return 0
|
|
178
294
|
}
|
|
179
295
|
|
|
@@ -305,10 +421,15 @@ limited_percent_of() { # $1 acct dir -> the marked bucket's percent, or -1 (unkn
|
|
|
305
421
|
# fallback lives on, because "degraded service beats a hard failure" only holds
|
|
306
422
|
# for an account that can actually serve.
|
|
307
423
|
limited_hard_blocked() { # $1 acct dir
|
|
308
|
-
local m="$1/.limited" line="" p
|
|
424
|
+
local m="$1/.limited" line="" p tok
|
|
309
425
|
if [ -f "$m" ]; then
|
|
310
426
|
line="$(sed -n 2p "$m" 2>/dev/null)"
|
|
311
427
|
case "$line" in *reason=client-rate-limit*|*reason=error-cooldown*) return 0 ;; esac
|
|
428
|
+
# Exhausted for ONE model is not exhausted for the model this run will use.
|
|
429
|
+
tok="$(scoped_tok_of_marker "$1")"
|
|
430
|
+
if [ -n "$tok" ] && ! scoped_blocks_run "$tok"; then
|
|
431
|
+
return 1
|
|
432
|
+
fi
|
|
312
433
|
p="$(limited_percent_of "$1")"
|
|
313
434
|
if [ "$p" -ge 0 ] 2>/dev/null; then
|
|
314
435
|
[ "$p" -ge 100 ]
|
|
@@ -335,7 +456,12 @@ util_of() {
|
|
|
335
456
|
# (fail open — telemetry must never invent exclusions).
|
|
336
457
|
over_threshold() { # $1 = acct dir
|
|
337
458
|
local v
|
|
338
|
-
|
|
459
|
+
within_window "$1" "$EXCLUDE_STALE_AFTER" || return 1
|
|
460
|
+
# Buckets that constrain THIS run; a reading with no bucket list falls back to the
|
|
461
|
+
# flat peak, which is what this check always used.
|
|
462
|
+
v="$(applicable_peak "$1")"
|
|
463
|
+
[ -n "$v" ] || v="$(cutoff_field "$1" max_percent)" || return 1
|
|
464
|
+
num_ok "$v" || return 1
|
|
339
465
|
[ "$v" -ge "${CLAUDE_MULTIACC_THRESHOLD:-90}" ]
|
|
340
466
|
}
|
|
341
467
|
|
|
@@ -1083,6 +1209,22 @@ else
|
|
|
1083
1209
|
fi
|
|
1084
1210
|
done
|
|
1085
1211
|
sel_log "all-limited fallback=$(basename "$PICK_DIR") all-exhausted resets_in=$((best_reset > now ? best_reset - now : 0))s"
|
|
1212
|
+
# Every candidate rejects right now, so this pick WILL fail: say so on a terminal
|
|
1213
|
+
# instead of letting the operator read the client's bare limit error as a bad
|
|
1214
|
+
# choice by the pool (2026-08-29). Throttled, and never on a service's stderr.
|
|
1215
|
+
if [ -t 2 ]; then
|
|
1216
|
+
exn="$ACC_ROOT/.exhausted-notice"
|
|
1217
|
+
exlast=0
|
|
1218
|
+
[ -f "$exn" ] && exlast="$(file_mtime "$exn")"
|
|
1219
|
+
if [ $((now - exlast)) -gt 600 ]; then
|
|
1220
|
+
: 2>/dev/null > "$exn" || true
|
|
1221
|
+
exextra=""
|
|
1222
|
+
[ "${#expired[@]}" -gt 0 ] \
|
|
1223
|
+
&& exextra=" ${#expired[@]} further account(s) are unusable — see: claude-accounts expired."
|
|
1224
|
+
printf 'claude-multiacc: every usable account is at a limit right now; %s frees up in %ds and was chosen for that.%s\n' \
|
|
1225
|
+
"$(basename "$PICK_DIR")" "$((best_reset > now ? best_reset - now : 0))" "$exextra" >&2
|
|
1226
|
+
fi
|
|
1227
|
+
fi
|
|
1086
1228
|
fi
|
|
1087
1229
|
# Report the number this fallback ACTUALLY ranked on. Asking fresh_field here printed
|
|
1088
1230
|
# `weekly=?%` even when the pick was made on a perfectly good stale reading, so anyone
|
|
@@ -1113,6 +1255,20 @@ if [ -n "$tok" ] && ! token_preflight "$pick" "$tok"; then
|
|
|
1113
1255
|
fi
|
|
1114
1256
|
fi
|
|
1115
1257
|
unset CLAUDE_MULTIACC_PREFLIGHT_DEPTH
|
|
1258
|
+
|
|
1259
|
+
# The picked account may be eligible only because its exhausted bucket belongs to a
|
|
1260
|
+
# model this run did not ask for. Handing it the default model anyway would open the
|
|
1261
|
+
# session on "You've reached your Fable 5 limit" — the exact failure this selection
|
|
1262
|
+
# path exists to avoid (operator, tmux 136) — so the fallback model is pinned once,
|
|
1263
|
+
# before exec. An explicit --model is never touched: such a run does not get here.
|
|
1264
|
+
if [ -z "$RUN_MODEL" ]; then
|
|
1265
|
+
sel_tok="$(scoped_tok_of_marker "$pick")"
|
|
1266
|
+
[ -n "$sel_tok" ] || sel_tok="$(scoped_over_tok "$pick")"
|
|
1267
|
+
if [ -n "$sel_tok" ] && ! scoped_blocks_run "$sel_tok"; then
|
|
1268
|
+
set -- --model "$FALLBACK_MODEL" "$@"
|
|
1269
|
+
sel_log "$(basename "$pick") -> --model $FALLBACK_MODEL (its $sel_tok bucket is full)"
|
|
1270
|
+
fi
|
|
1271
|
+
fi
|
|
1116
1272
|
# Remember the pick so the NEXT run does not hand back the same account. An explicit
|
|
1117
1273
|
# CLAUDE_ACCOUNT pin deliberately does not: a pin is a caller overriding selection,
|
|
1118
1274
|
# not a turn in the rotation.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/tests/run-tests.sh
CHANGED
|
@@ -421,7 +421,8 @@ check "pinned dead-credential account still runs under its token" "TOK=sk-ant-oa
|
|
|
421
421
|
rm -rf "$ACC/acct-07"
|
|
422
422
|
|
|
423
423
|
# ---- 7. limited marker excludes account ------------------------------------
|
|
424
|
-
|
|
424
|
+
# (An account-wide bucket. A MODEL-SCOPED one deliberately does not exclude — 9a4.)
|
|
425
|
+
printf '%s\nbucket=session percent=95 reason=limits\n' "$((now+3600))" > "$ACC/acct-01/.limited"
|
|
425
426
|
all2=1
|
|
426
427
|
for _ in $(seq 1 15); do
|
|
427
428
|
out="$(claude 2>&1)"
|
|
@@ -454,7 +455,7 @@ rm -f "$ACC/acct-01/.limited" "$ACC/acct-02/.limited"
|
|
|
454
455
|
# acct-02: session at 100% — far better weekly (7%), but every request bounces until
|
|
455
456
|
# the reset. Ranking on headroom alone handed out the guaranteed rejection
|
|
456
457
|
# (operator report 2026-08-29: "claude keeps starting on an out-of-limits account").
|
|
457
|
-
printf '%s\nbucket=
|
|
458
|
+
printf '%s\nbucket=weekly_all percent=99 marked_at=x reason=limits\n' "$((now+3600))" > "$ACC/acct-01/.limited"
|
|
458
459
|
printf '%s\nbucket=session percent=100 marked_at=x reason=limits\n' "$((now+600))" > "$ACC/acct-02/.limited"
|
|
459
460
|
printf '{"fetched_at":%s,"max_percent":99,"weekly_percent":99,"session_percent":10,"buckets":[]}' "$now" > "$ACC/acct-01/limits.json"
|
|
460
461
|
printf '{"fetched_at":%s,"max_percent":100,"weekly_percent":7,"session_percent":100,"buckets":[]}' "$now" > "$ACC/acct-02/limits.json"
|
|
@@ -531,6 +532,58 @@ for f in server.token .credentials.json .expired .server-token-verified limits.j
|
|
|
531
532
|
[ -e "$WORK/bak01/$f" ] && cp -p "$WORK/bak01/$f" "$ACC/acct-01/$f"
|
|
532
533
|
done
|
|
533
534
|
|
|
535
|
+
# ---- 9a4. a MODEL-scoped limit does not park the whole account ----------------------
|
|
536
|
+
# "weekly_scoped:Fable at 100%" says the account cannot serve Fable — nothing more. It
|
|
537
|
+
# used to park the account outright (and max_percent re-excluded it anyway), so on
|
|
538
|
+
# 2026-08-29 three accounts sitting at Fable 100% with their session buckets at 51/23/25%
|
|
539
|
+
# were invisible to selection, the pool offered nothing, and the fallback handed out a
|
|
540
|
+
# session-exhausted account that rejected the operator's first request.
|
|
541
|
+
rm -rf "$WORK/bak94"; mkdir -p "$WORK/bak94"
|
|
542
|
+
for a in acct-01 acct-02; do
|
|
543
|
+
for f in .limited limits.json; do
|
|
544
|
+
[ -e "$ACC/$a/$f" ] && cp -p "$ACC/$a/$f" "$WORK/bak94/$a.$f"
|
|
545
|
+
done
|
|
546
|
+
done
|
|
547
|
+
# acct-01: only its Fable bucket is spent. acct-02: session spent — dead for every model.
|
|
548
|
+
printf '%s\nbucket=weekly_scoped:Fable percent=100 marked_at=x reason=limits\n' "$((now+3600))" > "$ACC/acct-01/.limited"
|
|
549
|
+
printf '{"fetched_at":%s,"max_percent":100,"weekly_percent":100,"session_percent":12,"buckets":[{"name":"session","percent":12},{"name":"weekly_all","percent":40},{"name":"weekly_scoped:Fable","percent":100}]}' "$now" > "$ACC/acct-01/limits.json"
|
|
550
|
+
printf '%s\nbucket=session percent=100 marked_at=x reason=limits\n' "$((now+600))" > "$ACC/acct-02/.limited"
|
|
551
|
+
printf '{"fetched_at":%s,"max_percent":100,"weekly_percent":30,"session_percent":100,"buckets":[{"name":"session","percent":100},{"name":"weekly_all","percent":30}]}' "$now" > "$ACC/acct-02/limits.json"
|
|
552
|
+
out="$(claude 2>&1)"
|
|
553
|
+
check "a Fable-only park still serves an unpinned run" "CFG=acct-01" "$out"
|
|
554
|
+
check "...and that run is pinned to the fallback model up front" "ARGS=--model claude-opus-5" "$out"
|
|
555
|
+
grep -q 'acct-01 -> --model claude-opus-5 (its Fable bucket is full)' "$ACC/selection.log" \
|
|
556
|
+
&& t_ok "the model pin is logged with its reason" || t_fail "model pin log" "no line in selection.log"
|
|
557
|
+
# A run that ASKS for the exhausted model must not be sent to that account.
|
|
558
|
+
out="$(claude --model claude-fable-5 2>&1)"
|
|
559
|
+
check "a run pinning the exhausted model does not get that account" "CFG=acct-02" "$out"
|
|
560
|
+
# A run that pins another model uses it as-is — never pinned twice.
|
|
561
|
+
out="$(claude --model claude-opus-5 2>&1)"
|
|
562
|
+
check "a run pinning another model gets the Fable-spent account" "CFG=acct-01" "$out"
|
|
563
|
+
case "$out" in
|
|
564
|
+
*"--model claude-opus-5 --model"*) t_fail "an explicit model is not pinned twice" "double --model" ;;
|
|
565
|
+
*) t_ok "an explicit model is not pinned twice" ;;
|
|
566
|
+
esac
|
|
567
|
+
# The >=90% cutoff reads the same way: no marker at all, Fable spent in telemetry only.
|
|
568
|
+
rm -f "$ACC/acct-01/.limited"
|
|
569
|
+
out="$(claude 2>&1)"
|
|
570
|
+
check "the cutoff ignores a scoped bucket the run will not use" "CFG=acct-01" "$out"
|
|
571
|
+
out="$(claude --model claude-fable-5 2>&1)"
|
|
572
|
+
check "the cutoff still excludes it for the model that IS spent" "CFG=acct-02" "$out"
|
|
573
|
+
# A reading with no bucket list keeps the old flat behaviour (fail closed at >=90%),
|
|
574
|
+
# with a plainly healthy neighbour so nothing but that exclusion decides the pick.
|
|
575
|
+
printf '{"fetched_at":%s,"max_percent":97,"weekly_percent":97,"session_percent":97}' "$now" > "$ACC/acct-01/limits.json"
|
|
576
|
+
rm -f "$ACC/acct-02/.limited"
|
|
577
|
+
printf '{"fetched_at":%s,"max_percent":20,"weekly_percent":20,"session_percent":20,"buckets":[{"name":"session","percent":20},{"name":"weekly_all","percent":20}]}' "$now" > "$ACC/acct-02/limits.json"
|
|
578
|
+
out="$(claude 2>&1)"
|
|
579
|
+
check "a bucket-less reading still excludes at the flat peak" "CFG=acct-02" "$out"
|
|
580
|
+
for a in acct-01 acct-02; do
|
|
581
|
+
rm -f "$ACC/$a/.limited" "$ACC/$a/limits.json"
|
|
582
|
+
for f in .limited limits.json; do
|
|
583
|
+
[ -e "$WORK/bak94/$a.$f" ] && cp -p "$WORK/bak94/$a.$f" "$ACC/$a/$f"
|
|
584
|
+
done
|
|
585
|
+
done
|
|
586
|
+
|
|
534
587
|
# ---- 9b. codex-review regressions: auth/marker/threshold hardening -------------
|
|
535
588
|
# empty .credentials.json must NOT count as auth (interrupted write)
|
|
536
589
|
mkdir -p "$ACC/acct-06"
|
|
@@ -4752,7 +4805,7 @@ out="$(CLAUDE_ACCOUNTS_DIR="$KCP" claude-accounts list 2>&1)"
|
|
|
4752
4805
|
check "keychain login shown in the plain list" "auth=keychain" "$out"
|
|
4753
4806
|
|
|
4754
4807
|
# 17b. the shim runs under a keychain-only account (file account parked by a limit)
|
|
4755
|
-
printf '%s\nbucket=
|
|
4808
|
+
printf '%s\nbucket=session percent=95 reason=limits\n' "$((now+3600))" > "$KCP/acct-01/.limited"
|
|
4756
4809
|
out="$(CLAUDE_ACCOUNTS_DIR="$KCP" claude 2>&1)"
|
|
4757
4810
|
check "shim selects the keychain-only account" "CFG=acct-02" "$out"
|
|
4758
4811
|
|