Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add shennawardana23/skillme --skill adk-go-agent-buildergit clone --depth 1 https://github.com/shennawardana23/skillmeWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/shennawardana23/skillme/adk-go-agent-builder)<a href="https://agentmods.dev/skills/shennawardana23/skillme/adk-go-agent-builder"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/adk-go-agent-builder/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/shennawardana23/skillme/adk-go-agent-builder"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/adk-go-agent-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00100 | $0.01774 |
| Opus 5 | $0.00050 | $0.00887 |
| Sonnet 5 | $0.00020 | $0.00355 |
| Haiku 4.5 | $0.00010 | $0.00177 |
Grade A, and why
adk-go-agent-builder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 176 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ADK Go Agent Builder
Google's Agent Development Kit has an official, actively maintained Go
module: google.golang.org/adk/v2 (go get google.golang.org/adk/v2,
requires Go 1.26+). This is a distinct, real SDK — not a hypothetical or
Python-only port — with its own idioms that differ from the Python/Java/
Kotlin/TypeScript ADK variants. Ground every code sample in the packages
below rather than porting Python ADK syntax (google.adk.agents.Agent,
decorator-based tools) directly into Go; the Go API is call-based and
config-struct-driven.
Core packages
| Package | Purpose |
|---|---|
google.golang.org/adk/v2/agent |
Core agent.Agent interface, agent.Context, agent.NewSingleLoader |
google.golang.org/adk/v2/agent/llmagent |
llmagent.New(llmagent.Config{...}) — the standard LLM-backed agent |
google.golang.org/adk/v2/model/gemini |
gemini.NewModel(ctx, modelName, *genai.ClientConfig) |
google.golang.org/adk/v2/tool |
tool.Tool interface |
google.golang.org/adk/v2/tool/functiontool |
functiontool.New(functiontool.Config{...}, handler) — wrap a typed Go function as a tool |
google.golang.org/adk/v2/tool/agenttool |
agenttool.New(subAgent, *agenttool.Config) — expose one agent as a tool for another |
google.golang.org/adk/v2/tool/geminitool |
Built-in Gemini tools, e.g. geminitool.GoogleSearch{} |
google.golang.org/adk/v2/cmd/launcher + .../launcher/full |
CLI/server launcher that runs an agent |
Minimal agent
package main
import (
"context"
"log"
"os"
"google.golang.org/genai"
"google.golang.org/adk/v2/agent"
"google.golang.org/adk/v2/agent/llmagent"
"google.golang.org/adk/v2/cmd/launcher"
"google.golang.org/adk/v2/cmd/launcher/full"
"google.golang.org/adk/v2/model/gemini"
)
func main() {
ctx := context.Background()
model, err := gemini.NewModel(ctx, "gemini-flash-latest", &genai.ClientConfig{
APIKey: os.Getenv("GOOGLE_API_KEY"),
})
if err != nil {
log.Fatalf("create model: %v", err)
}
weatherAgent, err := llmagent.New(llmagent.Config{
Name: "weather_agent",
Model: model,
Description: "Answers questions about current weather.",
Instruction: "Your SOLE purpose is to answer weather questions. Refuse anything else.",
})
if err != nil {
log.Fatalf("create agent: %v", err)
}
l := full.NewLauncher()
cfg := &launcher.Config{AgentLoader: agent.NewSingleLoader(weatherAgent)}
if err := l.Execute(ctx, cfg, os.Args[1:]); err != nil {
log.Fatalf("run: %v\n\n%s", err, l.CommandLineSyntax())
}
}
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 176 lines · 100 tokens per session scan A 3a664bcc44ac
adk-go-agent-builder is a skill published in the GitHub repository shennawardana23/skillme (2 stars, last pushed 14d ago), licensed Apache-2.0. It adds 100 tokens to every session and 1,774 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
developing-genkit-go
Develop AI-powered applications using Genkit in Go. Use when the user asks to build AI features, agents, flows, or tools in Go using Genkit, or when working with Genkit Go code involving generation, prompts, streaming, tool calling, or model providers.
authoring-go-sdk-tasks
Writes Airflow task logic in Go using the Airflow Go SDK. Use when the user wants to implement Airflow tasks in Go, asks about BundleProvider/RegisterDags, the bundlev1 Registry/Dag interfaces, registering Go tasks (AddTask/AddTaskWithName), dependency injection by parameter type (context.Context, sdk.TIRunContext…
deploying-go-sdk-bundles
Builds, packs, and deploys compiled Airflow Go SDK bundles so the ExecutableCoordinator can run them. Use when the user wants to compile a Go task bundle, asks about go build, go tool airflow-go-pack, the AFBNDL01 self-contained executable bundle, packing or inspecting a bundle, placing it under executablesroot…
loom-golang
Go language expertise for idiomatic, production-quality code.
go-programming-expert
Expert-level skill for Go programming (Go 1.25+). Covers high-performance microservices, concurrency patterns, sqlc, net/http, Gin/Echo/Fiber, gRPC, and testing in English and Indonesian.
wasm-edge-computing-expert
Expert guide for WebAssembly (WASM) and Edge Computing. Covers WASI preview 2, Spin/Fermyon, Cloudflare Workers WASM, and high-performance browser computing / Panduan ahli untuk WebAssembly (WASM) dan Edge Computing. Mencakup WASI preview 2, Spin/Fermyon, Cloudflare Workers WASM, dan komputasi performa tinggi di…