Trustworthy Adk
Description
Security-focused plugins and examples for Google's Agent Development Kit (ADK) demonstrating trustworthy AI agents with patterns.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Trustworthy Agent Development Kit (ADK) Extensions
[](https://opensource.org/licenses/MIT) [](https://www.python.org/downloads/)
A comprehensive toolkit for building secure, trustworthy AI agents using Google's Agent Development Kit (ADK). This package provides security-focused plugins, defensive mechanisms, and analysis tools to help developers create robust autonomous systems that resist prompt injection attacks and other security threats.
🎯 Overview
This material supports the talk first presented at [2025 BSides Philadelphia](https://bsidesphilly.org/): **"Your AI Agent Just Got Pwned: A Security Engineer's Guide to Building Trustworthy Autonomous Systems"**. The slides are available [here](docs/2025-12%20-%20Your%20AI%20Agent%20Just%20Got%20Pwned.pdf).
The toolkit implements proven security patterns and defensive mechanisms to protect AI agents from:
- Prompt injection attacks
- Unauthorized tool execution
- Data exfiltration attempts
- Social engineering attacks
- Indirect prompt injection (IPI)
🚀 Quick Start
Installation
# Clone the repository
git clone https://github.com/yourusername/trustworthy-adk.git
cd trustworthy-adk
# Install uv if you haven't already
pip install uv
# Install the package in editable mode
uv pip install -e .
Basic Usage
from trustworthy import ActionSelectorAgent, HITLToolPlugin
# Create a secure action selector agent
def check_order_status(order_id: str) -> str:
"""Check the status of a customer order"""
return f"Order {order_id} is being processed"
def delete_user(user_id: str) -> str:
"""Delete a user account - SENSITIVE OPERATION"""
return f"User {user_id} deleted"
# Create agent with Action-Selector Pattern (no plugins needed)
agent = ActionSelectorAgent(
model="gemini-2.5-flash",
name="secure_agent",
description="Secu
Related Skills
Defense in Depth
Implement multi-layered testing and security best practices.
Security SecLists Official Repository
[OWASP Testing Guide](https://owasp.org/www-project-web-security-testing-guide/)
Security Threat Hunting with Sigma Rules
Use Sigma detection rules to hunt for threats and analyze security events
Security Maintenance Walkthrough - 2026-03-29
- Re-triaged the full 2026-03-15 security finding set against current `main` and wrote a fresh current-head re
Security Google Workspace Model Armor
Filter user-generated content for safety
Security Google Workspace Alert Center
Manage security alerts
Security Related Agents
Token Auditor
Scans ui/src/ for hardcoded visual values, duplicate components, and shadcn replacement candidates; produces d
Gitnexus Security Boundary Reviewer
GitNexus security and trust-boundary reviewer. Use for auth, permissions, secrets, injection, unsafe parsing,
Accessibility Audit
| You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive tec... | -