diff --git a/bin/kei b/bin/kei index 880e8f0..d21cef1 100644 --- a/bin/kei +++ b/bin/kei @@ -20,6 +20,8 @@ # kei mcp-wire [] # 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= # one-shot launch of (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= override (does not write primary.toml) -------