Community default. A company skill that explicitly supersedes skill takes precedence. Go context.Context Best Practices is Go's mechanism for propagating cancellation signals, deadlines, and request-scoped values across API boundaries and between goroutines. Think of it as the "session" of a request — it ties together every operation that belongs to the same unit of work. Best Practices Summary 1. The same context MUST be propagated through the entire request lifecycle: HTTP handler → service → DB → external APIs 2. MUST be the first parameter, named 3. NEVER store context in a struct — pass…