feat(limits): honest kei limits + pet cache integration

This commit is contained in:
KeiSei84 2026-05-26 21:44:17 +08:00
parent 06f19c629f
commit 529d78612a

View file

@ -20,6 +20,8 @@
# kei mcp-wire [<cli>] # wire kei-mcp into a CLI's MCP config + hook setup
# # (Phase C cross-CLI policy enforcement)
# kei mcp-wire --list # show enforcement tier per CLI
# kei limits # probe each CLI's subscription quota (best-effort)
# # (4 of 5 CLIs have no public API — honest report)
# kei --on=<backend> # one-shot launch of <backend> (does not change primary)
# kei [args...] # splash → exec primary CLI (default: claude)
#
@ -66,6 +68,10 @@ case "${1:-}" in
shift
exec "$HOME/.claude/scripts/kei-mcp-wire.sh" "$@"
;;
limits|quota|usage)
shift
exec "$HOME/.claude/scripts/kei-limits.sh" "$@"
;;
esac
# --- one-shot --on=<backend> override (does not write primary.toml) -------