fix(cli): update Kagent ADK to v0.10.1 - #679
Draft
xytian315 wants to merge 3 commits into
Draft
Conversation
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
The updated ADK Python Dockerfile template likely uses an invalid dependency installation mechanism (uv pip install -r against pyproject.toml), which risks breaking generated agent image builds.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Updates the CLI’s generated ADK Python agent scaffolding to align with Kagent ADK 0.10.1 (and its upstream A2A user-identity fix), including refreshed Python dependency pins and container build behavior.
Changes:
- Bumps
KAGENT_VERSIONin the rootMakefiletov0.10.1. - Updates the ADK Python scaffold
pyproject.tomltemplate to match the Kagent base image’s Python/ADK ecosystem versions and adds agentgateway dev-only pins. - Adjusts the ADK Python scaffold Dockerfile template to install dependencies into the base image environment and updates init tests to assert the new scaffold output.
File summaries
| File | Description |
|---|---|
| Makefile | Bumps default Kagent version to v0.10.1. |
| internal/cli/frameworks/builtin/adk-python/templates/pyproject.toml.tmpl | Updates Python dependency pins and adds agentgateway dev dependency group. |
| internal/cli/frameworks/builtin/adk-python/templates/Dockerfile.tmpl | Changes container build steps to install dependencies via uv and sets PYTHONPATH. |
| internal/cli/commands/init.go | Updates scaffold variables to use the 0.10.1 base image version. |
| internal/cli/commands/init_test.go | Adds assertions to validate the updated generated Dockerfile/pyproject outputs. |
Review details
- Files reviewed: 5/5 changed files
- Comments generated: 3
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
xytian315
marked this pull request as draft
September 9, 2026 14:36
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.
Description
Motivation:
Updates generated Python agents to Kagent ADK
0.10.1, which includes the upstream A2A user-identity fixChange Type
/kind fix
Changelog
Additional Notes