fix(a2a): add A2A Python SDK as project dependency #3178
No reviewers
Labels
No labels
auto/needs-reevaluation
controller-managed
auto/blocked-by-deps
auto/ci-timeout
auto/claimed-implementer
auto/claimed-merge
auto/claimed-reviewer
auto/driver-down
auto/invariant-violation
auto/last-attempt-tier-0
auto/last-attempt-tier-1
auto/last-attempt-tier-2
auto/last-attempt-tier-min
Automation Tracking
auto/needs-conflict-resolution
auto/needs-implementer
auto/postmortem
auto/ready-to-merge
auto/restart-throttled
auto/revert
auto/sentinel
auto/stale-inactivity
auto/unstable
Blocked
Bounty
$100
Bounty
$1000
Bounty
$10000
Bounty
$20
Bounty
$2000
Bounty
$250
Bounty
$50
Bounty
$500
Bounty
$5000
Bounty
$750
MoSCoW
Could have
MoSCoW
Must have
MoSCoW
Should have
Needs Feedback
Points
1
Points
13
Points
2
Points
21
Points
3
Points
34
Points
5
Points
55
Points
8
Points
88
Priority
Backlog
Priority
CI Blocker
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Signed-off: Owner
Signed-off: Scrum Master
Signed-off: Tech Lead
Spike
State
Completed
State
Duplicate
State
In Progress
State
In Review
State
Paused
State
Unverified
State
Verified
State
Wont Do
Type
Automation
Type
Bug
Type
Discussion
Type
Documentation
Type
Epic
Type
Feature
Type
Legendary
Type
Refactor
Type
Support
Type
Task
Type
Testing
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Blocks
Reference
cleveragents/cleveragents-core!3178
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/a2a-python-sdk-dependency"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
a2a-sdk>=0.3.0to[project.dependencies]inpyproject.tomluv.lockto includea2a-sdk 0.3.25and its transitive dependenciesa2amodule is importable as a project dependencyMotivation
The specification (§Overview, §Server and Client Architecture) explicitly states: "Both transports use the A2A Python SDK." The
a2a-sdkpackage (the official A2A Python SDK from a2a-protocol.org, published by Google) was absent frompyproject.tomlanduv.lock, making the project non-compliant with ADR-047.The
a2a-sdkpackage installs as thea2aPython module and providesA2AClient,A2AGrpcClient, and the full transport layer required by the spec.Approach
A2AClientclass availability)"a2a-sdk>=0.3.0"to[project.dependencies]with a comment referencing ADR-047uv.lockviauv lock— resolves toa2a-sdk 0.3.25uv syncinstalls cleanly;uv pip list | grep a2aconfirmsa2a-sdk 0.3.25is installedQuality Gates
nox -e lint— all checks passednox -e typecheck— 0 errors, 0 warningsnox -e unit_tests— 14,429 scenarios passed, 0 failed (including 3 new TDD scenarios)uv sync— installs cleanlyuv pip list | grep a2a—a2a-sdk 0.3.25confirmedFiles Changed
pyproject.toml— addeda2a-sdk>=0.3.0to[project.dependencies]uv.lock— regenerated witha2a-sdkand transitive dependenciesfeatures/tdd_a2a_sdk_dependency.feature— new TDD Behave scenariosfeatures/steps/tdd_a2a_sdk_dependency_steps.py— step definitionsCloses #2922
Automated by CleverAgents Bot
Supervisor: Implementation | Agent: ca-issue-worker
pyproject.toml— spec requires both transports use the A2A Python SDK #2922🔒 Review claimed by reviewer-pool-1 [claim-token: reviewer-pool-1-3178-1743897600]
Automated by CleverAgents Bot
Supervisor: PR Review | Agent: ca-continuous-pr-reviewer
Code Review — LGTM ✅
PR: fix(a2a): add A2A Python SDK as project dependency
Review Checklist
✅ Correctness: Adds
a2a-sdk>=0.3.0to[project.dependencies]inpyproject.toml. The spec explicitly states "Both transports use the A2A Python SDK." This was a missing dependency.✅ TDD Approach: Failing Behave scenarios written first — 3 scenarios covering dependency declaration, module importability, and
A2AClientclass availability.✅ Test Coverage: 3 new BDD scenarios in
features/tdd_a2a_sdk_dependency.feature.✅ Type Safety: No
# type: ignore. Pyright passes with 0 errors.✅ Commit Format:
fix(a2a):follows Conventional Changelog format.✅ Labels/Milestone:
Type/Bug, milestonev3.4.0— correctly assigned.Decision: LGTM — Proceeding to merge when CI passes.
Automated by CleverAgents Bot
Supervisor: PR Review | Agent: ca-continuous-pr-reviewer
🔒 Review claimed by reviewer-pool-1 [claim-token: reviewer-pool-1-3178-1775373200]
Automated by CleverAgents Bot
Supervisor: PR Review | Agent: ca-continuous-pr-reviewer
pyproject.toml— spec requires both transports use the A2A Python SDK