@askalf/dario 2.2.3 → 2.2.4
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 +30 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
<a href="#openai-compatibility">OpenAI Compat</a> •
|
|
20
20
|
<a href="#cli-backend">CLI Backend</a> •
|
|
21
21
|
<a href="#usage-examples">Examples</a> •
|
|
22
|
+
<a href="#trust--transparency">Trust</a> •
|
|
22
23
|
<a href="#faq">FAQ</a>
|
|
23
24
|
</p>
|
|
24
25
|
|
|
@@ -34,6 +35,35 @@ export ANTHROPIC_API_KEY=dario # or OPENAI_API_KEY=dario
|
|
|
34
35
|
|
|
35
36
|
Opus, Sonnet, Haiku — all models, streaming, tool use. Works with Cursor, Continue, Aider, LiteLLM, Hermes, OpenClaw, or any tool that speaks the Anthropic or OpenAI API. When rate limited, `--cli` routes through Claude Code for uninterrupted Opus access.
|
|
36
37
|
|
|
38
|
+
<table>
|
|
39
|
+
<tr>
|
|
40
|
+
<td colspan="3" align="center"><br/><strong>Independently reviewed by 3 competing AI companies</strong><br/><br/></td>
|
|
41
|
+
</tr>
|
|
42
|
+
<tr>
|
|
43
|
+
<td width="33%" valign="top">
|
|
44
|
+
|
|
45
|
+
**Grok** (xAI)
|
|
46
|
+
|
|
47
|
+
*"Highly recommended if you want a clean local proxy. 100% open-source, runs locally only, proper OAuth, no telemetry."*
|
|
48
|
+
|
|
49
|
+
</td>
|
|
50
|
+
<td width="33%" valign="top">
|
|
51
|
+
|
|
52
|
+
**Copilot** (Microsoft)
|
|
53
|
+
|
|
54
|
+
*"Safe for local use — well-implemented with strong security practices. The main risk vector is operator error rather than code defects."*
|
|
55
|
+
|
|
56
|
+
</td>
|
|
57
|
+
<td width="33%" valign="top">
|
|
58
|
+
|
|
59
|
+
**Gemini** (Google)
|
|
60
|
+
|
|
61
|
+
*"Highly recommended. Solves a massive pain point for developers. Modular & lean, modern PKCE auth, mature CI/CD pipeline."*
|
|
62
|
+
|
|
63
|
+
</td>
|
|
64
|
+
</tr>
|
|
65
|
+
</table>
|
|
66
|
+
|
|
37
67
|
---
|
|
38
68
|
|
|
39
69
|
## The Problem
|
|
@@ -422,20 +452,6 @@ const status = await getStatus();
|
|
|
422
452
|
console.log(status.expiresIn); // "11h 42m"
|
|
423
453
|
```
|
|
424
454
|
|
|
425
|
-
## What Others Are Saying
|
|
426
|
-
|
|
427
|
-
> *"Dario works great and is safe. Fully functional with OpenClaw / Hermes. Gives you Opus 4.6, Sonnet & Haiku using your existing Claude Max/Pro sub. No extra API key or billing needed. Streaming + tools work perfectly. 100% open-source (~1100 lines TS), runs locally only, proper OAuth (PKCE), no telemetry. Highly recommended if you want a clean local proxy."*
|
|
428
|
-
>
|
|
429
|
-
> — [Grok](https://x.com/grok) (xAI), independent code review
|
|
430
|
-
|
|
431
|
-
> *"Verdict: Safe for local use — well-implemented with strong security practices. Minimal attack surface: 1 production dependency, PKCE OAuth, localhost-only binding, timing-safe auth, zero telemetry. The main risk vector is operator error rather than code defects."*
|
|
432
|
-
>
|
|
433
|
-
> — GitHub Copilot (Microsoft), independent code review
|
|
434
|
-
|
|
435
|
-
> *"Highly recommended for personal, local development. Solves a massive pain point for developers by bridging Claude Max/Pro subscriptions with developer IDEs, saving substantial API costs. Modular & lean (~1100 lines), modern PKCE auth, SSRF protection, mature CI/CD pipeline with CodeQL and npm provenance attestations."*
|
|
436
|
-
>
|
|
437
|
-
> — Google Gemini, independent code review
|
|
438
|
-
|
|
439
455
|
## Trust & Transparency
|
|
440
456
|
|
|
441
457
|
Dario handles your OAuth tokens. Here's why you can trust it:
|