get an env var, fetch a secret, missing env var, missing token/API key, load secrets from Infisical, infisical. Fetch secrets from the team's Infisical workspace into the shell environment so subsequent commands can use them.
npx skills add https://github.com/Devin-AXIS/iPolloWork --skill get-env-var
Fetch a secret from the team's Infisical workspace into the current shell so the next command can use it.
BLOB_READ_WRITE_TOKEN.brew install infisical/get-cli/infisical.infisical user get; if it fails, run infisical login and complete the browser flow.INFISICAL_TOKEN from a machine identity; the CLI skips login when it is present..infisical.json (workspaceId: "e9f4542a-8714-46c3-a8fd-99d8cb370aeb", empty defaultEnvironment). From the repo root, infisical defaults to the dev environment slug when --env is omitted.Run from the repo root:
export NAME="$(infisical secrets get NAME --plain --silent)"
NAME with the secret name.--env <slug> for a non-default environment; this repo defaults to dev.--path /some/folder when secrets are organized in folders.Run the command through Infisical so all project secrets are available only to that process:
infisical run -- <command>
--plain inside command substitution, as in export NAME="$(...)".Take devin-axis/get-env-var 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.
The instructions reference brew.
Without those the skill loads but fails at the first command.