Enabling Authentication on Scala HTTP Endpoints
SkillSecurityEnabling authentication on Scala HTTP endpoints. Use when the user asks to add auth, require authentication, or protect HTTP endpoints.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Enabling Authentication on Scala HTTP Endpoints skill
What this skill tells your AI
The instructions your AI receives, as published by golemcloud/golem in golem-skills/skills/scala/golem-add-http-auth-scala/SKILL.md and read by ahel’s review.
Overview
Golem supports authentication on HTTP endpoints via OIDC providers. Authentication is enabled in the agent code and configured via security schemes in golem.yaml. Load the golem-configure-api-domain skill for details on setting up security schemes and domain deployments, including when to use subdomain versus domain.
Enabling Auth on All Endpoints (Mount Level)
Set auth = true on @agentDefinition to require authentication for all endpoints:
@agentDefinition(mount = "/secure/{value}", auth = true)
trait SecureAgent extends BaseAgent {
class Id(val value: String)
// All endpoints require authentication
}
Enabling Auth on Individual Endpoints
Set auth = true on specific @endpoint annotations:
@agentDefinition(mount = "/api/{value}")
trait ApiAgent extends BaseAgent {
class Id(val value: String)
@endpoint(method = "GET", path = "/public")
def publicData(): Future[String]
@endpoint(method = "GET", path = "/private", auth = true)
def privateData(): Future[String]
}
Overriding Mount-Level Auth
Per-endpoint auth overrides the mount-level setting:
@agentDefinition(mount = "/api/{value}", auth = true)
trait MostlySecureAgent extends BaseAgent {
class Id(val value: String)
@endpoint(method = "GET", path = "/health", auth = false)
def health(): Future[String] // No auth required
@endpoint(method = "GET", path = "/data")
def getData(): Future[Data] // Auth required (inherited)
}
Deployment Configuration
After enabling auth = true in code, you must configure a security scheme in golem.yaml. Load the golem-configure-api-domain skill for the full details, including when to use subdomain versus domain. Quick reference:
httpApi:
deployments:
local:
- subdomain: my-app # resolves to my-app.localhost:9006 by default
agents:
SecureAgent:
securityScheme: my-oidc # For production OIDC
# or for development:
# SecureAgent:
# testSessionHeaderName: X-Test-Auth
Signals
- GitHub stars
- 2k
- Forks
- 212
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
golem-add-http-auth-scala- Source
- github.com/golemcloud/golem