> Store, retrieve, and pass credentials securely in MATLAB using the built-in MATLAB Vault (setSecret, getSecret, importSecrets, secretID) instead of hardcoding. storage (S3/Azure/GCS), SFTP, and others. Covers API keys, tokens, passwords, SSH passphrases, CI/batch/scheduled jobs, and "keep credentials out of code" requests. Does NOT cover third-party secret managers (HashiCorp Vault, AWS Secrets Manager), OS-level key management, or the connection/query logic itself.
npx skills add https://github.com/matlab/matlab-agentic-toolkit --skill matlab-secure-credentials
Handle API keys, tokens, passwords, and passphrases with the MATLAB Vault, an
encrypted store built into MATLAB, instead of hardcoding them. This skill covers
*the credential* — storing it, retrieving it, and passing it into a connection to
any authenticated service.
database, cloud storage, SFTP/FTP server, message queue, or any other.
the secure way."
(e.g. a public API, a local file), or cleaning/transforming/aggregating data once it is
in a table or timetable — use the relevant data-import skill (e.g. matlab-analyze-data,
matlab-read-database).
Azure Key Vault) — out of scope.
Pick the mechanism by how the credential is supplied, not by habit.
| Situation | Use | Not |
|-----------|-----|-----|
| Credential is stored and reused across sessions | setSecret once, then getSecret at use | Hardcoding; a hand-rolled config file |
| You need to load a set of credentials at once (interactive setup, or non-interactive / CI / headless / scheduled) | importSecrets to populate the vault from a secrets file, then getSecret; or, in CI, getenv for a runner-injected value | setSecret in a headless job — it is only supported interactively |
| A function accepts credentials from a caller | secretID (a reference to the secret, not its value) | Storing the value in a struct field or argument |
| Credential is genuinely a process environment variable — a CI-injected secret, or a cloud SDK convention like AWS_ACCESS_KEY_ID | getenv — this is correct | Duplicating it into the vault for no reason |
The rule is don't hardcode secrets — not "never use environment variables." getenv is
the right tool when the secret is already a process env var; the vault is the right default
for credentials *you* store.
setSecret("MyApiToken") (MATLAB prompts for the value —never pass it as an argument; it takes only the name).
importSecrets("secrets.env") loads names+values into thevault with no prompt — handy both for interactive setup and for non-interactive/CI.
getSecret("MyApiToken"), or hand asecretID("MyApiToken") to APIs that accept one (they resolve it at call time, so the
value never lives in a variable).
isSecret("MyApiToken") before reading or removing, and confirm nosecret value appears in the script, logs, or any saved file.
| Function | Purpose | Available From |
|----------|---------|----------------|
| setSecret | Add a secret to the vault; interactive — prompts for the value, takes only the name (Overwrite=true to update) | R2024a |
| getSecret | Retrieve a secret value (returns a string scalar) | R2024a |
| isSecret | Check whether a named secret exists | R2024a |
| listSecrets | List the names of stored secrets | R2024a |
| removeSecret | Delete a secret from the vault (there is no deleteSecret) | R2024a |
| setSecretMetadata | Attach metadata (e.g. an expiry date, owner) to a secret | R2024a |
| getSecretMetadata | Read a secret's metadata as a dictionary | R2024a |
| secretID | A reference object carrying a secret's *name*, not its value; accepted by weboptions and matlab.net.http.Credentials | R2025a |
| importSecrets | Load a set of secrets from a file into the vault (no prompt) | R2026a |
% One-time, at the MATLAB prompt (prompts for the value — do NOT type the secret in code):
setSecret("MyApiToken");
% In your script, read it only where needed:
token = getSecret("MyApiToken");
Optionally record metadata such as an expiry so callers can check freshness before use:
% Metadata values are stored in a dictionary; wrap each value in a cell:
setSecretMetadata("MyApiToken", dictionary("Expires", {datetime(2026,12,31)}));
md = getSecretMetadata("MyApiToken");
expiry = md{"Expires"}; % {} indexing returns the stored value
if expiry < datetime("today")
error("MyApiToken expired on %s — rotate it with setSecret(...,Overwrite=true).", expiry);
end
token = getSecret("MyApiToken");
setSecret(...,Overwrite=true) replaces the value of an existing secret — the normal way to
rotate a credential (replace it with a new value, e.g. periodically or after expiry). Without
Overwrite, setSecret errors on a name that already exists.
setSecret("MyApiToken", Overwrite=true); % prompts for the new value
Fetch the token from the vault and set it in the Authorization header.
token = getSecret("MyApiToken");
opts = weboptions( ...
HeaderFields = ["Authorization", "Bearer " + token], ...
ContentType = "json");
data = webread("https://api.example.com/v1/data", opts);
For basic auth, hand weboptions a secretID so the value is resolved at request time
and never sits in a variable:
username = getenv("API_USER"); % REPLACE: your service-account user name
opts = weboptions(Username=username, Password=secretID("MyApiPassword"));
data = webread("https://api.example.com/v1/data", opts);
For lower-level requests, matlab.net.http.Credentials also accepts a secretID:
cred = matlab.net.http.Credentials(Password=secretID("MyApiPassword"));
keyFile = fullfile(userpath, "id_rsa"); % REPLACE: path to your private key
s = sftp("sftp.example.com", "reportuser", ...
PrivateKeyFile = keyFile, ...
PrivateKeyPassphrase = getSecret("SftpKeyPassphrase"));
c = onCleanup(@() close(s));
localPaths = mget(s, "/reports/nightly.csv", tempdir);
reportTable = readtable(localPaths{1});
Password auth instead of a key:
s = sftp("sftp.example.com", "reportuser", Password=getSecret("SftpPassword"));
Store the password in the vault and read it at connect time. Keep host/port/database in
code; keep the credential out.
conn = postgresql("svc-account", getSecret("PgPassword"), ...
Server = "db-prod-01", ...
PortNumber = 5432, ...
DatabaseName = "analytics");
c = onCleanup(@() close(conn));
tables = sqlfind(conn, "");
For a reusable, shareable setup, save a data source once (via the Database Explorer app or
databaseConnectionOptions + saveAsDataSource) and connect by name, supplying the
password from the vault:
conn = postgresql("analyticsDataSource", "svc-account", getSecret("PgPassword"));
MATLAB's file I/O (readtable, datastore, etc.) reads cloud URIs directly and picks up
credentials from the SDK's environment variables. When you hold explicit keys, source them
from the vault and set the env vars the SDK expects; when running on cloud infrastructure,
prefer an attached IAM role and set nothing.
% Explicit keys held in the vault -> set the SDK env vars from getSecret:
setenv("AWS_ACCESS_KEY_ID", getSecret("AwsAccessKeyId"));
setenv("AWS_SECRET_ACCESS_KEY", getSecret("AwsSecretAccessKey"));
setenv("AWS_DEFAULT_REGION", "us-east-1"); % REPLACE: bucket region
T = readtable("s3://acme-data/prices/latest.csv");
If the code runs on an EC2 instance / role-enabled environment, skip the keys entirely —
the IAM role supplies credentials and no secret needs to live anywhere.
When a function accepts credentials from its caller, carry a secretID (a reference), never
the value. It resolves to the secret only where getSecret is called.
Build the config — it carries a reference, not the token:
config = struct( ...
"BaseUrl", "https://api.example.com/v1", ...
"Token", secretID("MyApiToken"));
Use the config inside the function — resolve the secret only at the point of use:
function report = fetchReport(config)
arguments
config (1,1) struct
end
token = getSecret(config.Token.Name);
opts = weboptions(HeaderFields = ["Authorization", "Bearer " + token]);
report = webread(config.BaseUrl + "/report", opts);
end
importSecrets loads names+values from a secrets file into the vault with no prompt — useful
both for one-shot interactive setup and for headless jobs (where setSecret cannot be used,
since it is interactive-only).
% secrets.env — a dotenv file (e.g. from CI secret storage), never committed — with lines like:
% MyApiToken=abc123
% PgPassword=hunter2
importSecrets("secrets.env"); % FileType="auto" (default) detects the dotenv format
token = getSecret("MyApiToken");
If the runner injects a credential directly as a process environment variable rather than a
file, getenv("MY_TOKEN") is the correct read — no vault needed.
setSecret/getSecret) as the default for credentials youstore; guard removeSecret with isSecret.
importSecrets, not setSecret.
.m file, or write a secret *value* into a struct or alog — pass a secretID reference instead.
secretID(...) to weboptions/Credentials over materializing thevalue with getSecret when the API accepts a reference.
SDK convention) — don't over-correct into the vault where it adds nothing.
| Mistake | Why It's Wrong | Correct Approach |
|---------|---------------|------------------|
| Hardcoding a token/password in the .m file | Leaks into version control; rotates badly | getSecret("Name") from the vault |
| Writing a secret *value* into a struct field or argument a function passes around | Plaintext secret leaves the vault | Carry a secretID reference; resolve with getSecret at use |
| setSecret in a CI/batch/scheduled job | It is only supported interactively — no value can be entered | importSecrets populates the vault non-interactively |
| Calling deleteSecret | No such function exists | removeSecret("Name"), guarded by isSecret |
| Saving a credential to a .mat file with save() and reading it back with load() | Writes the plaintext secret to disk, unencrypted and often committed | Keep the value in the vault; persist only a secretID reference and resolve with getSecret at use |
| Error identifier | When it occurs | Fix |
|------------------|----------------|-----|
| MATLAB:authnz:secretapis:KeyAlreadyExists — *"A secret named 'X' already exists. Set 'Overwrite' to true…"* | setSecret("X") when X is already in the vault | To rotate/update, call setSecret("X", Overwrite=true); otherwise pick a new name |
| MATLAB:authnz:secretapis:SecretValueNotFound — *"No secret value found for secret name 'X'…"* | getSecret("X") when X was never stored (or the name is misspelled/wrong case) | Store it first (setSecret/importSecrets); guard reads with isSecret("X"). Secret names are case-sensitive |
| MATLAB:authnz:secretapis:RemoveSecretFailed — *"…No secret found for secret name 'X'."* | removeSecret("X") when X is not in the vault | Guard with if isSecret("X"); removeSecret("X"); end |
----
Copyright 2026 The MathWorks, Inc.
----
Assess Kubernetes workloads and cluster configuration for AKS Automatic compatibility. Identifies incompatibilities, generates fixes, and guides migration from AKS Standard to AKS Automatic. WHEN: migrate to AKS Automatic, check AKS Automatic readiness, validate manifests for Automatic, assess cluster for Automatic compatibility, fix deployment for Automatic compatibility, identify AKS Automatic migration blockers, is my cluster ready for AKS Automatic.
Discovers available Azure OpenAI model capacity across regions and projects. Analyzes quota limits, compares availability, and recommends optimal deployment locations based on capacity requirements. USE FOR: find capacity, check quota, where can I deploy, capacity discovery, best region for capacity, multi-project capacity search, quota analysis, model availability, region comparison, check TPM availability. DO NOT USE FOR: actual deployment (hand off to preset or customize after discovery), quota increase requests (direct user to Azure Portal), listing existing deployments.
Interactive guided deployment flow for Azure OpenAI models with full customization control. Step-by-step selection of model version, SKU (GlobalStandard/Standard/ProvisionedManaged), capacity, RAI policy (content filter), and advanced options (dynamic quota, priority processing, spillover). USE FOR: custom deployment, customize model deployment, choose version, select SKU, set capacity, configure content filter, RAI policy, deployment options, detailed deployment, advanced deployment, PTU deployment, provisioned throughput. DO NOT USE FOR: quick deployment to optimal region (use preset).
Unified Azure OpenAI model deployment skill with intelligent intent-based routing. Handles quick preset deployments, fully customized deployments (version/SKU/capacity/RAI policy), and capacity discovery across regions and projects. USE FOR: deploy model, deploy gpt, create deployment, model deployment, deploy openai model, set up model, provision model, find capacity, check model availability, where can I deploy, best region for model, capacity analysis. DO NOT USE FOR: listing existing deployments (use foundry_models_deployments_list MCP tool), deleting deployments, agent creation (use agent/create), project creation (use project/create).
Intelligently deploys Azure OpenAI models to optimal regions by analyzing capacity across all available regions. Automatically checks current region first and shows alternatives if needed. USE FOR: quick deployment, optimal region, best region, automatic region selection, fast setup, multi-region capacity check, high availability deployment, deploy to best location. DO NOT USE FOR: custom SKU selection (use customize), specific version selection (use customize), custom capacity configuration (use customize), PTU deployments (use customize).
This skill should be used when working with LaminDB, an open-source data framework for biology that makes data queryable, traceable, reproducible, and FAIR. Use when managing biological datasets (scRNA-seq, spatial, flow cytometry, etc.), tracking computational workflows, curating and validating data with biological ontologies, building data lakehouses, or ensuring data lineage and reproducibility in biological research. Covers data management, annotation, ontologies (genes, cell types, diseases, tissues), schema validation, integrations with workflow managers (Nextflow, Snakemake) and MLOps platforms (W&B, MLflow), and deployment strategies.
Latch platform for bioinformatics workflows. Build pipelines with Latch SDK, @workflow/@task decorators, deploy serverless workflows, LatchFile/LatchDir, Nextflow/Snakemake integration.
Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.
Take matlab/matlab-secure-credentials from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.