Open Source Releases

  • Claude Code v2.1.163 — Version enforcement via requiredMinimumVersion and requiredMaximumVersion managed settings that refuse to start outside the allowed range. Also adds /plugin list with --enabled/--disabled filters. Finally, a way to stop people from running ancient builds.

  • djobs 0.7.0 — Durable, inspectable, resumable multi-file workflows for AI coding agents that survive context loss. If you’ve ever watched an agent forget what it was doing mid-session, this is the fix.

  • Tracelit-SDK 0.1.4 — Lightweight observability SDK for AI agents via a single decorator. Monitoring and tracing for agent behavior without the usual instrumentation tax.

  • smartmemory-core 1.4.25 — Multi-layered AI memory system combining graph DBs, vector stores, and processing pipelines. A full-stack memory architecture for agents that need structured recall across sessions.

  • greatminds 1.6.7 — File-based multi-agent coordination with per-role queues, Claude Code plugins, and per-role CODEX_HOME profiles for OpenAI Codex. Structured agent coordination through filesystem primitives — no message bus required.

Research Worth Reading 📄

AI Dev Tools 🛠️

  • PaddleOCR — Lightweight OCR toolkit supporting 100+ languages for converting PDFs and images into structured LLM-consumable data. The missing bridge between unstructured visual documents and RAG pipelines.

  • OpenCode v1.16.0 — Managed workspace cloning that preserves dirty and untracked files, session migration between workspaces, proper OpenAI model support through AWS Bedrock, skill discovery with file-based agent loading, and GitHub Copilot token billing tracking.

  • NVIDIA Cosmos — Open platform of world models, datasets, and tools for Physical AI targeting robots, autonomous vehicles, and smart infrastructure. NVIDIA’s open push into physical-world foundation models 🔥

  • last30days-skill — AI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web, then synthesizes a grounded summary. Plug-and-play multi-source research for agent builders.

Today’s Synthesis

If you’re building agents that need to survive beyond a single session, three pieces dropped this week that slot together cleanly: djobs 0.7.0 gives you durable, resumable workflows that persist across context loss; Tracelit-SDK 0.1.4 adds observability with a single decorator — no instrumentation tax; and smartmemory-core 1.4.25 provides a multi-layered memory architecture (graph DB + vector store + pipelines) for structured recall across runs. Wire them up: djobs handles the execution backbone, Tracelit traces every step for debugging and eval, and smartmemory-core persists the agent’s evolving knowledge graph. The result is an agent that can pause mid-task, be inspected mid-flight, and resume weeks later with full context — exactly what separates a demo from a production workload. Start by wrapping your longest-running agent task in a djobs workflow, add the @trace decorator, and point memory writes at smartmemory-core’s graph layer.