trending.md โ Dense Trending Signals
Machine-readable trending information. Ranked by velocity โ how fast attention is shifting.
Built for AI agents. Readable by humans.
โ Raw feed: /en/feed/latest.md
โ Archive: /en/feed/
1. Alibaba open-sources Qwen3.8-2.4T-A95B โ its first Qwen-Max-class flagship with 2.4T parameters
- Velocity: โฎโฎโฎ trending
- Source: Hugging Face ยท 2.4T params ยท ~1d ago
- Tags:
alibaba qwen open-weights moe llm
Alibaba's Qwen team released open weights for Qwen3.8-2.4T-A95B โ the first time a Qwen-Max-class (flagship) model has been fully open-sourced. It's a fine-grained Mixture-of-Experts with 2.4 trillion total parameters (~95B active), 512 experts per layer (10 routed + 1 shared), a hybrid Gated-DeltaNet + Gated-Attention architecture, and multi-token-prediction training. Native context is 262K tokens, extensible to ~1M; the open build is text-only with thinking forced on. Self-reported benchmarks: Terminal-Bench 2.1 at 86.6, PaperBench 93.0, GPQA Diamond 92.6, SWE-bench Pro 67.7. Weights (~4.9TB BF16) land on Hugging Face and ModelScope under a custom Qwen3.8-Max license.
Why it matters: This closes the open-vs-closed gap at the very top of the capability curve โ a downloadable Qwen-Max-class model shifts fine-tuning and self-hosting economics for teams that previously could only call Alibaba's API, and extends 2026's pattern of Chinese labs shipping frontier-scale open weights while US labs ship smaller, faster models.
Text-only ยท thinking cannot be disabled ยท deployable via vLLM/SGLang/TokenSpeed, or on a full NVIDIA GB300 NVL72 rack at 4,000+ tok/s per GPU in FP8.
๐ Hugging Face ยท ๐ NVIDIA Technical Blog
2. DeepSeek open-sources Harness โ an "everything is a plugin" agent framework to rival Claude Code
- Velocity: โฎโฎโฎ trending
- Source: GitHub ยท 38.9k stars ยท ~18h ago
- Tags:
deepseek agents plugin-architecture typescript cli
DeepSeek released the developer preview of DeepSeek Harness (v0.1, MIT), a coding-and-office agent framework built on the Cordis plugin system. Models, tools, skills, sessions, sandboxes, storage, scheduling, and UI are all composable plugins โ developers extend or replace capabilities at the configuration layer without touching the harness core. Four run modes ship (Standard, PTC programmatic tool-calling, Minimal, and Create), with append-only session logs and a Trajectory view supporting resume, fork, retrieve, and replay. Run it via npx @deepseek-ai/dsh web.
Why it matters: DeepSeek is extending its "cheap frontier models" play into the harness layer, directly targeting OpenAI Codex and Claude Code. "Everything is a plugin" also mirrors 2026's broader shift toward composable agent runtimes instead of monolithic CLIs โ and DeepSeek is open-sourcing the whole stack.
Developer preview โ compatibility-breaking changes expected ยท 12k+ commits ยท plugin discovery via the dsh-plugin topic.
๐ deepseek-ai/deepseek-harness ยท ๐ DoNews
3. CVE-2026-72898 โ CVSS 10.0 SQL injection in Metabase under active exploitation; CISA deadline today
- Velocity: โฎโฎโฎ trending
- Source: Bishop Fox ยท CVSS 10.0 ยท ~3d ago
- Tags:
cve sql-injection metabase kev cvss-10
An unauthenticated SQL injection (CVSS 10.0) in Metabase's POST /api/session/reset_password endpoint lets any remote attacker inject arbitrary SQL into the application database and seize full admin control โ including the standing credentials Metabase holds to every connected warehouse (Snowflake, BigQuery, Databricks, etc.). Metabase disclosed it as a zero-day on Aug 6 with active exploitation confirmed; CISA added it to the Known Exploited Vulnerabilities catalog on Aug 11 with a federal remediation deadline of Aug 14 (today). Fixed in branch releases (x.58.24+, x.59.21+, x.60.17+, x.61.11+, x.62.9+, x.63.5+); temporary workaround is blocking the password-reset endpoint.
Why it matters: A BI tool holding live credentials to production data stores is the ideal pivot point โ one injected query can cascade into every connected database. With ~2,500 internet-exposed instances and public PoCs circulating, unpatched self-hosted deployments are a sitting target, and patching alone doesn't remediate prior compromise.
Affects self-hosted x.58โx.63 branches; versions below x.58 unaffected ยท Metabase Cloud already patched.
๐ Bishop Fox ยท ๐ CISA KEV
4. Cline ships Kanban โ a local multi-agent scheduler where every card runs in its own git worktree
- Velocity: โฎโฎ rising
- Source: GitHub ยท 1.3k stars ยท ~1d ago
- Tags:
cline multi-agent worktree orchestration cli
Cline released Kanban (Apache 2.0, research preview), a local web board that runs CLI coding agents in parallel against one repo. Each task card spins up an ephemeral git worktree โ sharing git-ignored files like node_modules via symlinks โ so agents work side-by-side without merge conflicts. Cards can be linked into dependency chains, and combined with auto-commit/auto-PR toggles they form autonomous pipelines; a built-in review loop sends inline diff comments back to the agent. It auto-detects your installed CLI agent (Cline, Claude Code, Codex, OpenCode) and runs fully local via npx kanban.
Why it matters: Worktree-per-task is becoming the standard isolation primitive for parallel agent orchestration (Cline CLI v3.0.3 also added a --worktree flag). Kanban turns that primitive into a point-and-click control plane for a fleet of coding agents on a single codebase.
Research preview โ uses experimental CLI-agent features like bypassing permissions and runtime hooks for more autonomy.
๐ cline/kanban ยท ๐ Cline Docs
5. Ponytail โ the "laziest senior dev" agent skill โ corrects its own benchmark after a challenge
- Velocity: โฎโฎ rising
- Source: GitHub ยท 82k stars ยท ~1d ago
- Tags:
agent-skills yagni benchmark claude-code codegen
Ponytail (github.com/DietrichGebert/ponytail) injects a seven-rung "decision ladder" into coding agents โ check whether the thing needs to exist, already exists, or is a stdlib/native one-liner before writing the minimum that works ("the best code is the code you never wrote"). Its original "80โ94% code reduction" claim drew a challenge from Scott Logic's Colin Eberhardt, who showed a bare "Follow YAGNI principles" prompt beat it on that benchmark. The author rebuilt the benchmark against a fair agentic baseline โ headless Claude Code editing a real FastAPI/React repo across twelve feature tickets โ and publicly revised the claim to ~54% less code on average, ~20% lower cost, ~27% faster execution.
Why it matters: Beyond one skill, this is a template for the whole agent-skills category, which is proliferating with no evaluation standard. Ponytail's response โ a public behavioral test framework and reproducible benchmark โ sets the expectation that a skill proves its claims rather than asserting them.
The author flagged the earlier figure as "a per-task ceiling misreported as an average" โ Eberhardt called the correction "really happy."
๐ DietrichGebert/ponytail ยท ๐ InfoQ
6. CVE-2026-63077 โ unauthenticated RCE in JetBrains TeamCity's agent polling protocol, exploited in the wild
- Velocity: โฎโฎ rising
- Source: Rapid7 ยท CVSS 9.8 ยท ~1w ago
- Tags:
cve teamcity ci-cd rce kev
A CVSS 9.8 unauthenticated remote code execution in JetBrains TeamCity On-Premises, rooted in unsafe deserialization in the build-agent polling protocol โ which shares a network interface with the main web UI, so any internet-facing server is directly reachable. An attacker registers a temporary agent, submits a serialized XStream gadget chain to the agent command endpoint, drops a polyglot SQL/JSP webshell, and executes OS commands. Disclosed July 27 and added to CISA's KEV catalog Aug 5 after exploitation began; Rapid7 released a PoC and mass-exploitation tooling has since circulated. Fixed in 2025.11.7 and 2026.1.3, or via a patch plugin for 2017.1+.
Why it matters: TeamCity fronts source repos, CI secrets, and deploy pipelines โ RCE there is a supply-chain-grade foothold. Censys observed ~4,500 exposed instances with only ~450 confirmed patched, making this a persistent soft target for CI/CD compromise.
Attack chain: register agent โ XStream deserialization โ HSQLDB SCRIPT writes a JSP webshell โ anonymous GET executes Runtime.exec().
๐ Censys ยท ๐ Rapid7 PoC (sfewer-r7)
7. Turso runs unmodified Doom as a SQL query โ SQLite's VDBE as "the LLVM of databases"
- Velocity: โฎ steady
- Source: Turso Blog ยท PoC demo ยท ~1d ago
- Tags:
sqlite rust bytecode database llvm
Turso โ the team rewriting SQLite in Rust (Limbo) โ got unmodified Doom running as a VDBE bytecode program. A custom LLVM backend (vdbecc) compiles C โ LLVM IR โ SQLite bytecode; the entire C address space is one BLOB in a single row (loads/stores via BlobRead/BlobWrite), and the framebuffer streams out as one long-running query โ SELECT * FROM doom. Controls are bind parameters ("Doom's input handler is a WHERE clause"), and saving the game is saving the database. A differential test confirmed the framebuffer is byte-for-byte identical to a native clang build.
Why it matters: It's a proof that SQLite's bytecode VM is a viable compilation target for arbitrary programs, not just SQL โ positioning the rewrite as a shared substrate other databases can be built on, starting with a reimagined Postgres.
No register allocation needed โ the VDBE register file is unbounded, so each SSA value gets its own permanent register.
๐ Turso Blog ยท ๐ tursodatabase/limbo
8. LoopX โ an open control plane that keeps long-running AI agent teams on durable state
- Velocity: โฎ steady
- Source: GitHub ยท 4.6k stars ยท ~1w ago
- Tags:
agents control-plane kanban state-kernel python
LoopX (MIT) is a provider-neutral "state kernel" for long-running agent teams: it keeps objectives, typed todos, claims/leases, evidence logs, quota-aware auto-wake, and verifiable handoffs stable while Codex, Claude Code, or Cursor execute bounded turns. It is explicitly not a runtime โ it answers "may the loop continue?" and projects into a Kanban (e.g. a Lark/Feishu adapter) that is never the source of truth. State is local-first in a .loopx/ directory with no dependencies beyond the Python standard library; dangerous permissions and production writes stay human-gated. Maintained by a ByteDance engineer with English + Chinese docs and courses.
Why it matters: As agent runs stretch from minutes to days, the missing layer is durable state and human gates across turns โ not another runtime. LoopX's "board is a projection, kernel is truth" model is a clean answer to agent drift on multi-day, multi-agent work.
๐ huangruiteng/loopx ยท ๐ Moclaw Blog
9. HL-Gauss PPO โ swapping the critic's scalar head for a categorical predictor (COLM 2026)
- Velocity: โฎ steady
- Source: arXiv ยท COLM 2026 ยท ~2d ago
- Tags:
reinforcement-learning ppo rlvr research arxiv
"Start Classifying: Categorical Critics for LLM Reinforcement Learning" (arXiv 2608.02181, accepted at COLM 2026) replaces the scalar MSE critic in PPO with a categorical predictor trained against Gaussian-smoothed HL-Gauss targets, decoded back to a scalar so the actor update stays unchanged โ a drop-in critic swap. On RL with verifiable rewards, where rewards are sparse and binary and small value errors distort the advantages PPO relies on, HL-Gauss PPO consistently beats strong PPO and DAPO baselines across math reasoning, tool-augmented math, and Search-R1 on Qwen2.5/Qwen3 backbones, with better calibration and lower-variance advantages.
Why it matters: RLVR is the engine behind frontier reasoning models, and its critic is the weakest calibrated component. A critic head that improves stability and calibration with zero actor changes is a cheap, transferable win for post-training pipelines.
๐ arXiv ยท ๐ ZhijianZhou/HL-guass-ppo
10. CVE-2026-73240 โ CVSS 9.8 git argument injection in Apache Allura enables unauthenticated RCE
- Velocity: โฎ steady
- Source: IONIX ยท CVSS 9.8 ยท ~1d ago
- Tags:
cve apache git rce command-injection
A critical argument-injection flaw (CWE-88, CVSS 9.8) in Apache Allura โ the forge software behind SourceForge โ passes attacker-controlled input into underlying git command invocations without sanitization, letting unauthenticated remote attackers inject arguments and run arbitrary commands with the host's privileges. All versions before 1.19.1 are affected; upgrading to 1.19.1 (plus the documented configuration and database migration steps) is required.
Why it matters: Git argument injection is a recurring, high-blast-radius bug class in any forge or SCM tool that shells out to git. For self-hosted Allura deployments, this is a full-compromise RCE with no authentication required โ patch immediately.
๐ IONIX ยท ๐ NVD
Metadata
| Field | Value |
|---|
| Generated | 2026-08-14T04:03:00Z |
| Items | 10 |
| Sources tracked | 15 (GitHub Trending, Hacker News, Hugging Face, NVIDIA Blog, DoNews, Bishop Fox, CISA KEV, Rapid7, Censys, Cline Docs, Moclaw Blog, Turso Blog, InfoQ, arXiv, IONIX) |
| Update schedule | 04:03, 12:03, 20:03 UTC+8 (3x daily) |
| Ranking | Velocity-weighted (recency ร engagement acceleration ร source authority) |
| License | CC-BY 4.0 |
Previous day ยท Raw .md ยท Archive