← All posts

AI + Dev Digest — September 2, 2026

Multi-agent learning classrooms, training LLMs from scratch in two hours, and AI skill libraries for science top today's open-source trending.

A consistent thread running through today's most-starred open-source repositories: developers are no longer waiting for foundation models to solve their domain problems — they're building the infrastructure around those models themselves. From interactive multi-agent classrooms to domain-specialized scientific agent skills, the open-source layer on top of AI is maturing fast.

THU-MAIC/OpenMAIC: Multi-Agent Interactive Classroom

OpenMAIC, from Tsinghua University's MAIC lab, turns a single click into an immersive multi-agent learning experience. The premise is that teaching benefits from specialized agents playing different roles — lecturer, discussion moderator, quiz evaluator — all coordinated in a shared session, rather than a single general-purpose model wearing every hat. It pulled in over 3,100 stars today, reflecting serious interest in applying multi-agent architectures to education rather than just code generation. If you're thinking about multi-agent orchestration patterns beyond the standard chatbot frame, the TypeScript codebase is worth exploring.

github.com/THU-MAIC/OpenMAIC

jingyaogong/minimind: An LLM You Can Train in Two Hours

MiniMind walks through training a 64M-parameter language model from scratch in approximately two hours on consumer hardware. That's not a toy demo — it's a practical reference implementation covering tokenization, architecture, pretraining, and fine-tuning at a scale that's genuinely reproducible without a data center. At over 1,000 stars added today alone, it's clearly meeting real demand from engineers who want to understand what's actually happening inside the model stack rather than just calling an API. If you've been meaning to demystify transformer training, this is a concise on-ramp.

github.com/jingyaogong/minimind

K-Dense-AI/scientific-agent-skills: AI Skills for Hard Science

This library packages validated agent skills and structured scientific databases covering biology, chemistry, medicine, and drug discovery — the domains where model hallucinations carry the highest cost. Rather than asking a general-purpose model to reason about molecular interactions from memory, the scientific-agent-skills approach grounds outputs in curated databases and domain-specific tool calls. It pulled in 912 stars today, reflecting real appetite for AI agents that are actually trustworthy in research workflows. Domain-specialized skill layers for professional science may ultimately matter more than the next benchmark leaderboard improvement.

github.com/K-Dense-AI/scientific-agent-skills

firecrawl/pdf-inspector: Fast Rust PDF Classification

Firecrawl's new pdf-inspector library solves a problem that trips up most document AI pipelines: determining whether a PDF contains genuine selectable text or is just a scanned image before attempting extraction. The Rust library classifies PDFs and pulls text at speed — critical for pipelines processing large document volumes where misidentifying a scanned image wastes compute and produces garbage output. With 541 stars today, it fills a specific infrastructure gap that anyone building document processing at scale will recognize immediately.

github.com/firecrawl/pdf-inspector

browser-use/video-use: Video Editing via Coding Agents

Video-use extends the browser-use framework into video editing — coding agents interpret and execute editing operations programmatically rather than clicking through a desktop UI. The Python project drew 472 stars today and represents a notable direction: as agent frameworks mature, the same patterns used for software development are being stretched into creative tools. Whether agents can reliably handle the nuance and judgment calls of real video editing remains an open question, but the architecture experiment is worth tracking as the category evolves.

github.com/browser-use/video-use