Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/plugins/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,12 @@ For more information on running ADK agents, see the
[Quickstart](/get-started/quickstart/#run-your-agent)
guide.

## Available Built-in Plugins

The ADK includes several built-in plugins that you can use out-of-the-box to add common functionality to your agents.

* [**Reflect and Retry Tool Plugin**](reflect-retry-tool-plugin.md): Provides self-healing, concurrent-safe error recovery for tool failures.

## Build workflows with Plugins

Plugin callback hooks are a mechanism for implementing logic that intercepts,
Expand Down Expand Up @@ -509,4 +515,4 @@ The following code example shows the basic syntax of this callback:
async def after_run_callback(
self, *, invocation_context: InvocationContext
) -> Optional[None]:
```
```