🚀 GitHub今日热门开源项目推荐(2025年2月)
本文整理了2025年2月GitHub上最受关注的开源项目,涵盖AI工具、安全工具、编译器等领域,并附上搭建教程。
1️⃣ ClawRouter - 智能LLM路由器
📖 项目介绍
ClawRouter是一个智能LLM路由器,可以自动将请求路由到最便宜且能够处理的模型,帮助用户节省78%的推理成本。支持30+模型,使用x402微支付,无需API Key。
⭐ 主要特性
- 智能路由:根据请求复杂度自动选择最优模型
- 成本优化:平均节省78% API费用
- 统一钱包:支持x402微支付协议
- 多模型支持:GPT-4、Claude、Llama等30+模型
🚀 搭建方式
# 安装依赖
npm install @blockrun/clawrouter
# 配置环境变量
export CLAWROUTER_WALLET="your-wallet-address"
# 使用示例
const { ClawRouter } = require('@blockrun/clawrouter');
const router = new ClawRouter({
models: ['gpt-4', 'claude-3-opus', 'llama-3'],
costOptimization: true
});
const response = await router.route('Your prompt here');
🔗 项目地址:https://github.com/BlockRunAI/ClawRouter
2️⃣ Tirith - 终端安全防护工具
📖 项目介绍
Tirith是一个终端安全防护工具,专门用于检测和防止同形字符攻击(Homograph Attacks)。你的浏览器会检测这种攻击,但终端不会——Tirith就是来填补这个空白的。
⭐ 主要特性
- 实时检测恶意URL和命令
- 支持多种同形字符编码识别
- 轻量级,无依赖
- 适配主流Shell环境
🚀 搭建方式
# 克隆项目
git clone https://github.com/sheeki03/tirith.git
cd tirith
# 编译安装(需要Rust环境)
cargo build --release
# 安装到系统
sudo cp target/release/tirith /usr/local/bin/
# 配置Shell集成
echo 'eval "$(tirith init bash)"' >> ~/.bashrc
source ~/.bashrc
🔗 项目地址:https://github.com/sheeki03/tirith
3️⃣ Claude's C Compiler - Claude编写的C编译器
📖 项目介绍
Anthropic发布的这个项目展示了Claude Opus 4.6的能力——用Rust编写了一个无依赖的C语言编译器,并且包含针对x86_64和ARM架构的后端。这是AI辅助编程的里程碑项目。
⭐ 主要特性
- 完整的C语言支持(C11子集)
- Rust实现,内存安全保证
- 支持x86_64和ARM64目标架构
- 自带标准库实现
🚀 搭建方式
# 克隆项目
git clone https://github.com/anthropics/claudes-c-compiler.git
cd claudes-c-compiler
# 安装Rust工具链(如果没有)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# 编译项目
cargo build --release
# 编译示例
./target/release/claude-cc examples/hello.c -o hello
./hello
🔗 项目地址:https://github.com/anthropics/claudes-c-compiler
4️⃣ Excalidraw MCP App - AI手绘图工具
📖 项目介绍
为Claude设计的Excalidraw集成工具,让AI可以创建手绘风格的图表和流程图。支持MCP(Model Context Protocol)协议,实现AI与图形工具的无缝对接。
🚀 搭建方式
# 克隆项目
git clone https://github.com/antonpk1/excalidraw-mcp-app.git
cd excalidraw-mcp-app
# 安装依赖
npm install
# 配置环境变量
cp .env.example .env
# 编辑.env添加Anthropic API Key
# 启动服务
npm run dev
# 或者使用Docker
docker-compose up -d
🔗 项目地址:https://github.com/antonpk1/excalidraw-mcp-app
5️⃣ GLM-OCR - 智能文档识别工具
📖 项目介绍
智谱AI开源的OCR文档识别工具,结合了GLM大模型的理解能力和传统OCR的精度,支持表格、公式、多栏排版等复杂文档结构的识别。
🚀 搭建方式
# 安装Python依赖
pip install glm-ocr
# 使用示例
from glm_ocr import GLMOCR
ocr = GLMOCR(api_key="your-api-key")
result = ocr.process("document.pdf")
# 输出结果
print(result.markdown) # 输出Markdown格式
# 或者使用Docker部署
docker run -p 8000:8000 -e API_KEY=your-key zai-org/glm-ocr:latest
🔗 项目地址:https://github.com/zai-org/GLM-OCR
💡 总结
以上是本周GitHub上最受关注的5个开源项目,涵盖了AI成本优化、安全防护、编译器、AI绘图和OCR识别等领域。这些项目都具有高实用性和创新性,值得关注和尝试。
📅 整理时间:2026年2月 | 📊 数据来源:GitHub Trending





