claude-code-langcache 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,12 +19,21 @@ Reduce LLM costs and latency by caching responses for semantically similar queri
|
|
|
19
19
|
|
|
20
20
|
## Installation
|
|
21
21
|
|
|
22
|
+
### Via npm (Recommended)
|
|
23
|
+
|
|
22
24
|
```bash
|
|
23
25
|
npm install -g claude-code-langcache
|
|
24
26
|
```
|
|
25
27
|
|
|
26
28
|
The skill will be automatically installed to `~/.claude/skills/langcache/`
|
|
27
29
|
|
|
30
|
+
### Via Git
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
git clone https://github.com/manvinder01/claude-code-langcache.git /tmp/claude-code-langcache
|
|
34
|
+
cp -r /tmp/claude-code-langcache/skills/langcache ~/.claude/skills/
|
|
35
|
+
```
|
|
36
|
+
|
|
28
37
|
## Configuration
|
|
29
38
|
|
|
30
39
|
Set your Redis LangCache credentials:
|