1. github/awesome-copilot
分类:开源项目来源:github_search分数:9作者:github时间:2026-03-02T01:57:20Z
github/awesome-copilot 汇集社区共建的 Copilot 自定义代理、指令、Hooks 与自动化工作流,并提供 MCP Server 便捷安装,帮助在多语言多场景下提升开发效率与一致性。
- 提供多类增强资源:Agents、Instructions、Hooks、Agentic Workflows、Skills、Plugins、Cookbook Recipes
- 特色插件包括 Awesome Copilot(发现/生成资源)、Copilot SDK(多语言应用构建指引)、Partners(合作伙伴定制代理)
- 通过本地运行的 MCP Server(需 Docker)支持在编辑器中搜索与安装指令/代理/技能
- 提供符合 llmstxt.org 规范的 llms.txt,便于模型机器可读地理解仓库资源清单
- 支持在 Copilot coding agent、VS Code 与 Copilot CLI(部分功能即将到来)中使用自定义代理与插件
#GitHub #repo #开源项目 #GitHub Copilot #MCP Server #VS Code #GitHub Actions #Copilot SDK #Agent
2. iflytek/astron-agent
分类:开源项目来源:github_search分数:4作者:iflytek时间:2026-03-02T01:58:14Z
科大讯飞开源 Astron Agent 企业级智能体工作流平台,集成编排、模型管理、工具/MCP、RPA与协作并支持高可用部署,帮助组织快速构建可扩展的生产级 Agent 应用并可在 Apache 2.0 下商业使用。
- 提供企业级 Agentic Workflow 开发平台,覆盖开发/构建/优化/管理全流程并支持一键部署与高可用
- 原生集成智能 RPA,实现跨系统流程自动化,打通“决策到行动”的闭环执行
- 工具生态可即插即用,集成讯飞开放平台大量 AI 能力与工具,降低二次开发成本
- 支持多种大模型接入方式:API 快速验证到企业级本地 MaaS 集群一键部署
- 提供 Docker Compose 快速启动与认证服务(Casdoor)接入;Helm/K8s 方案在开发中
#GitHub #repo #开源项目 #Astron Agent #iFLYTEK #RPA #MCP #Agent
3. rasbt/reasoning-from-scratch
分类:开源项目来源:github_search分数:1作者:rasbt时间:2026-03-02T01:46:14Z
rasbt/reasoning-from-scratch 提供配套《Build a Reasoning Model (From Scratch)》的代码与笔记本,手把手在开源基座LLM(Qwen3)上实现推理增强,帮助理解推理模型如何构建与评测。
- 官方书籍代码仓库,围绕“从预训练基座LLM逐步添加推理能力”的实践路线
- 章节覆盖推理模型评测、推理的推理时扩展(inference-time scaling)、自我改写/自我精炼、自强化学习训练与GRPO改进、蒸馏等主题
- 提供大量Jupyter notebooks与附录材料(如MATH-500验证脚本、LaTeX解析器、MMLU与LLM-as-a-judge评测方法)
- 强调面向消费级硬件可复现:2-4章CPU/GPU均可,5-6章建议GPU以复现实验结果
- 与DeepSeek R1、GPT-5 Thinking等大规模推理模型思路对齐,但以“小而可用”的教育型实现为目标
#GitHub #repo #开源项目 #Qwen3 #inference-time scaling #self-refinement #GRPO
4. Building makemore Part 3: Activations & Gradients, BatchNorm
分类:视频/演讲来源:youtube_rss分数:0作者:Andrej Karpathy时间:2022-10-04T16:41:03+00:00
该视频深入讲解多层MLP的激活与梯度统计、常见诊断可视化及缩放不当的训练脆弱性,并引入BatchNorm与Kaiming初始化来稳定深度网络训练。
- 分析前向激活与反向梯度的统计分布,说明尺度不当会导致饱和、梯度异常等问题
- 通过多种可视化诊断工具评估网络“健康度”,包括激活、梯度与更新比例等指标
- 讲解并推导Kaiming初始化以改善深层网络的信号传播
- 介绍Batch Normalization的动机、机制与训练稳定性收益,并讨论实践中的潜在问题
- 提供练习:零初始化的训练现象分析,以及将BatchNorm参数折叠进线性层以便推理时移除
#YouTube #视频/演讲 #MLP #BatchNorm
5. Building makemore Part 2: MLP
分类:视频/演讲来源:youtube_rss分数:0作者:Andrej Karpathy时间:2022-09-12T14:43:06+00:00
该视频演示从零实现字符级语言模型的多层感知机(MLP),并讲解训练流程、学习率与超参调优、数据集划分和过拟合等基础概念,帮助系统理解神经网络训练与评估为何关键。
- 基于 Bengio et al. 2003 论文思路实现 MLP 语言模型并做要点讲解
- 逐步搭建数据集、字符嵌入表(embedding)、隐藏层与输出层,手写 NLL loss 并引入 F.cross_entropy
- 实现完整训练循环:从单 batch 过拟合调试到全量数据的小批量训练
- 介绍并实践学习率选择、超参数调优,以及 train/val/test 划分与欠拟合/过拟合分析
- 通过实验调整隐藏层大小与 embedding 维度,并可视化字符嵌入,最后从模型采样生成
#YouTube #视频/演讲 #MLP #makemore #PyTorch
6. The spelled-out intro to language modeling: building makemore
分类:视频/演讲来源:youtube_rss分数:0作者:Andrej Karpathy时间:2022-09-07T19:14:47+00:00
该视频用PyTorch从零实现字符级bigram语言模型makemore,讲清张量计算、训练/采样/损失评估流程,为后续逐步升级到Transformer/GPT奠定基础。
- 实现并可视化bigram计数模型,完成归一化与采样生成
- 讲解torch.Tensor细节:向量化、broadcasting、高效行归一化等
- 引入负对数似然(NLL)作为损失,并用“假计数”做平滑/正则化
- 从计数法过渡到神经网络:one-hot输入+单层线性变换+softmax得到概率
- 演示PyTorch中向量化loss、反向传播与参数更新的完整训练闭环
- 提供练习:trigram、数据集划分、调平滑强度、去one-hot、使用cross_entropy等
#YouTube #视频/演讲 #PyTorch #bigram #makemore #softmax #Transformer
7. kaito-project/kaito
分类:开源项目来源:github_search分数:0作者:kaito-project时间:2026-03-02T01:32:01Z
KAITO 发布 v0.9.0(2026-02-26),作为 Kubernetes Operator 自动化大模型推理/微调与 GPU 节点供给,并新增覆盖所有 vLLM 支持模型,降低在集群中上线与扩缩容 AI 服务的门槛。
- KAITO 通过 CRD/Controller(Workspace)在 Kubernetes 中自动部署推理或调优工作负载
- 提供 OpenAI 兼容推理接口,支持 vLLM 与 transformers 等开源推理运行时
- 基于模型需求自动拉起 GPU 节点并按监控指标对推理服务自动扩缩容
- 利用本地 NVMe 存储模型权重,并支持 Gateway API Inference Extension
- 自 v0.5.0 起提供 RAGEngine Operator:集成 LlamaIndex 编排、支持本地/远程 Embedding、内置 FAISS 向量库并对接任意 OAI 兼容推理后端
#GitHub #repo #开源项目 #Kubernetes #Operator #vLLM #RAG
8. davis7dotsh/better-context
分类:开源项目来源:github_search分数:0作者:davis7dotsh时间:2026-03-02T01:53:39Z
better-context(btca)是一个让AI编码代理通过检索真实源码来回答库/框架问题的工具,提供CLI、API服务与Web端,帮助避免依赖过时文档并提升开发准确性。
- 核心理念:让AI代理通过搜索实际源代码而非过时文档来回答问题
- 项目以Bun单仓+Turborepo构建,明确要求只使用bun而非npm/yarn
- 包含CLI、API server、SvelteKit+Convex的Web应用、sandbox与共享包等多模块
- Web端支持Vercel部署,需配置Convex相关变量与密钥以完成构建与注入PUBLIC_CONVEX_URL
- 提供完整的build/check/format/test脚本体系,并使用Turborepo缓存加速
#GitHub #repo #开源项目 #btca #better-context #Bun #Turborepo #SvelteKit #Convex
9. steven-jianhao-li/zotero-AI-Butler
分类:开源项目来源:github_search分数:0作者:steven-jianhao-li时间:2026-03-02T01:52:58Z
zotero-AI-Butler 是一款开源 Zotero 插件,可自动/批量用大模型精读PDF生成Markdown笔记,并提供一图总结、思维导图与多文献综述,显著提升论文管理与理解效率。
- 自动扫描新加入PDF并生成结构化Markdown笔记,直接保存到对应Zotero条目便于回顾
- 支持多模态Base64上传,能较好处理公式、图表、复杂排版及纯图片PDF,中英文均可
- 提供“一图总结”(用Nano Banana Pro生成学术海报式图片)与思维导图(可导出PNG/OPML)
- 支持对分类下多篇论文生成综合文献综述报告,并创建独立报告条目关联原始PDF
- 内置侧边栏沉浸阅读与追问功能,支持KaTeX渲染LaTeX公式、固定侧边栏不中断心流
- 兼容多平台模型API(Gemini/OpenAI/Anthropic/OpenAI兼容/火山方舟等),提示词模板可自定义
#GitHub #repo #开源项目 #Zotero #插件 #大模型 #文献综述 #思维导图 #多模态 #论文
10. Pipelex/pipelex
分类:开源项目来源:github_search分数:0作者:Pipelex时间:2026-03-02T01:44:25Z
Pipelex 开源推出可重复的 AI 工作流语言与运行工具(.plx),把复杂提示拆成可验证的多步管道并支持多模型/本地端点,提升 AI 应用的可靠性与可维护性。
- 提供人类可读的 .plx 工作流语言,用“Concepts”做带语义的类型约束以增强结构化与校验
- 支持通过 CLI 或 Python 运行管道,可一键生成生产级示例工作流(如简历匹配与面试题生成)
- 兼容多种模型提供方:自带/免费 Pipelex API Key 或自带 OpenAI、Anthropic、Google、Mistral 等,以及 Ollama/vLLM/LM Studio/llama.cpp 等本地端点
- 提供 AI 助手规则(Cursor、Claude、Codex、Copilot 等)以自然语言迭代修改管道
- 有 IDE 扩展(Open VSX)与 Cookbook 示例库,便于快速上手与复用
- 内置可选匿名遥测并支持 DO_NOT_TRACK 关闭,声明会自动脱敏不上传提示与响应等敏感内容
#GitHub #repo #开源项目 #Pipelex #LLM #Python #CLI #Agent
11. CurvineIO/curvine
分类:开源项目来源:github_search分数:0作者:CurvineIO时间:2026-03-02T01:47:08Z
Curvine 是用 Rust 编写的高性能并发分布式缓存系统,提供多云对象存储底座、K8s/CSI 集成与 POSIX/FUSE 访问,面向 AI 训练与大数据加速等低延迟高吞吐场景。
- Rust 实现的分布式缓存,强调低延迟、高吞吐与高并发连接能力
- 多云支持:以多家云厂商对象存储为底层,支持透明迁移
- 提供多层缓存策略(内存/SSD/HDD)并在读写链路多次使用 zero-copy 与异步操作
- 支持 POSIX 语义与高性能 FUSE 层,可像本地磁盘一样操作分布式缓存数据
- 兼容 S3 与 HDFS 读写接口,便于接入 AI 与大数据生态;主从架构+Raft 保证一致性与高可用
- 内置可观测性指标与 Web 管理界面,支持 Helm 部署与集群运维
#GitHub #repo #开源项目 #Rust #Kubernetes #FUSE #S3 #HDFS #Raft #Agent
12. promptdriven/pdd
分类:开源项目来源:github_search分数:0作者:promptdriven时间:2026-03-02T01:34:11Z
GitHub 开源项目 PDD 提供“Prompt-Driven Development”命令行与本地 Web UI,在提示词驱动下自动实现/修复 GitHub Issue、生成测试与架构配置,帮助将 AI 代码生成流程标准化并可重复执行。
- 提供本地 Web 界面(localhost:9876)与 CLI,支持可视化管理项目、运行工作流、浏览/编辑代码与提示词
- 一组 agentic 命令可直接面向 Issue 自动化开发:change/bug/fix/generate/test,并提供 sync 覆盖完整开发周期
- 支持云端默认执行(GitHub SSO、无需本地 API Key)与本地模式(需模型 API Key),兼顾易用性与可控性
- 本地模式基于 LiteLLM(要求 1.75.5+),支持多厂商模型、自动选模、缓存、成本估算与缺失 Key 的交互式引导
- 提供安装与初始化向导(检测 Claude/Gemini/Codex CLI、扫描/配置 API Key、按 ELO 配置模型并做真实调用测试)及白皮书/Doctrine 说明方法论
#GitHub #repo #开源项目 #Prompt-Driven Development #LiteLLM #Agent
13. AceDataCloud/Nexior
分类:开源项目来源:github_search分数:0作者:AceDataCloud时间:2026-03-02T01:49:05Z
<div align="center">
<h1 align="center">Nexior</h1>
Deploy your own AI System in minutes, including applications such as AI Chat (ChatGPT, DeepSeek, Grok, Ge…
- An integrated system offering all-in-one services including AI Chat (ChatGPT, DeepSeek, Grok, Gemini, Claude), AI Image (Midjourney, Flux, …
- No need to set up API service by yourself, ready to use out of the box.
- Supports all capabilities with free trials.
- Out-of-the-box support for payment and referral systems, enabling profit generation without any additional configuration.
- Out-of-the-box user system support, allowing for email login and registration without extra configuration.
- Completely open source and free, under the MIT license, with simple configuration and the ability to deploy directly as your own system.
#GitHub #repo #开源项目 #视频
14. itbench-hub/ITBench
分类:研究/论文来源:github_search分数:0作者:itbench-hub时间:2026-03-02T01:56:11Z
ITBench
**Paper | Leaderboard | Scenarios | Agents | How to Cite | Contributors | Contacts**
---
📢 Announcements
Latest Updates
**[January 21, 2026]** IBM Re…
- **[January 21, 2026]** IBM Research has published the **Enterprise Agents and Benchmarks** collection on Hugging Face, featuring ITBench al…
- **[December 19, 2025]** UC Berkeley's MAST team published a blog post analyzing ITBench SRE agent traces using MAST (Multi-Agent System Fai…
- **[December 2, 2025]** ITBench is now available on Kaggle! IBM has partnered with Kaggle to launch new AI leaderboards for enterprise tasks…
- **[November 30, 2025]** A big shoutout to [@phylisscity](https://github.com/phylisscity), [@preespp](https://github.com/preespp), [@tylrngu…
- **[September 18, 2025]** Our paper **STRATUS: A Multi-agent System for Autonomous Reliability Engineering of Modern Clouds** was accepted a…
- **[July 17, 2025]** ITBench was presented as an **oral** at ICML 2025 (Oral 6A: Applications in Agents and Coding) in Vancouver. [View the …
#GitHub #repo #研究/论文 #Agent
15. JackyST0/awesome-agent-skills
分类:开源项目来源:github_search分数:0作者:JackyST0时间:2026-03-02T01:58:31Z
Awesome Agent Skills Awesome
<p align="center">
<img src="assets/banner.svg" alt="Awesome Agent Skills" width="100%">
</p>
<p align="center">
<a href="CONT…
- [Quick Start](#quick-start)
- [What Are Agent Skills](#what-are-agent-skills)
- [Official Resources](#official-resources)
- [Skills Collections](#skills-collections)
- [Development Tools](#development-tools)
- [Productivity](#productivity)
#GitHub #repo #开源项目 #Agent
16. OpenVoiceOS/ovos-installer
分类:开源项目来源:github_search分数:0作者:OpenVoiceOS时间:2026-03-02T01:56:33Z
🎉 Open Voice OS and HiveMind Installer 🎉
Installer for Open Voice OS (OVOS) and HiveMind on Linux and macOS. Supports interactive installs, scenario-based aut…
- `method: virtualenv`
- `channel: alpha`
- Homebrew installed and available in `PATH`.
- Xcode Command Line Tools installed (`xcode-select --install`).
- Microphone permission granted to your terminal app (System Settings > Privacy & Security > Microphone).
- `uninstall`: Set to `true` to uninstall instead of install.
#GitHub #repo #开源项目
17. hulutech-web/novel-video-workflow
分类:开源项目来源:github_search分数:0作者:hulutech-web时间:2026-03-02T01:58:33Z
<p align="center">
<img src="https://github.com/hulutech-web/novel-video-workflow/blob/master/logo.png?raw=true" width="300" />
</p>
<p align="center">
特别说明 <…
- ✨ **设置中选择马年祝福提示词** - 设置选项卡-风格设置-选择马年,保存后,系统将以该模板作为基础模板,生成一组提示词,用于后续的AI处理。
- ✨ **MCP选项卡输入简单文本** - MCP选项卡-generate_images_from_chapter_with_ai_prompt工具模块,输入简要文本,如:春风送暖,马跃龙腾;
- 🔥 **提示词优化及生图** - 系统ollama生成场景提示词,发给drawthings生成图片,并保存在output中,可自行下载,发亲戚,发朋友,发朋友圈
- ✨ **智能章节分割** - 自动将小说文本按章节拆分
- 🗣️ **AI驱动文本转语音** - 支持声音克隆的高质量语音合成
- 💬 **自动生成字幕** - 基于音频内容的精准时间轴字幕
#GitHub #repo #开源项目 #推理 #语音 #视频
18. codervisor/lean-spec
分类:开源项目来源:github_search分数:0作者:codervisor时间:2026-03-02T01:51:21Z
LeanSpec
<p align="center">
<img src="https://github.com/codervisor/lean-spec-docs/blob/main/static/img/logo-with-bg.svg" alt="LeanSpec Logo" width="120" hei…
- **Fast iteration** - Living documents that grow with your code
- **AI performance** - Small specs = better AI output (context rot is real)
- **Always current** - Lightweight enough that you actually update them
- When to create specs vs. implement directly
- How to discover existing specs before creating new ones
- Best practices for context economy and progressive disclosure
#GitHub #repo #开源项目 #Agent
19. BrianRWagner/ai-marketing-claude-code-skills
分类:开源项目来源:github_search分数:0作者:BrianRWagner时间:2026-03-02T01:43:39Z
AI Marketing Skills for Claude Code
**Marketing frameworks that Claude Code actually executes.**
Not guides. Not courses. *Skills* — packaged expertise your …
- 🌐 [brianrwagner.com](https://brianrwagner.com)
- 🐦 [@BrianRWagner](https://twitter.com/BrianRWagner)
- 💼 [LinkedIn](https://linkedin.com/in/brianrwagner)
- Fork the repo
- Make your changes
- Submit a PR
#GitHub #repo #开源项目 #Agent
20. open-webui/open-terminal
分类:开源项目来源:github_search分数:0作者:open-webui时间:2026-03-02T01:47:33Z
⚡ Open Terminal
A lightweight, self-hosted terminal that gives AI agents and automation tools a dedicated environment to run commands, manage files, and execu…
- **Docker (sandboxed)** — runs in an isolated container with a full toolkit pre-installed: Python, Node.js, git, build tools, data science l…
- **Bare metal** — install it with `pip` and run it anywhere Python runs. Commands run directly on your machine with access to your real file…
- Go to **User Settings → Integrations → Open Terminal**
- Add the terminal **URL** and **API key**
- Enable the connection
- Go to **Admin Settings → Integrations → Open Terminal**
#GitHub #repo #开源项目