docs(integrations): add Agent Threat Rules (ATR) guardrail plugin#1850
Open
eeee2345 wants to merge 2 commits into
Open
docs(integrations): add Agent Threat Rules (ATR) guardrail plugin#1850eeee2345 wants to merge 2 commits into
eeee2345 wants to merge 2 commits into
Conversation
Adds docs/integrations/atr-guardrail.md (+ icon) for the adk-atr-guardrail package -- an in-process, deterministic security guardrail that enforces the open-source Agent Threat Rules ruleset at three fail-closed Runner callbacks (before_run / before_model / before_tool). Tagged 'resilience'. Created per maintainer guidance on google/adk-python#6130 to ship as a standalone package listed in the integrations catalog. Verified locally with mkdocs build.
✅ Deploy Preview for adk-docs-preview ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Author
|
Context for reviewers: this page was created at the request of @rohityan, who closed the original adk-python sample PR (google/adk-python#6130) with the guidance to "release the feature as a standalone package that we will then share through" the integrations catalog. The package is now published on PyPI ( It follows the same structure as the existing Cisco AI Defense integration page (#1672) — a guardrail plugin tagged |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds an integrations catalog page for
adk-atr-guardrail, a standalone, in-process security guardrail plugin for ADK backed by the open-source Agent Threat Rules (ATR) ruleset.This is the follow-up requested in google/adk-python#6130: that PR added the guardrail as an ADK sample, and the maintainer recommended shipping it instead as a standalone package listed in the integrations catalog. The package is now published, so the page documents installing and using it.
What it provides
BasePluginthat enforces ATR detection at three fail-closed Runner callbacks: before_run (halts the run on a malicious user message), before_model (skips the model call when the assembled prompt still carries a threat), and before_tool (returns an error instead of executing a tool whose arguments match a rule).Details
resilience, mirroring the structure of the existing cisco-ai-defense page.Disclosure: I maintain the open-source ATR ruleset referenced here.