@askalf/dario 4.8.152 → 4.8.153
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 +8 -8
- package/dist/live-fingerprint.d.ts +1 -1
- package/dist/live-fingerprint.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -297,7 +297,7 @@ dario's surface is feature-complete and stable: the proxy, the TUI, the multi-ac
|
|
|
297
297
|
|
|
298
298
|
That defense is live: [three drift watchers](#how-it-works-and-how-it-stays-working) (npm-release hourly, remote-config every 30 min, classifier-rule daily — cron schedules; GitHub coalesces scheduled runs, so effective intervals run longer), a PR-time compat gate that runs the full suite against a live proxy before any wire-shape change merges, a liveness alarm if a watcher goes quiet, a daily NPM_TOKEN health check, and an auto-release pipeline that ships a fix within hours of a CC release. When Anthropic moves, the watchers catch it within a release cycle, the bot opens the PR, the maintainer reviews and merges — the receipt log above is that machinery doing its job. Residual manual cases — OAuth rotation, runner re-registration, ghcr backfill — live in the [recovery runbook](./docs/recovery.md).
|
|
299
299
|
|
|
300
|
-
New *product* work happens
|
|
300
|
+
New *product* work happens in [askalf](https://askalf.org), the AI operation that runs Sprayberry Labs — built on dario. dario itself doesn't need new features — it has one job, and keeping the truth about a moving target current is a job that never stops.
|
|
301
301
|
|
|
302
302
|
---
|
|
303
303
|
|
|
@@ -305,7 +305,7 @@ New *product* work happens on the [askalf platform](https://askalf.org), a self-
|
|
|
305
305
|
|
|
306
306
|
**Best fit:** developers juggling multiple LLM tools and per-tool API keys · Claude Pro/Max subscribers who want their plan usable everywhere, not just in Claude Code · teams running local/hosted OpenAI-compat servers who want one stable local endpoint · Agent SDK users who want OAuth-subscription routing with zero code change (`baseURL: 'http://localhost:3456'`) · power users wanting multi-account pooling + 429 failover.
|
|
307
307
|
|
|
308
|
-
**Not a fit:** you need vendor-managed production SLAs (use the provider APIs) · you want a hosted, multi-tenant team platform with
|
|
308
|
+
**Not a fit:** you need vendor-managed production SLAs (use the provider APIs) · you want a hosted, multi-tenant team platform with dashboards / SSO / audit logs (dario is a single-owner local proxy; nothing here is hosted for you) · you want a chat UI (use claude.ai).
|
|
309
309
|
|
|
310
310
|
---
|
|
311
311
|
|
|
@@ -413,19 +413,19 @@ dario is the routing layer of **[Own Your Stack](https://github.com/askalf)**
|
|
|
413
413
|
- **[deepdive](https://github.com/askalf/deepdive)** — own your research
|
|
414
414
|
- **[hands](https://github.com/askalf/hands)** — own your computer-use
|
|
415
415
|
- **[browser-bridge](https://github.com/askalf/browser-bridge)** — own your browser
|
|
416
|
-
- **[
|
|
417
|
-
- **[
|
|
418
|
-
- **[
|
|
416
|
+
- **[redstamp](https://github.com/askalf/redstamp)** — own your agent security
|
|
417
|
+
- **[truecopy](https://github.com/askalf/truecopy)** — own your agent skills
|
|
418
|
+
- **[strongroom](https://github.com/askalf/strongroom)** — own your agent secrets
|
|
419
419
|
- **[cordon](https://github.com/askalf/cordon)** — own your prompts
|
|
420
|
-
- **[
|
|
420
|
+
- **[fieldpass](https://github.com/askalf/fieldpass)** — own your agent browser
|
|
421
421
|
- **[amnesia](https://github.com/askalf/amnesia)** — own your search
|
|
422
|
-
- **[askalf
|
|
422
|
+
- **[askalf](https://askalf.org)** — own your operation: the AI operation that runs Sprayberry Labs
|
|
423
423
|
|
|
424
424
|
---
|
|
425
425
|
|
|
426
426
|
## Built by Thomas Sprayberry
|
|
427
427
|
|
|
428
|
-
dario is part of **Own Your Stack** — the open toolkit behind **[Sprayberry Labs](https://sprayberrylabs.com)**,
|
|
428
|
+
dario is part of **Own Your Stack** — the open toolkit behind **[Sprayberry Labs](https://sprayberrylabs.com)**, the software studio with one human on staff — run by [askalf](https://askalf.org), the AI operation these tools are part of.
|
|
429
429
|
|
|
430
430
|
Built in the open, scars included. Follow the build → **[@ask_alf](https://x.com/ask_alf)** · **[sprayberrylabs.com/own-your-stack](https://sprayberrylabs.com/own-your-stack)**
|
|
431
431
|
|
|
@@ -282,7 +282,7 @@ export declare function _resetInstalledVersionProbeForTest(): void;
|
|
|
282
282
|
*/
|
|
283
283
|
export declare const SUPPORTED_CC_RANGE: {
|
|
284
284
|
readonly min: "1.0.0";
|
|
285
|
-
readonly maxTested: "2.1.
|
|
285
|
+
readonly maxTested: "2.1.207";
|
|
286
286
|
};
|
|
287
287
|
/**
|
|
288
288
|
* Compare two dotted-numeric version strings. Returns negative if `a<b`,
|
package/dist/live-fingerprint.js
CHANGED
|
@@ -806,7 +806,7 @@ export function _resetInstalledVersionProbeForTest() {
|
|
|
806
806
|
*/
|
|
807
807
|
export const SUPPORTED_CC_RANGE = {
|
|
808
808
|
min: '1.0.0',
|
|
809
|
-
maxTested: '2.1.
|
|
809
|
+
maxTested: '2.1.207',
|
|
810
810
|
};
|
|
811
811
|
/**
|
|
812
812
|
* Compare two dotted-numeric version strings. Returns negative if `a<b`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askalf/dario",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.153",
|
|
4
4
|
"description": "Use your Claude Pro/Max subscription in any tool — Cursor, Cline, Aider, the Agent SDK, your scripts — at subscription pricing, not per-token API bills. One local Anthropic + OpenAI-compatible endpoint.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|