Model Releases

  • 🤖 mistralai/Leanstral-1.5-119B-A6B — A 119B-parameter MoE (6B active) fine-tune of Leanstral-2603, Apache-2.0 licensed and wired for vLLM. If you’re collecting Mistral variants like trading cards, here’s the latest US-region entry.

Open Source Releases

  • 🛠️ AI Commander — A remote shell for AI agents that lets any MCP client run commands on your machines via a short session code, with a small agent holding the connection open. 3,466 installs suggests people are comfortable letting Claude SSH in through a backdoor with a cute code — what could go wrong.

Research Worth Reading

AI Dev Tools

  • 🛠️ anthropics/claude-code: v2.1.202 — This release adds a “Dynamic workflow size” setting to tune agent counts (advisory, not a hard cap) and exposes workflow.run_id for tracking. More telemetry and guardrails for those spawning Claude swarms, though the limits are suggestions at best.

Today’s Synthesis

If you’ve already updated to anthropics/claude-code: v2.1.202 , the new Dynamic workflow size knob and workflow.run_id tracking give you just enough rope to try the multi-agent setup from SwarmResearch: Orchestrating Coding Agents for Open-Ended Discovery . Instead of letting a pack of coding agents collapse into the same local optimum, spin up a few parallel workflows and use the run IDs to diff their approaches post-hoc. To keep those agents from drowning in their own chat logs, bolt on the object-centric world modeling from Object-Centric Environment Modeling for Agentic Tasks : have each workflow emit executable skills or programmatic state rather than free-form notes. The practical win is reusable artifacts instead of a Slack channel of half-baked summaries that nobody reads twice. Start with three workflows on a throwaway branch and compare merge conflict rates. Yes, the workflow limit is advisory, so you’ll still need your own supervisor loop to actually enforce exploration diversity — but the plumbing is now there, and the papers hand you the strategy without requiring a PhD in orchestration.