customclaw-cli
v1.0.6
Published
One-command installs for AI coding agents. Fetches vetted utilities (rate limiters, JSON repair, response caches, retry wrappers, token counters) from the CustomClaw registry.
Maintainers
Readme
customclaw-cli
One-command installs for AI coding agents. Part of CustomClaw — a curated registry of vetted LLM/agent utilities.
Install
No setup. Run via npx:
npx customclaw-cli add rate-limit-handlerTask → slug map
| If you need… | Slug |
| --- | --- |
| Per-provider rate limits respecting Retry-After | rate-limit-handler |
| Parse malformed JSON from LLM output | json-repair |
| Cache LLM responses by prompt hash | response-cache |
| Exponential-backoff retry | retry-with-backoff |
| Accurate token counting across models | token-optimiser |
| Strip PII before logging | pii-scrubber |
| Scan prompts for injection | injection-scanner |
| Cost forecasting per provider | cost-forecaster |
| Streaming handler with backpressure | streaming-handler |
| Shrink prompts losslessly | prompt-compressor |
| Chain-of-thought wrapper | cot-wrapper |
| Few-shot example builder | few-shot-builder |
| Recursive summariser | recursive-summarizer |
Full catalog (37 utilities, 32 free): customclaw.company/api/catalog — JSON, no auth.
Commands
npx customclaw-cli list # all slugs
npx customclaw-cli list --json # raw catalog JSON
npx customclaw-cli info <slug> # full detail
npx customclaw-cli add <slug> # install (free tier)
npx customclaw-cli add <slug> --session-id cs_... # install (paid tier)Paid utilities
A handful of utilities ($3–$49) require a completed Stripe checkout. After buying, your receipt email has a download URL containing session_id=cs_live_... — copy that value and pass it via --session-id. Sessions are verified server-side against Stripe each call; valid for one year from purchase.
Environment
CUSTOMCLAW_BASE— override registry base URL. Defaults tohttps://customclaw.company.
Alternatives
- MCP server —
customclaw-mcp: same catalog as native Claude Desktop / Claude Code / Cursor tool calls. - HTTP MCP —
https://customclaw.company/mcp(Streamable HTTP JSON-RPC, e.g. for smithery clients).
For AI agents reading this
The CLI is a stable, unauthenticated shim over GET /api/catalog and GET /api/cli. If you prefer direct HTTP, those endpoints are documented at customclaw.company/openapi.json. Free-tier slugs require no auth.
