GitHub Trending 日报

📅 日期:2026/03/13

🎯 系列说明:每日精选GitHub热门开源项目,带你发现最新技术趋势和优质项目。每日推送,持续更新中…


📊 今日热门项目速览

1. BitNet

Official inference framework for 1-bit LLMs

🐍 Python | ⭐ +2149 今日 | 🏆 32,351 总计

仓库地址microsoft/BitNet


2. fish-speech

SOTA Open Source TTS

🐍 Python | ⭐ +637 今日 | 🏆 26,367 总计

仓库地址fishaudio/fish-speech


3. openrag

OpenRAG is a comprehensive, single package Retrieval-Augmented Generation platform built on Langflow, Docling, and Opensearch.

🐍 Python | ⭐ +322 今日 | 🏆 1,550 总计

仓库地址langflow-ai/openrag


4. InsForge

Give agents everything they need to ship fullstack apps. The backend built for agentic development.

🔷 TypeScript | ⭐ +263 今日 | 🏆 3,107 总计

仓库地址InsForge/InsForge


5. hindsight

Hindsight: Agent Memory That Learns

🐍 Python | ⭐ +217 今日 | 🏆 3,079 总计

仓库地址vectorize-io/hindsight


6. page-agent

JavaScript in-page GUI agent. Control web interfaces with natural language.

🔷 TypeScript | ⭐ +1205 今日 | 🏆 5,961 总计

仓库地址alibaba/page-agent


7. superpowers

An agentic skills framework & software development methodology that works.

🐚 Shell | ⭐ +1706 今日 | 🏆 79,945 总计

仓库地址obra/superpowers


8. hermes-agent

The agent that grows with you

🐍 Python | ⭐ +1264 今日 | 🏆 6,164 总计

仓库地址NousResearch/hermes-agent


9. MiroFish

A Simple and Universal Swarm Intelligence Engine, Predicting Anything. 简洁通用的群体智能引擎,预测万物

🐍 Python | ⭐ +1857 今日 | 🏆 19,180 总计

仓库地址666ghj/MiroFish


10. LiteRT

LiteRT, successor to TensorFlow Lite. is Google’s On-device framework for high-performance ML & GenAI deployment on edge platforms, via efficient conversion, runtime, and optimization

C++ | ⭐ +13 今日 | 🏆 1,669 总计

仓库地址google-ai-edge/LiteRT


11. agency-agents

A complete AI agency at your fingertips - From frontend wizards to Reddit community ninjas, from whimsy injectors to reality checkers. Each agent is a specialized expert with personality, processes, and proven deliverables.

🐚 Shell | ⭐ +4168 今日 | 🏆 34,945 总计

仓库地址msitarzewski/agency-agents


12. A2UI

🔷 TypeScript | ⭐ +225 今日 | 🏆 12,604 总计

仓库地址google/A2UI


13. claude-plugins-official

Official, Anthropic-managed directory of high quality Claude Code Plugins.

🐍 Python | ⭐ +150 今日 | 🏆 10,265 总计

仓库地址anthropics/claude-plugins-official



🔍 今日精选项目详解

BitNet

项目地址https://github.com/microsoft/BitNet

作者:microsoft


📖 项目简介

Official inference framework for 1-bit LLMs


📊 项目数据

指标数值
⭐ Stars32,351
🍴 Forks2,729
👀 Watchers32,351
📝 LanguagePython
📅 Created2024-08-05
🔄 Updated2026-03-13
📜 LicenseMIT

💡 核心特点


📄 README 摘要

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# bitnet.cpp
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
![version](https://img.shields.io/badge/version-1.0-blue)

[<img src="./assets/header_model_release.png" alt="BitNet Model on Hugging Face" width="800"/>](https://huggingface.co/microsoft/BitNet-b1.58-2B-4T)

Try it out via this [demo](https://demo-bitnet-h0h8hcfqeqhrf5gf.canadacentral-01.azurewebsites.net/), or build and run it on your own [CPU](https://github.com/microsoft/BitNet?tab=readme-ov-file#build-from-source) or [GPU](https://github.com/microsoft/BitNet/blob/main/gpu/README.md).

bitnet.cpp is the official inference framework for 1-bit LLMs (e.g., BitNet b1.58). It offers a suite of optimized kernels, that support **fast** and **lossless** inference of 1.58-bit models on CPU and GPU (NPU support will coming next).

The first release of bitnet.cpp is to support inference on CPUs. bitnet.cpp achieves speedups of **1.37x** to **5.07x** on ARM CPUs, with larger models experiencing greater performance gains. Additionally, it reduces energy consumption by **55.4%** to **70.0%**, further boosting overall efficiency. On x86 CPUs, speedups range from **2.37x** to **6.17x** with energy reductions between **71.9%** to **82.2%**. Furthermore, bitnet.cpp can run a 100B BitNet b1.58 model on a single CPU, achieving speeds comparable to human reading (5-7 tokens per second), significantly enhancing the potential for running LLMs on local devices. Please refer to the [technical report](https://arxiv.org/abs/2410.16144) for more details.

**Latest optimization** introduces parallel kernel implementations with configurable tiling and embedding quantization support, achieving **1.15x to 2.1x** additional speedup over the original implementation across different hardware platforms and workloads. For detailed technical information, see the [optimization guide](src/README.md).

<img src="./assets/performance.png" alt="performance_comparison" width="800"/>


## Demo

A demo of bitnet.cpp running a BitNet b1.58 3B model on Apple M2:

https://github.com/user-attachments/assets/7f46b736-edec-4828-b809-4be780a3e5b1

## What's New:
- 01/15/2026 [BitNet CPU Inference Optimization](https://github.com/microsoft/BitNet/blob/main/src/README.md) ![NEW](https://img.shields.io/badge/NEW-red)
- 05/20/2025 [BitNet Official GPU inference kernel](https://github.com/microsoft/BitNet/blob/main/gpu/README.md)
- 04/14/2025 [BitNet Official 2B Parameter Model on Hugging Face](https://huggingface.co/microsoft/BitNet-b1.58-2B-4T)
- 02/18/2025 [Bitnet.cpp: Efficient Edge Inference for Ternary LLMs](https://arxiv.org/abs/2502.11880)
- 11/08/2024 [BitNet a4.8: 4-bit Activations for 1-bit LLMs](https://arxiv.org/abs/2411.04965)
- 10/21/2024 [1-bit AI Infra: Part 1.1, Fast and Lossless BitNet b1.58 Inference on CPUs](https://arxiv.org/abs/2410.16144)
- 10/17/2024 bitnet.cpp 1.0 released.
- 03/21/2024 [The-Era-of-1-bit-LLMs__Training_Tips_Code_FAQ](https://github.com/micr

... (内容过长,已截断,请访问GitHub查看完整内容)

🚀 快速开始

1
2
3
4
5
6
7
8
# 克隆项目
git clone https://github.com/microsoft/BitNet.git

# 进入目录
cd BitNet

# 查看文档
cat README.md

💭 推荐理由

这个项目在今日GitHub Trending榜单中排名第一,值得关注的原因:

  1. 活跃度高:近期获得大量关注,社区活跃
  2. 实用性强:解决实际问题,有实用价值
  3. 代码质量:代码结构清晰,文档完善
  4. 创新性:在技术或应用上有创新突破


📝 系列说明

GitHub Trending 日报是一个持续更新的系列,每日为你带来:

  • 🔥 热门项目速览:快速了解当日最火的开源项目
  • 🔍 精选项目详解:深入分析排名第一的项目
  • 💡 技术趋势洞察:把握开源社区最新动态

往期日报

订阅方式


🤝 参与贡献

如果你发现有趣的开源项目,欢迎推荐!


📡 数据更新:2026-03-13 09:03:35
🔗 数据来源:GitHub Trending