tako-sdk-go
Installation
SKILL.md
Tako SDK (tako.sh Go module)
Runtime SDK for Go apps deployed with Tako.
CRITICAL: The Go SDK is required — your app must call
tako.ListenAndServe()or usetako.Listener()to speak the Tako protocol (health checks, graceful shutdown). Secrets are loaded from the Tako bootstrap envelope at init time: fd 3 first for native processes, thenTAKO_BOOTSTRAP_DATAfor containers.
CRITICAL: Any framework that implements
http.Handlerworks directly withListenAndServe. Only Fiber (fasthttp) needs theListenerpath.
Core Concept: http.Handler
Tako wraps any standard http.Handler:
package main
import (
"net/http"
"tako.sh"
)