Tuesday, June 30, 2026

AI agent infrastructure dominates GitHub with agency-agents and cognee surging; on-policy distillation advances with AsyncOPD and PHF; financial trading agents proliferate across open-source ecosystem

on-policy-distillation-advancesagent-infrastructure-explosionfinancial-trading-agentsmoe-models-and-quantization3d-reconstruction-renderingrag-optimization

Executive Summary

Today's AI landscape is marked by an explosive growth in agent infrastructure on GitHub. The standout is agency-agents, a complete AI agency framework with specialized expert personas, gaining 1,425 stars in a single day to reach nearly 119K total. Cognee, the open-source AI memory platform for persistent long-term agent memory via knowledge graphs, surged with 868 stars today. Browser-use's video-use project (967 stars today) extends coding agents into video editing territory, while council-of-high-intelligence introduces multi-LLM deliberation with 18 AI personas.

On the research front, on-policy distillation takes center stage with two complementary papers. AsyncOPD from KAIST establishes that asynchronous training pipelines can tolerate significant policy staleness without degrading student quality, potentially unlocking 2-3x throughput gains for LLM post-training. PHF (Privileged Hidden Flow) proposes supervising intermediate hidden states rather than just output distributions, addressing a fundamental limitation of existing distillation objectives. Process Advantage Signal Shaping (PASS) introduces a paradigm-agnostic middleware for dense process supervision in GRPO, further advancing the RL-for-reasoning pipeline.

The model ecosystem sees continued momentum for GLM-5.2 MoE (2,942 likes), with NVIDIA releasing an NVFP4-quantized variant. The Ornith-1.0 family from DeepReinforce AI spans 9B to 397B parameters with strong community adoption. Baidu's Unlimited-OCR maintains its trending position, while DeepSeek-V4-Pro-DSpark and Qwen-AgentWorld-35B-A3B signal continued investment from major Chinese AI labs. The community's demand for GGUF-quantized, locally-runnable models remains the dominant distribution pattern.

Researcher Notes

On-policy distillation is having a breakout day. Two papers — AsyncOPD and PHF — tackle complementary aspects of the same problem: how to make on-policy distillation for LLM post-training both faster and better. AsyncOPD shows that staleness in asynchronous pipelines is surprisingly tolerable, which has immediate practical implications for training infrastructure. PHF goes deeper, arguing that supervising only output distributions wastes privileged information, and proposes flowing teacher knowledge through hidden states. Together, they suggest the OPD pipeline is maturing rapidly from a research curiosity into a production-ready training paradigm. Combined with PASS's work on dense process supervision for GRPO, the RL-for-reasoning stack is getting significantly more sophisticated.

Agent infrastructure is the new developer tooling. The sheer volume of agent-related GitHub projects trending today is remarkable: agency-agents (1,425 stars today), cognee (868), video-use (967), council-of-high-intelligence (331), CLI-Anything (122), and crawl4ai (288). This isn't just one project catching fire — it's an entire category. The pattern suggests developers are moving past 'build an agent' into 'build the platform agents run on.' Cognee's knowledge-graph-based memory and agency-agents' specialized persona system represent two distinct architectural bets on what agent infrastructure should look like.

Financial trading agents are the killer app for autonomous AI. Three projects in today's GitHub trending — ai-berkshire (1,386 stars today), Vibe-Trading (839), and TradingAgents (362) — are AI trading systems. TradingAgents-CN, the Chinese-localized version, adds another 98 stars. This is the second consecutive day with multiple finance-AI projects trending. Markets provide exactly what autonomous agents need: clear feedback signals, abundant historical data, and measurable outcomes. The risk is that this becomes the next wave of retail algo-trading hype rather than a genuine capability unlock.

Sleeper hit: Covering the Unseen for RAG. This paper reframes RAG context selection from ranking to coverage optimization, addressing a real failure mode where top-k retrieval over-covers one semantic aspect while missing others in complex queries. The information demand coverage framework could meaningfully improve multi-hop and ambiguous question handling — the exact scenarios where current RAG systems fail most visibly.

Watch: The 3D reconstruction pipeline is maturing. HiReFF tackles uncalibrated sparse-view human reconstruction for holographic communication, RAGA introduces ray-traced shadow casting for 3D Gaussian Splatting avatars, and lingbot-map (465 GitHub stars today) provides feed-forward 3D scene reconstruction from streaming data. The convergence of real-time rendering quality with practical deployment constraints suggests volumetric video is closer to production than many assume.

Themes & Trends

On-Policy Distillation Maturation

rising

Multiple papers advance on-policy distillation for LLM post-training, addressing staleness tolerance (AsyncOPD), hidden-state supervision (PHF), and dense process rewards (PASS), collectively moving OPD from research to production readiness.

Agent Infrastructure Explosion

rising

GitHub trending is dominated by agent infrastructure projects — memory platforms, multi-persona frameworks, CLI abstractions, and web crawlers — signaling a shift from building individual agents to building the platforms agents run on.

AI-Powered Financial Trading

rising

Multiple trading agent frameworks trending simultaneously across GitHub, with both English and Chinese ecosystems active, suggesting financial applications are the most tractable near-term deployment for autonomous AI agents.

3D Reconstruction and Rendering

rising

Advances in 3DGS shadow casting, uncalibrated human reconstruction, and feed-forward scene reconstruction from streaming data indicate the volumetric video pipeline is approaching production viability.

MoE Models and Local Quantization

stable

GLM-5.2, Ornith-1.0, and community GGUF quantizations continue to dominate HuggingFace trending, with NVIDIA releasing NVFP4 variants and the community producing specialized coding and agentic model variants.

RAG and Retrieval Optimization

stable

Coverage-based RAG optimization addresses real failure modes in multi-hop queries, while crawl4ai's continued momentum shows the data ingestion side of RAG is equally active in open-source development.

Trending Papers (12)

AsyncOPD: How Stale Can On-Policy Distillation Be?

High Relevance

Wonjun Kang, Kevin Galim, Seunghyuk Oh, Minjun Kang, Sanghyun Park KAIST

Investigates how much policy staleness can be tolerated in asynchronous on-policy distillation pipelines for LLM post-training, establishing that decoupling rollout generation from learner updates introduces stale-policy data but can significantly improve training throughput without degrading student quality.

Key Findings

  • Asynchronous training pipelines can alleviate the on-policy systems bottleneck by decoupling rollout generation from learner updates

  • Stale-policy data from asynchronous pipelines is surprisingly tolerable, enabling significant throughput gains

  • Provides theoretical and empirical analysis of the staleness-quality tradeoff in on-policy distillation for LLMs

on-policy-distillationLLM-trainingasynchronous-trainingreinforcement-learning
9 upvotes

PHF: Privileged Hidden Flow for On-Policy Self-Distillation

High Relevance

Yuhan Li, Mingxu Zhang, Dazhong Shen University of Science and Technology of China

Proposes supervising intermediate hidden states rather than only output distributions in on-policy self-distillation for reasoning models, allowing privileged teacher context to flow through the student's representations for improved training signal quality.

Key Findings

  • Existing OPSD objectives supervise only output distributions, causing privileged context to affect training only through token-level KL signals

  • Privileged Hidden Flow enables richer knowledge transfer by aligning intermediate representations between teacher and student

  • Demonstrates improved reasoning performance over standard output-only distillation objectives

self-distillationreasoningLLM-trainingknowledge-distillation
0 upvotes

Process Advantage Signal Shaping: A Paradigm-Agnostic Middleware for Process-Supervised RL in LLM Reasoners

High Relevance

Chao Wang, Hongtao Tian, Tao Yang Tsinghua University

Introduces PASS, a paradigm-agnostic middleware layer that enables dense process supervision for Group Relative Policy Optimization (GRPO) in LLM reasoners, addressing the weak outcome reward signal problem through learned process reward models and on-policy-distillation KL signals.

Key Findings

  • Dense process supervision via PRMs or on-policy-distillation KL signals can densify GRPO's otherwise weak outcome reward

  • PASS serves as middleware compatible with multiple RL paradigms rather than requiring paradigm-specific implementations

  • Demonstrates improved reasoning performance through finer-grained reward signals at intermediate reasoning steps

GRPOprocess-reward-modelsreinforcement-learningLLM-reasoning
0 upvotes

Hierarchical Experimentalist Agents

High Relevance

Abhranil Chandra, Sankaran Vaidyanathan, Utsav Dhanuka Carnegie Mellon University

Proposes hierarchical LLM agents that go beyond parametric knowledge, fixed data, and retrieval to conduct real-world experiments in novel domains, addressing sophisticated queries that cannot be answered through existing information sources alone.

Key Findings

  • Most LLM agents rely on parametric knowledge, fixed post-training data, retrieval, or search, which breaks down in novel domains

  • Hierarchical agent architecture enables planning and executing real-world experiments to answer queries

  • Demonstrates capability on sophisticated queries that cannot be resolved through existing information retrieval alone

LLM-agentsscientific-experimentationautonomous-agentshierarchical-planning
0 upvotes

Covering the Unseen: Information Demand Coverage Optimization for Retrieval-Augmented Generation

High Relevance

Bingxue Zhang, Jianying Jia, Feida Zhu Singapore Management University

Reframes RAG context selection from ranking chunks against a single query embedding to coverage optimization, addressing the failure mode where top-k selection over-covers one semantic aspect while ignoring critical information needs for complex, multi-hop, or ambiguous queries.

Key Findings

  • Top-k RAG selection tends to over-cover one semantic aspect while ignoring critical information needs

  • Information demand coverage framework provides a principled approach to diverse context selection

  • Significantly improves handling of multi-hop and ambiguous queries compared to standard retrieval methods

RAGretrieval-augmented-generationinformation-retrievalquery-optimization
0 upvotes

RAGA: Real Time Ray Traced Gaussian Shadow Casting for 3DGS Avatar-Scene Interaction

Aymen Mir, Riza Alp Guler, Jian Wang Meta Reality Labs

Introduces physically plausible real-time shadow casting for 3D Gaussian Splatting avatars through ray tracing, enabling realistic avatar-scene and multi-avatar interactions without relying on binary hit tests or mesh-based shadow casting.

Key Findings

  • Replaces binary hit tests and mesh-based shadow casting with continuous ray-traced shadows for 3DGS

  • Supports multi-avatar and object-interaction scenarios within existing 3DGS scenes

  • Achieves real-time performance while maintaining physical plausibility of shadow rendering

3D-gaussian-splattingray-tracingavatarsreal-time-rendering
0 upvotes

HiReFF: High-Resolution Feedforward Human Reconstruction from Uncalibrated Sparse-View Video

Yiming Jiang, Hanzhang Tu, Wenfeng Song Beijing Jiaotong University

Addresses uncalibrated volumetric video streaming for human reconstruction essential for holographic communication and AR/VR, achieving temporal consistency and computational efficiency from sparse-view inputs without per-scene optimization or calibrated cameras.

Key Findings

  • Feedforward architecture eliminates need for per-scene optimization or calibrated cameras

  • Achieves high-resolution reconstruction from sparse uncalibrated views with temporal consistency

  • Practical for real-time holographic communication and AR/VR streaming applications

3D-reconstructionhuman-reconstructionvolumetric-videoAR-VR
0 upvotes

Pointer-CAD v2: Plan-Then-Construct CAD Generation with Dimension-Aware Parametric Precision

Dacheng Qi, Chenyu Wang, Jingwei Xu Nanjing University

Advances LLM-based CAD generation by introducing a plan-then-construct approach with dimension-aware parametric precision, addressing the limited precision of existing sequence prediction methods for industrial manufacturing requirements.

Key Findings

  • LLM-based CAD generation formulated as sequence prediction achieves promising results but lacks industrial precision

  • Plan-then-construct paradigm separates high-level design intent from low-level parametric specification

  • Dimension-aware approach improves parametric precision critical for manufacturing applications

CAD-generationLLM-applicationsmanufacturingsequence-prediction
0 upvotes

ScaleErasure: Inference-Time Minimal Intervention for Precise Concept Erasure in Next-Scale Autoregressive Image Generation

Cong Wang, Haiyu Wu, Zhiwei Jiang Nanjing University

Introduces an inference-time concept erasure method for next-scale autoregressive image generation models, preventing generation of unsafe content while preserving general generative capability through minimal intervention at the scale prediction level.

Key Findings

  • First concept erasure method specifically designed for next-scale autoregressive image generation

  • Minimal intervention approach preserves general generative capability while blocking targeted concepts

  • Operates at inference time without requiring model retraining or fine-tuning

safetyconcept-erasureautoregressive-generationimage-generation
0 upvotes

Beyond Trajectory Matching: Reflow with Marginal Distribution Alignment

Chen Wang, Peiran Yun, Pan Xie Peking University

Addresses the key challenge of efficient few-step generation in diffusion and continuous-flow models by improving reflow with marginal distribution alignment, going beyond trajectory matching to achieve better ODE discretization for deterministic sampling.

Key Findings

  • Standard trajectory matching in reflow does not account for marginal distribution drift during few-step sampling

  • Marginal distribution alignment provides a complementary objective that improves few-step generation quality

  • Achieves better ODE discretization with fewer steps compared to trajectory-matching-only approaches

flow-matchingdiffusion-modelsfew-step-generationODE-sampling
0 upvotes

FDM-MFVT: Few-step Sampling Diffusion Model for Mask-Free Virtual Try-On

Jiaxin Liu, Xiaoye Liang, Lai Jiang Zhejiang University

Proposes a few-step sampling diffusion model for mask-free image-based virtual try-on that eliminates dependency on expensive auxiliary mask prediction networks while requiring fewer sampling steps than existing diffusion-based IVTON methods.

Key Findings

  • Eliminates need for costly auxiliary mask prediction networks in virtual try-on

  • Achieves competitive quality with significantly fewer sampling steps

  • Introduces a new approach to large-scale mask-free paired dataset construction

virtual-try-ondiffusion-modelsmask-freefashion-AI
0 upvotes

Deterministic Decisions for High-Stakes AI: A Zero-Egress Pipeline with the Deployability of RAG and the Accuracy of Machine Learning

Craig Atkinson Independent Researcher

Identifies intervention bias as a previously unquantified failure mode of zero-shot LLM educational advisory agents and proposes a zero-egress pipeline that combines RAG deployability with ML accuracy for high-stakes decision-making scenarios.

Key Findings

  • Zero-shot LLM advisory agents exhibit intervention bias: recommending action when optimal policy mandates inaction

  • Six-arm ablation on Open University Learning Analytics demonstrates the failure mode quantitatively

  • Zero-egress pipeline achieves ML-level accuracy while maintaining RAG-level deployability

LLM-deploymenteducational-AIdecision-makingintervention-bias
0 upvotes

Trending Models (11)

GLM-5.2

Zhipu AI · text-generation · MoE

View on HF

A large-scale MoE language model with Dynamic Sparse Attention (DSA) architecture, supporting multilingual text generation and conversational AI with strong community adoption and multiple quantized variants.

MoEtext-generationconversational
133.3K downloads2.9K likes
Gemma-4-12B-Coder-Fable5-Composer2.5

Community (yuxinlu1) · text-generation · 12B

View on HF

A GGUF-quantized 12B coding model fine-tuned from Gemma 4 with Fable 5 and Composer 2.5 training, optimized for code generation and reasoning tasks with strong download numbers.

codingGGUFgemma4reasoning
561.6K downloads2.5K likes
LocateAnything-3B

NVIDIA · image-feature-extraction · 3B

View on HF

A 3B parameter image feature extraction model for spatial localization tasks, enabling precise object and feature detection in images with high accuracy.

spatial-localizationimage-feature-extractionNVIDIA
728.3K downloads2.5K likes
Unlimited-OCR

Baidu · feature-extraction · unknown

View on HF

A vision-language OCR model achieving state-of-the-art multilingual document understanding, offering robust text recognition from complex visual inputs including handwriting and structured documents.

OCRvision-languagemultilingual
362.9K downloads1.4K likes
Qwythos-9B-Claude-Mythos-5-1M-GGUF

Empero AI · text-generation · 9B

View on HF

A GGUF-quantized 9B parameter model based on Qwen3.5 with 1M context window, optimized for reasoning, function calling, and multimodal agentic tasks.

GGUFquantizedqwen3.5reasoning
907.7K downloads951 likes
Gemma-4-12B-Agentic-Fable5-Composer2.5

Community (yuxinlu1) · text-generation · 12B

View on HF

A GGUF-quantized 12B agentic model fine-tuned from Gemma 4 for terminal and tool-use tasks, designed for autonomous coding and agentic workflows.

agenticGGUFgemma4terminal
241.4K downloads848 likes
Ornith-1.0-35B-GGUF

DeepReinforce AI · text-generation · 35B (MoE)

View on HF

A GGUF-quantized 35B parameter model from the Ornith family, a MoE-based multimodal model supporting text generation and image understanding tasks.

GGUFMoEmultimodaltext-generation
123.6K downloads483 likes
Qwen-AgentWorld-35B-A3B

Alibaba Qwen · image-text-to-text · 35B-A3B (MoE)

View on HF

A 35B MoE model with 3B active parameters specialized for agent world modeling, supporting image-text-to-text tasks for environment simulation and agentic applications.

agentworld-modelingMoEqwen
26.2K downloads438 likes
Krea-2-Turbo

Krea · text-to-image · unknown

View on HF

A fast text-to-image diffusion model optimized for rapid generation, built on the Krea-2-Raw base model with inference speed improvements.

text-to-imagediffusionfast-inference
38.5K downloads393 likes
DeepSeek-V4-Pro-DSpark

DeepSeek AI · text-generation · unknown

View on HF

The DSpark variant of DeepSeek's V4-Pro model, representing the latest in DeepSeek's large language model family with enhanced capabilities for text generation and reasoning.

deepseektext-generationreasoning
5.5K downloads214 likes
Ornith-1.0-397B

DeepReinforce AI · image-text-to-text · 397B (MoE)

View on HF

The flagship 397B parameter MoE model from the Ornith family, supporting multimodal image-text-to-text and text generation tasks at the largest scale in the Ornith lineup.

MoEmultimodallarge-scaletext-generation
1.6K downloads169 likes

Trending GitHub Repos (14)

A complete AI agency framework with 18+ specialized expert agents, each with personality, processes, and proven deliverables — from frontend wizards to community management. Surging on GitHub as teams adopt multi-persona agent architectures.

ai-agentsmulti-agentdeveloper-tools
Shell119.0K+1.4K today19.5K

An AI-era value investing research framework built for Claude Code and Codex, combining four investment masters' methodologies with multi-agent adversarial analysis for comprehensive stock research.

financeai-agentsinvestingclaude-code
Python6.7K+1.4K today870

Edit videos with coding agents — extending the browser-use paradigm to video editing, enabling AI agents to perform complex video editing tasks through natural language instructions.

video-editingai-agentsautomation
Python12.0K+967 today1.6K

Open-source AI memory platform giving agents persistent long-term memory across sessions with a self-hosted knowledge graph engine. Trending as agent memory infrastructure becomes critical for production deployments.

ai-memoryknowledge-graphagentsinfrastructure
Python25.7K+868 today2.4K

A personal trading agent from HKU Data Science that uses LLM reasoning for financial market analysis and automated trading decisions.

tradingfinanceai-agentsLLM
Python15.1K+839 today2.7K

Fastest macOS offline dictation app providing fully local voice-to-text. Represents the growing trend of on-device AI inference for privacy-sensitive applications.

speech-to-texton-device-AImacOSprivacy
Swift4.4K+830 today278

A feed-forward 3D foundation model for reconstructing scenes from streaming data, enabling real-time 3D scene understanding from continuous input streams.

3D-reconstructionfoundation-modelscene-understanding
Python8.6K+465 today834

An operating system for robotics that upgrades driver assistance systems on 300+ supported cars. Continued strong momentum in the autonomous driving open-source ecosystem.

autonomous-drivingroboticsADAS
Python62.8K+458 today11.1K

Multi-agent LLM financial trading framework with nearly 90K stars, representing the maturation of AI-powered trading systems from research prototypes to widely adopted tools.

tradingmulti-agentfinanceLLM
Python89.8K+362 today17.3K
High RelevanceGitHub

NumPy and SciPy for GPU — a drop-in replacement enabling GPU-accelerated scientific computing. Trending as GPU computing infrastructure becomes essential for AI/ML workloads.

GPU-computingnumpyscientific-computing
Python11.8K+352 today1.1K

18 AI personas (Aristotle, Feynman, Kahneman, Torvalds) deliberate decisions across multiple LLM providers with structured multi-round deliberation and genuine model diversity.

multi-LLMdeliberationdecision-making
Shell1.9K+331 today202

Open-source LLM-friendly web crawler and scraper with 70K+ stars. Core infrastructure for RAG pipelines and AI agents that need to ingest web content.

web-scrapingRAGLLM-toolsdata-ingestion
Python70.3K+288 today7.2K

Desktop app for managing markdown knowledge bases, trending as knowledge management becomes critical infrastructure for AI-augmented workflows.

knowledge-managementmarkdowndesktop-app
TypeScript17.5K+280 today1.2K

Making all software agent-native through CLI interfaces, with a CLI-Hub ecosystem. Enables AI agents to control any desktop application through command-line abstractions.

cliagent-nativesoftware-automation
Python44.3K+122 today4.1K

Sources Checked