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

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).