Corpus Agentis
The field book to agent ecosystems
The field book to agent ecosystems

Cookbooks and starter repos

Stack · Cookbooks Live data
Reference implementations

Cookbooks and example repos for building agents, by GitHub stars (live).

awesome-llm-apps114,710 ★
generative-ai-for-beginners112,040 ★
openai-cookbook74,194 ★
claude-cookbooks45,511 ★
cookbook17,419 ★
smol-course6,659 ★
e2b-cookbook1,363 ★
langgraph-101482 ★
8 rows Live data · click a row for its full spec
titlecreatorstacksummarystarsurlsrc
openai-cookbookOpenAIJupyter NotebookExamples and guides for using the OpenAI API74,194↗ link↗ T1
claude-cookbooksAnthropicJupyter NotebookA collection of notebooks/recipes showcasing some fun and effective ways of using Claude.45,511↗ link↗ T1
cookbookGoogleJupyter NotebookExamples and guides for using the Gemini API17,419↗ link↗ source
e2b-cookbookE2BTypeScriptExamples of using E2B1,363↗ link↗ T1
awesome-llm-appscommunityPython100+ AI Agent & RAG apps you can actually run: clone, customize, ship.114,710↗ link↗ source
generative-ai-for-beginnersMicrosoftJupyter Notebook21 Lessons, Get Started Building with Generative AI 112,040↗ link↗ T1
langgraph-101LangChainJupyter NotebookLearn about the fundamentals of LangGraph through a series of notebooks482↗ link↗ T1
smol-courseHugging FaceJupyter NotebookA course on aligning smol models.6,659↗ link↗ T1
Field notes

Cookbooks and starter repos, ranked by the GitHub stars that signal real adoption.

Eight cookbook and starter repositories, mostly published by the model vendors themselves. They are the fastest route from an idea to something running, and the closest thing the field has to shared practice.

Show more

What they encode is convention rather than capability. Patterns that appear in several vendors’ cookbooks tend to become the default way a thing is done, long before any specification says so. Reading across them is a reasonable way to see where practice is settling.

From the corpus, curated by Brandon Chaplin
Common questions
What are the best repositories for learning to build AI agents?

The vendor cookbooks are the safest start, since OpenAI, Anthropic and Google each publish runnable examples that track their own APIs. Community collections like awesome-llm-apps cover more ground but vary in quality. Course-style repos such as generative-ai-for-beginners suit anyone who wants structure. (OpenAI Cookbook)

Are GitHub stars a reliable measure of repo quality?

No. Stars measure attention and they only accumulate, so an older repo can outrank a better new one indefinitely. Check the last commit date, the open issue count, and whether the examples still run against the current API.

What is an AI cookbook?

A collection of short runnable examples, usually published by a model vendor, showing how to do one thing at a time: call a tool, stream a response, run an eval. You copy the pattern into your own code rather than installing it as a dependency.

Can I use code from these repositories commercially?

Usually yes. Most vendor cookbooks and community collections are MIT or Apache 2.0, which permit commercial use with attribution. Check the LICENSE file in each repository, because a few carry custom terms.

What language should I write an AI agent in?

Python first. Nearly every vendor SDK ships Python before anything else, and most examples are Python or Jupyter notebooks. TypeScript is the well-supported second option, and the usual choice when the agent lives inside a web application.

Next in the learning path