Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
The batteries-included agent harness.
| Date | Stars |
|---|---|
| 2026-07-31 | 27161 |
| 2026-08-01 | 27196 |
| 2026-08-02 | 27231 |
| 2026-08-03 | 27261 |
| 2026-08-04 | 27294 |
| 2026-08-05 | 27363 |
| 2026-08-06 | 27397 |
| 2026-08-07 | 27438 |
| 2026-08-08 | 27491 |
| 2026-08-09 | 27521 |
| 2026-08-10 | 27555 |
| 2026-08-11 | 27604 |
| 2026-08-12 | 27649 |
| 2026-08-13 | 27694 |
| 2026-08-14 | 27743 |
| 2026-08-15 | 27778 |
| 2026-08-16 | 27796 |
| 2026-08-17 | 27820 |
| 2026-08-18 | 27891 |
| 2026-08-19 | 27927 |
| 2026-08-20 | 27993 |
| 2026-08-21 | 28033 |
| 2026-08-22 | 28066 |
| 2026-08-23 | 28123 |
| 2026-08-24 | 28343 |
| 2026-08-25 | 28426 |
| 2026-08-26 | 28520 |
| 2026-08-27 | 28582 |
| 2026-08-28 | 28648 |
| 2026-08-29 | 28684 |
| 2026-08-30 | 28719 |
| 2026-08-31 | 28756 |
| 2026-09-01 | 28797 |
| 2026-09-02 | 28838 |
| 2026-09-03 | 28879 |
| 2026-09-04 | 28959 |
| 2026-09-05 | 29019 |
| 2026-09-06 | 29050 |
| 2026-09-07 | 29098 |
| 2026-09-08 | 29148 |
| 2026-09-09 | 29195 |
| 2026-09-10 | 29267 |
| 2026-09-11 | 29318 |
| 2026-09-12 | 29335 |
| 2026-09-13 | 29355 |
| 2026-09-14 | 29398 |
| 2026-09-15 | 29437 |
| 2026-09-16 | 29474 |
| 2026-09-17 | 29515 |
| 2026-09-18 | 29542 |
| 2026-09-19 | 29559 |
| 2026-09-20 | 29593 |
Today
+34 stars today
This week
+238 stars this week
This month
+1.6k stars this month
Momentum
409.0
growth rate 0.81%/day
<div align="center">
<a href="https://docs.langchain.com/oss/python/deepagents/overview#deep-agents-overview">
<picture>
<source media="(prefers-color-scheme: dark)" srcset=".github/images/logo-dark.svg">
<source media="(prefers-color-scheme: light)" srcset=".github/images/logo-light.svg">
<img alt="Deep Agents Logo" src=".github/images/logo-dark.svg" width="50%">
</picture>
</a>
</div>
<div align="center">
<h3>The batteries-included agent harness.</h3>
</div>
<div align="center">
<a href="https://opensource.org/licenses/MIT" target="_blank"><img src="https://img.shields.io/pypi/l/deepagents" alt="PyPI - License"></a>
<a href="https://pypistats.org/packages/deepagents" target="_blank"><img src="https://img.shields.io/pepy/dt/deepagents" alt="PyPI - Downloads"></a>
<a href="https://pypi.org/project/deepagents/#history" target="_blank"><img src="https://img.shields.io/pypi/v/deepagents?label=%20" alt="Version"></a>
<a href="https://x.com/langchain_oss" target="_blank"><img src="https://img.shields.io/twitter/url/https/twitter.com/langchain_oss.svg?style=social&label=Follow%20%40LangChain" alt="Twitter / X"></a>
</div>
<br>
Deep Agents is an open source agent harness — an opinionated agent that runs out of the box. Extend, override, or replace any piece.
**Principles:**
- **Opinionated** — defaults tuned for long-horizon, multi-step work
- **Extensible** — override or replace any piece without forking
- **Model-agnostic** — works with any LLM that supports tool calling: frontier, open-weight, or local
- **Production-ready** — built on LangGraph (streaming, persistence, checkpointing) with first-class tracing, evaluation, and deployment via LangSmith
**Features include:**
- **Sub-agents** — delegate tasks to agents with isolated context windows
- **Filesystem** — read, write, edit, or search over pluggable local, sandboxed, or remote backends
- **Context management** — summarize long threads and offload tool outputs to disk
- **Shell access** — run commands in your sandbox of choice
- **Persistent memory** — pluggable state and store backends for cross-session recall
- **Human-in-the-loop** — approve, edit, or reject tool calls before they run
- **Skills** — reusable behaviors the agent can load on demand
- **Tools** — bring your own functions or any MCP server
Deep Agents is available as a JavaScript/TypeScript library — see [deepagents.js](https://github.com/langchain-ai/deepagentsjs).
> [!NOTE]
> **Deep Agents Code** — a pre-built coding agent in your terminal, similar to Claude Code or Cursor, powered by any LLM. Install with `curl -LsSf https://langch.in/dcode | bash`. See the [documentation](https://docs.langchain.com/deepagents-code) for the full feature set.
## Quickstart
```bash
uv add deepagents
```
```python
from deepagents import create_deep_agent
agent = create_deep_agent(
model="openai:gpt-5.5",
tools=[my_custom_tool],
system_prompt="You are a research assistant.",
)
result = agent.invoke({"messages": "Research LangGraph and write a summary"})
```
The agent can plan, read/write files, and manage its own context. Add your own tools, swap models, customize prompts, configure sub-agents, and more. See the [documentation](https://docs.langchain.com/oss/python/deepagents/overview) for full details.
> [!TIP]
> For developing, debugging, and deploying AI agents and LLM applications, see [LangSmith](https://docs.langchain.com/langsmith/home).
## FAQ
### How is this different from LangGraph or LangChain?
LangGraph is the graph runtime. LangChain's `create_agent` is a minimal agent harness on top of it. Deep Agents is a more opinionated harness on top of `create_agent` — same building blocks, but with filesystem, sub-agents, context management, and skills bundled in. For how the three relate, see the [LangChain ecosystem overview](https://docs.langchain.com/oss/python/concepts/products).
### Does this work with open-weight or local models?
Yes. Any model Excerpt of 6,924 characters
Read on GitHubMason Daugherty · United States
1.6k
341
Eugene Yurtsev · @langchain-ai · United States
244
160
68
ccurme
64
Sydney Runkle · @langchain-ai · Morocco
62
John Kennedy · @langchain-ai
45
Hunter Lovell · LangChain
44
Harrison Chase
44
Nick Hollon
42
39
38
Johannes du Plessis · @langchain-ai
34
Jacob Lee · @langchain-ai · United States
23
Nishitha M · LangChain · United States
16
Maahir Sachdev · @langchain-ai · United States
15
Lance Martin
14
Adem Boukhris · Esprit School of Engineering
13
Victor Moreira
7
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:e4a2f2d93387dc34, topic:langgraph, readme:ai agents, readme:tool calling