CodeWithLLM-Updates
-

Mistral Devstral 2 and Vibe
https://mistral.ai/news/devstral-2-vibe-cli
The European company Mistral AI is known for its LLMs independent of the US/China. They have updated their programming model and finally released their CLI. These announcements are extremely important for the development of the open-source AI ecosystem in software development.

https://openrouter.ai/mistralai/devstral-2512:free
The new generation of models is called Devstral 2 (123B) and Devstral Small 2 (24B), released under flexible licenses: modified MIT for Devstral 2 and Apache 2.0 for Devstral Small 2. Devstral 2 demonstrates an impressive 72.2% on the SWE-bench benchmark for open models.

The Small version can run locally on NVIDIA hardware, although the larger model (due to its density, not MoE architecture) will require serious hardware like a Mac Studio or several 3090/4090 GPUs.

Currently, Devstral 2 is offered for free via API. The model is already available in Kilo Code and Cline. According to feedback, it is quite mediocre at generating websites, frontend, and animation — it works better with small tasks involving local Python scripts.

https://help.mistral.ai/en/articles/496007-get-started-with-mistral-vibe
Mistral Vibe CLI is like Claude Code, an open-source command-line tool that runs on Windows, macOS, and Linux, based on Devstral models. It can also be run in Zed. It features interface themes, Git integration, MCP support, and agents with custom settings. It supports both interactive and autonomous operation.

https://news.ycombinator.com/item?id=46205437
Commentators noted that "Vibe" sounds like the product is geared towards vibe-coding "played around with an agent and let it churn something out" rather than controlled work by a professional programmer. Some directly call this message "the opposite" of what's needed in real work: augmenting humans, not replacing the process with "chat + tools, good luck."

Mintlify Autopilot
https://www.mintlify.com/blog/autopilot
An AI-powered system that monitors changes in your repository. On every push, it analyzes what needs to be updated in the documentation (both for humans and for AI agents). In the Autopilot dashboard, it shows which changes might require documentation updates. Then the Mintlify agent automatically generates a draft that you can review and refine. It takes into account the code context and the existing tone/style of your documentation.

Code Wiki
https://codewiki.google/
Google launched Code Wiki (currently in public preview) — a platform designed to solve the problem of AI (and humans) reading and understanding existing codebases. The system creates and continuously maintains a structured wiki page for the entire repository.

Key features: full automation, Gemini-powered chat, hyperlinked answers that point directly to code files. The system automatically generates and keeps up-to-date architectural diagrams, class diagrams, sequence diagrams, and detailed descriptions.

There is a waitlist for the upcoming version of Code Wiki that will allow teams to run the exact same system locally and securely on internal, private repositories.

Qoder Repo Wiki
https://docs.qoder.com/user-guide/repo-wiki
A feature inside the Qoder IDE that automatically generates structured documentation for a project (up to 10,000 files per project, in English and Chinese) and continuously tracks changes in both the code and the documentation itself.

It deeply analyzes project structure and implementation details, providing rich context that helps AI agents work more effectively. Wiki generation is fully dynamic.

Full Git synchronization is supported. Generated content is stored in language-specific directories (e.g., repowiki/zh/, repowiki/en/), which can be committed and pushed like regular code. Initial wiki is created with one click (up to ~120 minutes for 4,000 files). After that, the system constantly watches for code changes and can update only the affected sections when modifications are detected.

Originally the feature worked only with Git repositories, but as of December 2, 2025, they added support for generating wikis from local projects without Git.

DeepWiki (by Cognition AI)
https://deepwiki.com/
A free AI tool that turns any GitHub repository (public or private) into a Wikipedia-style knowledge base. It analyzes code, READMEs, and configs, then creates structured pages with architectural and flow diagrams, interactive code hyperlinks, and a natural-language chat interface for asking questions.

Already supports >30,000 open repositories with automatic updates after new commits. An open-source version is available for local/self-hosted deployment.