lynkr 9.3.1 → 9.3.2
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 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -449,7 +449,7 @@ LOAD_SHEDDING_ENABLED=true
|
|
|
449
449
|
| **"Route not found: HEAD /"** | Ignore - harmless health check from Claude Code |
|
|
450
450
|
| **"Hallucinated tool calls"** | Normal - Lynkr automatically filters invalid tools |
|
|
451
451
|
| **"Safe Command DSL blocked"** | Add `POLICY_SAFE_COMMANDS_ENABLED=false` to `.env` |
|
|
452
|
-
| **"spawn graphify ENOENT"** |
|
|
452
|
+
| **"spawn graphify ENOENT"** | Optional feature. Set `CODE_GRAPH_ENABLED=false` in `.env` (see Advanced Features section for installation) |
|
|
453
453
|
| **Slow first request (20+ sec)** | Ollama loading model into memory. Add `OLLAMA_KEEP_ALIVE=30m` in Ollama config |
|
|
454
454
|
| **No response after N turns** | Remove `POLICY_MAX_STEPS` and `POLICY_MAX_TOOL_CALLS` from `.env` (unlimited by default in v9.3.0+) |
|
|
455
455
|
|
|
@@ -487,16 +487,20 @@ curl -X POST http://localhost:8081/v1/admin/reload
|
|
|
487
487
|
|
|
488
488
|
**Graphify** provides AST-based code analysis for smarter routing decisions.
|
|
489
489
|
|
|
490
|
-
**Installation:**
|
|
490
|
+
**Installation (Rust required):**
|
|
491
491
|
```bash
|
|
492
|
-
#
|
|
493
|
-
|
|
492
|
+
# Install Rust if not already installed
|
|
493
|
+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
494
|
+
source $HOME/.cargo/env
|
|
494
495
|
|
|
495
|
-
#
|
|
496
|
+
# Build and install graphify
|
|
496
497
|
git clone https://github.com/safishamsi/graphify
|
|
497
498
|
cd graphify
|
|
498
499
|
cargo build --release
|
|
499
500
|
sudo cp target/release/graphify /usr/local/bin/
|
|
501
|
+
|
|
502
|
+
# Verify installation
|
|
503
|
+
graphify --version
|
|
500
504
|
```
|
|
501
505
|
|
|
502
506
|
**Enable in `.env`:**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lynkr",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.2",
|
|
4
4
|
"description": "Self-hosted Claude Code & Cursor proxy with Databricks,AWS BedRock,Azure adapters, openrouter, Ollama,llamacpp,LM Studio, workspace tooling, and MCP integration.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|