Table of Contents
Today's Highlight
The undisputed star today is DeepSeek's open-source agent harness "dsh" — it crossed 20,000 stars in one hour, setting the fastest star-count record in GitHub history. That fact alone matters more than any single feature: it proves model companies are collectively shifting the differentiation battlefield from "the model itself" to "the harness layer." openfang's decision to redefine agents at the OS level with Rust is really a fight for the same turf.
Trending Repos
deepseek-harness (deepseek-ai) ⭐ 158,000+
GitHub · TypeScript · MIT
- What it is: DeepSeek's official open-source agent harness (
dsh), launched alongside the V4 Pro model. The core philosophy is "everything is a plugin" — model, tool, session, sandbox, loop, and UI are all swappable plugins. - Why it matters: Released on August 13, it broke 20K stars within one hour — the fastest in GitHub history (beating xAI Grok-1's 1.2-day record). It accumulated ~158K stars within days, with 2000+ plugin proposals pouring in from the community in just two days. Powered by their in-house Cordis plugin core, it can even call Claude Code and Codex as sub-agents within DeepSeek's own workflow — signaling DeepSeek's pivot from a pure model provider to a "harness product company," following the same path as Anthropic with Claude Code and OpenAI with Codex.
- Tech stack: TypeScript + Cordis plugin framework (in-house; their paper describes it as "a programming paradigm for spatiotemporal composability"), MIT License.
- Getting started: Easy —
npx @deepseek-ai/dsh weblaunches the Web UI in one command. However, it's still in developer preview, and the plugin API will have breaking changes.
openfang (RightNow-AI) ⭐ 18,113
GitHub · Rust · Apache-2.0
- What it is: An "Agent Operating System" built from scratch in Rust. The authors deliberately emphasize it is not an orchestration framework, nor a Python wrapper, but a complete OS concept.
- Why it matters: Written entirely in Rust (137K lines, 14 crates, 1767+ tests, zero clippy warnings), it takes a "single binary does everything" approach — a sharp contrast to the deployment complexity of most Python/TypeScript agent frameworks that require installing a pile of dependencies. A compelling alternative for performance-sensitive teams wanting single-binary deployment.
- Tech stack: Pure Rust, single binary deployment, Apache-2.0.
- Getting started: Medium — "Agent OS" is a new mental model, unlike familiar orchestration frameworks where you can directly apply existing patterns.
LobsterAI (netease-youdao) ⭐ 5,906
GitHub · — · MIT
- What it is: A desktop-level AI Agent from NetEase Youdao that can directly operate real computer environments — local files, terminal, browser, documents, spreadsheets, presentations — and can be remotely controlled via WeChat, Feishu, DingTalk, or Telegram.
- Why it matters: Built on OpenClaw, it's the first open-source desktop-level Agent from a major Chinese tech company, filling the "give commands from your phone, have your computer actually do the work" use case for Chinese-speaking users — a different positioning from most chat-window agents.
- Tech stack: Built on the OpenClaw architecture, MIT License, provides macOS/Windows installers.
- Getting started: Easy — download the installer from the official site or GitHub Releases, no compilation needed.
prime-agent (PrimeIntellect-ai) ⭐ 17,097
GitHub · — · MIT
- What it is: A "self-improving" RLM (Reasoning Language Model) agent from the PrimeIntellect team, focused on coding and long-running autonomous tasks.
- Why it matters: The core selling point is that the agent continuously adjusts its reasoning strategy during task execution rather than following a fixed pipeline — a different approach from typical coding agents for research-oriented tasks requiring long horizons and multi-round iteration.
- Tech stack: MIT License, built around the verifiers ecosystem (see the official repo for details).
- Getting started: Medium — documentation is still rapidly evolving; you'll need to follow the in-repo examples step by step.
Notable Releases
CrewAI 1.15.16
- Key changes: Added execution context management (with UUID tracking); logs which exception type caused a flow to terminate; records trace batch sharing timestamps to AMP; counts deployments launched from different sources.
- Breaking Changes: None.
- Impact: No breaking changes this time — mainly observability and debugging improvements. If you use CrewAI Flow, you can upgrade directly without modifying existing code.
Takeaway
I used to think model companies building agent tools was just a side project to show off demos, but DeepSeek going all-in with a full open-source Cordis plugin architecture at "infrastructure grade," combined with openfang choosing to redefine agents from the Rust OS layer, makes it clear the real battlefield is no longer about which model is better — it's about "whose harness is more composable and more callable by other agents." Once this layer converges, it may shape the ecosystem more decisively than any model leaderboard.
References
Loading...