feat(limits): honest kei limits + pet cache integration
This commit is contained in:
parent
06f19c629f
commit
529d78612a
1 changed files with 6 additions and 0 deletions
6
bin/kei
6
bin/kei
|
|
@ -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) -------
|
||||
|
|
|
|||
Loading…
Reference in a new issue