Adding Secrets to a MoonBit Agent
SkillAI & modelsAdding secrets to MoonBit Golem agents. Use when the user asks to add secret values, API keys, or sensitive configuration to a MoonBit agent.
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 Adding Secrets to a MoonBit Agent skill
What this skill tells your AI
The instructions your AI receives, as published by golemcloud/golem in golem-skills/skills/moonbit/golem-add-secret-moonbit/SKILL.md and read by ahel’s review.
Overview
Secrets are sensitive configuration values (API keys, passwords, tokens) stored per-environment and accessed at runtime via @config.Secret[T] from the Golem MoonBit SDK. Unlike regular config fields, the config value carries an opaque secret handle and plaintext is revealed only when agent code calls .get!(). Secrets are not stored in golem.yaml (which is checked into source control). They are managed via the CLI or through secretDefaults for local development.
Declaring Secrets in a Config Struct
Use @config.Secret[T] for secret fields inside a #derive.config struct:
#derive.config
pub(all) struct MyAgentConfig {
name : String
api_key : @config.Secret[String]
db : DbConfig
}
#derive.config
pub(all) struct DbConfig {
host : String
port : UInt
password : @config.Secret[String]
}
Wiring Secrets Into The Agent Constructor
Secrets use the same typed config mechanism as regular agent config. Receive the config via @config.Config[T] in the constructor:
#derive.config
pub(all) struct MyAgentConfig {
api_key : @config.Secret[String]
}
#derive.agent
struct MyAgent {
config : @config.Config[MyAgentConfig]
}
fn MyAgent::new(config : @config.Config[MyAgentConfig]) -> MyAgent {
{ config, }
}
pub fn MyAgent::connect(self : Self) -> String {
let api_key = self.config.value.api_key.get!()
"using \{api_key}"
}
- The
@config.Config[T]parameter in the constructor is detected automatically by the SDK tooling to embed config and secret declarations into the component metadata.
Reading Secrets at Runtime
Call .get!() on a Secret[T] to explicitly reveal the value. Secrets are lazily loaded, so a fresh .get!() call can observe updated values after the update is visible:
pub fn MyAgent::connect(self : Self) -> String {
let config = self.config.value
let api_key = config.api_key.get!()
let db_password = config.db.password.get!()
"Connecting to \{config.db.host}:\{config.db.port} with key \{api_key}"
}
Managing Secrets via CLI
Secrets are environment-scoped — each deployment environment has its own set of secret values.
# Create secrets in the current environment
golem secret create apiKey --secret-type String --secret-value "sk-abc123"
golem secret create db.password --secret-type String --secret-value "s3cret"
# List all secrets
golem secret list
# Update a secret value
golem secret update-value apiKey --secret-value "new-value"
# Delete a secret
golem secret delete apiKey
Note: For
update-valueanddelete, you can also use--id <uuid>instead of the positional path.
Secret Defaults in golem.yaml
For local development convenience, set defaults under secretDefaults. These are not used in production environments:
secretDefaults:
local:
apiKey: "dev-key-123"
db:
password: "dev-password"
Key Points
- Secrets use the same
@config.Config[T]constructor injection mechanism as regular typed config - If the agent also needs non-secret typed config guidance, use
golem-add-config-moonbitalongside this skill - Secret paths are normalized to camelCase by the platform — MoonBit
snake_casefield names likeapi_keybecomeapiKeyin the CLI and manifest (e.g.,golem secret create apiKey ...) - The
--secret-typeargument accepts type names using the project's language syntax (e.g.,String,UInt,Bool) or JSON-encoded analysed types as a fallback - Secrets are stored per-environment, not per-agent-instance
- Missing required secrets cause agent creation/deployment to fail
- Secrets are revealed on
.get!(), and each reveal pins the resolved secret revision for deterministic retries and replay - Fresh
.get!()calls can observe runtime updates without restarting the agent .get!()raises@common.AgentError— use MoonBit's error handling (!ortry) accordingly- Never edit generated files —
golem_reexports.mbt,golem_agents.mbt, andgolem_derive.mbtare auto-generated bygolem build
Signals
- GitHub stars
- 2k
- Forks
- 212
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
golem-add-secret-moonbit- Source
- github.com/golemcloud/golem