AIAny
AI Agent2025
Icon for item

Agent Development Kit (ADK)

Builds, evaluates, and deploys multi-agent systems in Python, code-first. A graph-based runtime handles routing, fan-out/fan-in, loops, retries, and human-in-the-loop; a Task API covers agent-to-agent delegation, plus a CLI and web UI.

Introduction

Most agent frameworks force a choice between a no-code visual builder you outgrow and a bare LLM loop you have to wire up yourself. ADK sits deliberately in between: agents are plain Python objects, but the orchestration — routing, loops, retries, state, human approval — is handled by a real execution engine rather than your own glue code.

What Sets It Apart
  • The workflow runtime is graph-based, so fan-out/fan-in, retry logic, and human-in-the-loop pauses are first-class primitives instead of hand-rolled control flow — the kind of thing that usually breaks first in production.
  • A dedicated Task API models agent-to-agent delegation explicitly, with multi-turn task modes, so multi-agent systems are composed rather than improvised.
  • It ships both adk run (CLI) and adk web (local web UI), closing the gap between writing an agent and actually watching it behave before deployment.
  • Built and maintained by Google with a bi-weekly release cadence, and the same toolkit spans local dev through production deployment.
Who It's For

Great fit if you want to keep agent logic in version-controlled Python while delegating the messy orchestration concerns, or if you're building genuinely multi-agent systems and want delegation modeled rather than faked. Look elsewhere if you need a drag-and-drop builder for non-engineers, want a provider-neutral abstraction with no gravity toward any one model, or are wary of churn — the 2.x line introduced breaking changes from 1.x, and examples default to Gemini.

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.