AIAny
AI Agent2025
Icon for item

深入理解 AI Agent:设计原理与工程实践

Open-source companion to a technical book that teaches how to design, evaluate and ship LLM-based AI agents — includes the full Chinese manuscript, community translations, chapter-aligned runnable example projects, and reproducible evaluation harnesses.

Introduction

Most AI agent repos are either a demo or a paper; this repository is the book and the lab combined. It packages a ten-chapter textbook (full source + compiled PDFs) together with per-chapter code, experiments and benchmarks so readers can move directly from concept to reproducible implementation.

What Sets It Apart
  • Book + Code in one place: the repository contains the complete book source (chapters 1–10), compiled PDFs in multiple languages, and the example projects mapped to each chapter so concepts are immediately runnable.
  • Practical, engineering-first focus: organizes content around the core formula Agent = LLM + context + tools and emphasizes harness engineering (deployment, KV-cache design, context compression, tool protocols) rather than only model internals.
  • Reproducible evaluation and demos: includes evaluation suites (GAIA, terminal-bench, SWE-bench variants), cost/latency analysis tools, and many demo projects (coding agent, browser automation, multimodal agents, async/event-driven agents) suitable for experimentation and benchmarking.
  • Community and licensing: Apache-2.0 licensed with community translations and many contributor-ready demos; star history and CI artifacts indicate active maintenance.
Who It's For — and Trade-offs

Great fit if you want a hands-on, chapter-by-chapter curriculum to build production-style agents, reproduce experiments, or evaluate tool-augmented LLMs. The repo is especially useful for engineers focused on system design (context management, tool protocols, evaluation pipelines) and researchers who want runnable baselines. Look elsewhere if you only need a short tutorial or a lightweight SDK: many advanced experiments depend on external datasets, training frameworks, or hardware, and several training/benchmark components are provided as reproduction guides rather than fully embedded code. Expect some projects to require extra upstream repos, API keys, or nontrivial setup for full reproduction.

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.