docs: list the Kotlin and TypeScript ADK implementations in README - #1212
Merged
Merged
Conversation
The Important Links header offers Python ADK and Java ADK but predates the Kotlin and TypeScript implementations, so readers looking for a sibling language find an incomplete list. Add both, and drop a stray trailing space on the Java line.
baptmont
approved these changes
Jul 27, 2026
wolo-lab
added a commit
that referenced
this pull request
Aug 11, 2026
…919, #786, #1212, #1162) (#1282) * feat: enable h2c on web launcher listener (#826) * feat(web): enable h2c on launcher listener - Configure the web launcher HTTP server with net/http.Protocols so the same listener accepts both HTTP/1 and cleartext HTTP/2 traffic. - This keeps existing REST, Web UI, A2A, and trigger routes working over HTTP/1 while allowing custom web sublaunchers to register handlers that require h2c, including native gRPC servers. The change avoids any public launcher API changes and uses the standard library instead of adding an http2/h2c dependency. - Add a regression test covering existing HTTP/1 route handling through the base router. * feat(launcher): add opt-in h2c support for web server * test(launcher): cover opt-in h2c behavior Test HTTP/1.1 and prior-knowledge h2c requests with the flag enabled and disabled. Clarify h2c security, upgrade, and streaming timeout behavior in the flag documentation. * fix(launcher): handle response body close errors in h2c tests (cherry picked from commit e6562fe) * fix(skilltoolset): document load_skill param as name, not skill_name (#919) * fix(skilltoolset): document load_skill param as name, not skill_name The default system instruction told the model to call the load_skill tool with skill_name="<SKILL_NAME>", but LoadSkillArgs marshals its field as "name". The first load_skill call in each session was therefore rejected for an unknown field and only recovered via retry. Use name= to match the schema. * fix(skilltoolset): make the new instruction test compile and pass lint The test file added here imported the pre-v2 module path, which no longer exists, so the whole skilltoolset package failed to build: tool/skilltoolset/instruction_test.go:8:2: no required module provides package google.golang.org/adk/tool/skilltoolset/internal/skilltool Point the import at google.golang.org/adk/... and add the Apache 2.0 header that goheader requires on every new Go file. No change to the test's logic or to the instruction fix. --------- Co-authored-by: João Westerberg <westerberg@google.com> (cherry picked from commit 9e6a3db) * docs(llmagent): correct OutputSchema comment — tools still work via set_model_response (#786) The previous comment incorrectly stated that OutputSchema prevents the use of tools. The framework injects a set_model_response tool transparently so all tool types (function tools, RAG, agent transfer) continue to work alongside structured output. Updated the comment to reflect actual behavior. Fixes #756 Co-authored-by: João Westerberg <westerberg@google.com> (cherry picked from commit d1fd187) * docs: list the Kotlin and TypeScript ADK implementations in README (#1212) The Important Links header offers Python ADK and Java ADK but predates the Kotlin and TypeScript implementations, so readers looking for a sibling language find an incomplete list. Add both, and drop a stray trailing space on the Java line. (cherry picked from commit 5344562) * deploy(agentengine): drop the hardcoded GOOGLE_API_KEY secret env (#1162) (cherry picked from commit 2bcf2c7) --------- Co-authored-by: Jan Krynauw <jan@alisx.com> Co-authored-by: Parafee41 <parafee_2041@qq.com> Co-authored-by: nuthalapativarun <nuthalapativarun@gmail.com> Co-authored-by: Karol Piotrowicz <karol.piotrowicz@gmail.com>
houzhonglogic
pushed a commit
to Seek-Key-LTD/key-agent
that referenced
this pull request
Sep 13, 2026
…oogle#1212) The Important Links header offers Python ADK and Java ADK but predates the Kotlin and TypeScript implementations, so readers looking for a sibling language find an incomplete list. Add both, and drop a stray trailing space on the Java line.
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
The Important Links header in
README.mdoffers Python ADK and Java ADK, but predates the Kotlin and TypeScript implementations. A reader looking for a sibling language currently gets an incomplete list. This adds both, and drops a stray trailing space on the Java line.adk-jsis labelled "TypeScript ADK" to match how that repo describes itself ("an open-source, code-first Typescript toolkit").Worth noting this makes adk-go the most complete of the family —
adk-kotlinlists Python and Java,adk-javalists Python, andadk-pythonandadk-jslist no siblings. Happy to trim if you would rather adk-go matched the others instead of leading them.Testing plan
Docs-only, no code paths change. All five linked repositories confirmed public and unarchived:
adk-python,adk-java,adk-kotlin,adk-js,adk-web.Note on the Samples link
I looked at whether the
Sampleslink should point atgoogle/adk-samplesfor consistency with the sibling repos, and concluded it should not:adk-go/exampleshas 16 examples, whileadk-samples/go/agentshas 2. The current in-repo link is the better target, so it is left untouched.Companion to #1211, which corrects the same implementation list in
AGENTS.md.