fix(aws-transform-agent-toolkit): correct a2aSupported example and UpdateAgent claim#140
Merged
nadetastic merged 1 commit intoJun 2, 2026
Conversation
…dateAgent claim Two issues in agent-registration.md were causing users to register orchestrators that the AWS Transform webapp couldn't chat with: 1. The "Complete agentCard Example" set `a2aSupported: false`, which the chat backend interprets as non-routable. Users (or LLMs) following this as a template ended up with chat-broken agents. Flipped to `true` to match every other example in the file. 2. A note claimed `jobOrchestratorMetadata` is "fully updatable post-registration" via `UpdateAgent`. The registry's UpdateAgent API actually only accepts customerConfiguredAgentDependencies, marketplaceMetadata, and deprecated — it does NOT accept jobOrchestratorMetadata. Replaced with an accurate warning that matches troubleshooting.md.
HellcatOvO
approved these changes
Jun 2, 2026
nadetastic
approved these changes
Jun 2, 2026
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.
Summary
Two issues in
aws-transform-agent-toolkit/steering/agent-registration.mdcaused users to register orchestrators that the AWS Transform webapp couldn't chat with:a2aSupported: false. Users (and LLMs) following this as a template registered chat-broken agents — the webapp lists them but won't route messages to them. Flipped totrueto match every other example in the file (Minimal, Orchestrator, Python, etc.).jobOrchestratorMetadatais "fully updatable post-registration" viaUpdateAgent. The registry'sUpdateAgentAPI actually only acceptscustomerConfiguredAgentDependencies,marketplaceMetadata, anddeprecated— there is no path to updatejobOrchestratorMetadataonce registered. Replaced with an accurate warning that matchestroubleshooting.md.Why this matters
The combination is a trap: users start by copying the "Complete" example (with
false), assume they can fix it later, and end up unable to recover without re-registering under a new agent name.Test plan
a2aSupportedexamples in the file remaintrue(verified via grep)troubleshooting.mdline 93