✓ VERIFIED
MODULES
These modules have passed manual code review by the prxy team. They’re audited for safety, dependency hygiene, and runtime correctness.
All verified
12 modulesCompaction Bridge✓ Verified
@prxy-official/compaction-bridge
Survives Claude Code's auto-compaction without state loss. Detects post-compaction requests and re-injects the most relevant pieces of the most recent eviction archive into the system prompt.
Cost Guard✓ Verified
@prxy-official/cost-guard
Per-request, per-day, and per-month USD budget enforcement. Short-circuits requests that would breach a configured limit with a 429-shaped response.
Exact Cache✓ Verified
@prxy-official/exact-cache
Returns cached responses for byte-identical requests. Hash-keyed by a stable serialization of the canonical request — fastest cache type with zero false positives.
Guardrails✓ Verified
@prxy-official/guardrails
Content filtering at the gateway layer. PII redaction (email, SSN, credit-card), profanity blocking, and user-supplied regex patterns. v2 adds NIM and Anthropic Constitutional backends.
IPC — Inter-Prompt Compression✓ Verified
@prxy-official/ipc
Compresses older messages instead of dropping them when a request exceeds the context window utilization target. Keeps long conversations going past context limits.
MCP Optimizer✓ Verified
@prxy-official/mcp-optimizer
Prunes MCP tools to the ones actually relevant to the user's last message. Solves the 67k-tokens-of-MCP-tools problem by scoring each tool against the request via embeddings.
Patterns — Golden Loop✓ Verified
@prxy-official/patterns
Injects relevant past patterns into the system prompt and forges new ones from successful resolutions. The Golden Loop — your gateway gets smarter over time.
Prompt Optimizer✓ Verified
@prxy-official/prompt-optimizer
Restructures requests to maximize Anthropic prompt-cache hits. Sorts tools deterministically and stamps cache-control markers on the longest stable prefix.
Rehydrator✓ Verified
@prxy-official/rehydrator
Pulls archived context back when the user references past turns. Companion to ipc — when the user says 'remember when…', searches eviction archives semantically and re-injects the most relevant turns.
Router✓ Verified
@prxy-official/router
Picks the best model for each request. Strategies: cheapest-first, fallback chain, or q-learning based on per-query historical success rate.
Semantic Cache✓ Verified
@prxy-official/semantic-cache
Returns cached responses for semantically similar (not just identical) requests. Embeds the request, vector-searches past requests, replays the cached response if similarity is above threshold.
Tool Cache✓ Verified
@prxy-official/tool-cache
Observes (and in v2 will cache) MCP tool-call results. Records tool_use → tool_result pairs and stamps observability metadata for repeated calls. Excludes side-effecting tools by default.