Feature proposal: Add Agent Skills support to ADK #4392
DamiMartinez
started this conversation in
Ideas
Replies: 2 comments
|
I can see some activity on this topic c736210, but I don't think it's ready yet. |
0 replies
|
First-class agent skills is the right direction — the tension right now is that skills (instructions + tools + memory) tend to leak across agents when you use them in multi-agent flows. What we solved with TokenRip (tokenrip.com) is skill scoping: each skill is an asset with a stable URL, agents fetch the asset at session start, and the asset defines the skill's tool allowlist + behavioral contract. Skills become composable without cross-agent state pollution. Would be excited to see ADK take skills in this direction — scoped, versioned, URL-addressable — rather than as instance-attached state. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Summary
Add support for Agent Skills in ADK so agents can extend their capabilities with standardized
SKILL.mdskills.Motivation
Proposed approach
Skill-as-tool pattern (following the Claude Agent SDK):
Components: Skill discovery loader, Skill tool, AgentSkillsPlugin (metadata injection), and configurable skills directories.
Questions for maintainers
Willingness to contribute
I’d like to help implement this feature and collaborate with maintainers on the design and implementation.
All reactions