
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
claude-code-langcache
Advanced tools
Semantic caching skill for Claude Code using Redis LangCache.
Reduce LLM costs and latency by caching responses for semantically similar queries, with built-in privacy and security guardrails.
For OpenClaw users: See openclaw-langcache
npm install -g claude-code-langcache
The skill will be automatically installed to ~/.claude/skills/langcache/
git clone https://github.com/manvinder01/claude-code-langcache.git /tmp/claude-code-langcache
cp -r /tmp/claude-code-langcache/skills/langcache ~/.claude/skills/
Set your Redis LangCache credentials:
export LANGCACHE_HOST=your-instance.redis.cloud
export LANGCACHE_CACHE_ID=your-cache-id
export LANGCACHE_API_KEY=your-api-key
Get these from Redis Cloud Console after creating a LangCache instance.
The skill triggers automatically when you mention:
Or invoke manually with /langcache
# Search for cached response
~/.claude/skills/langcache/scripts/langcache.sh search "What is Redis?"
# With similarity threshold
~/.claude/skills/langcache/scripts/langcache.sh search "What is Redis?" --threshold 0.9
# Store a response
~/.claude/skills/langcache/scripts/langcache.sh store "What is Redis?" "Redis is an in-memory data store..."
# Check if content would be blocked
~/.claude/skills/langcache/scripts/langcache.sh check "What's on my calendar today?"
# Output: BLOCKED: temporal_info
| Category | Examples | Threshold |
|---|---|---|
| Factual Q&A | "What is X?", "How does Y work?" | 0.90 |
| Definitions / docs | API docs, command help | 0.90 |
| Command explanations | "What does git rebase do?" | 0.92 |
| Reply templates | "polite no", "follow-up", "intro" | 0.88 |
| Style transforms | "make this warmer/shorter" | 0.85 |
| Category | Examples |
|---|---|
| Temporal | today, tomorrow, deadline, ETA, "in 20 minutes" |
| Credentials | API keys, passwords, tokens, OTP/2FA |
| Identifiers | emails, phone numbers, account IDs, UUIDs |
| Personal | "my wife said", private conversations, relationships |
~/.claude/skills/langcache/
├── SKILL.md # Skill definition and instructions
├── scripts/
│ └── langcache.sh # CLI wrapper with policy enforcement
├── references/
│ ├── api-reference.md # Complete REST API documentation
│ └── best-practices.md # Optimization techniques
└── examples/
├── basic-caching.sh # Simple cache workflow
└── agent-integration.py # Python integration pattern
jq and curl (for CLI usage)MIT License - see LICENSE for details.
FAQs
Semantic caching skill for Claude Code using Redis LangCache
The npm package claude-code-langcache receives a total of 1 weekly downloads. As such, claude-code-langcache popularity was classified as not popular.
We found that claude-code-langcache demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.