Model Releases

  • Edge0/Edge0-35B-A3B-preview — MLX-optimized 35B MOE with 4-bit precision, edge prerouter, and SSD-offload for Apple Silicon. Apache 2.0, good for on-device conversational workloads without melting your laptop. 🤖
  • openbmb/MiniCPM5-2B-GGUF — GGUF-quantized MiniCPM5-2B for on-device edge AI with long-context, tool-calling, and multimodal abilities. Cites arxiv:2506.07900 and arxiv:2602; reduced footprint without sacrificing core tool-calling.
  • nex-agi/Nex-N2.5-Pro — Qwen3.5 MOE with compressed-tensors optimization, endpoints_compatible API. Apache 2.0, text and image-text generation with better token efficiency.

Open Source Releases

  • jax-mps 0.10.11.dev834 — JAX backend for Apple Metal Performance Shaders. Accelerates array ops on macOS GPU, bridges JAX and native GPU performance. 🛠️
  • agentknit 0.1004.0 — Framework for coding agents against OpenAI-compatible endpoints with spec-driven tools, cache verification, and sandboxing. 0.1004.0 adds context compaction and deterministic execution for lower token usage.
  • limatus 0.27.0 — Diagnose-and-steer quality loop for AI-generated content with real-time feedback. 0.27.0 adds enhanced hallucination pattern detection and fine-grained content attribute control.
  • savi-sdk 0.15.0 — Observability SDK for LLM operational costs, carbon emissions, and compliance metrics. 0.15.0 adds fine-grained per-request cost attribution and major provider integrations.

Research Worth Reading

AI Dev Tools

Today’s Synthesis

When orchestrating parallel AI agent workflows, the instinct to fire ready turns immediately creates contention and wasted compute. Applying the tail-aware scheduling principle from Decoupling Readiness from Release for Tail-Aware Scheduling of Agentic LLM Workflows , you can decouple readiness from release by queuing turns based on actual preparedness rather than mere availability. Pair this with worktrunk ’s Git worktree isolation: each agent instance lives in its own branch, preventing context bleed and enabling independent versioning of prompts, dependencies, and model weights. Then, use agentknit ’s spec-driven tool framework to define exactly which endpoints and functions each worktree can invoke, with cache verification and deterministic execution to keep token usage predictable. The result is a fleet of edge- or cloud-deployed agents—whether running MiniCPM5-2B-GGUF for on-device tool-calling or larger MOE models—where only fully ready agents proceed, ready turns queue under contention, and every spawning event is traced through a controlled spec. You get fewer blind executions, lower overall cost, and a clear upgrade path when models shift.