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 use tako.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, then TAKO_BOOTSTRAP_DATA for containers.

CRITICAL: Any framework that implements http.Handler works directly with ListenAndServe. Only Fiber (fasthttp) needs the Listener path.

Core Concept: http.Handler

Tako wraps any standard http.Handler:

package main

import (
	"net/http"
	"tako.sh"
)
Installs
3
Repository
tako-sh/tako
GitHub Stars
58
First Seen
Jun 7, 2026
tako-sdk-go — tako-sh/tako