Agent skills that teach AI coding agents (Claude Code,
Cursor, Codex, GitHub Copilot and others) to run commands with secrets from
Enkryptify instead of expecting a local .env file.
npx skills add enkryptify/skillsAdd -g to install globally so the skill applies to every project on your
machine instead of only the current one:
npx skills add enkryptify/skills -gThe skills CLI installs into all major
coding agents. Use -a to target specific ones, for example
-a claude-code -a cursor.
Once installed, your agent will:
- Detect that a project uses Enkryptify by looking for a committed
.enkryptify.jsonfile or an entry in~/.enkryptify/config.json, without ever fetching secrets to probe. - Prefix commands that need environment variables with
ek run --, so dev servers, tests, scripts and migrations get secrets injected for that single command only. - Check authentication with
ek whoamiand startek loginwhen needed. - Refuse to create
.envfiles, print secret values or write injected environment variables to disk.
| Skill | Description |
|---|---|
| enkryptify | Run commands with secrets injected from Enkryptify instead of .env files. |
Every skill is a plain folder with a SKILL.md. If you prefer not to use the
skills CLI, copy the folder into your agent's skills directory, for example
.claude/skills/enkryptify/ for Claude Code.
The skill assumes the Enkryptify CLI
is installed and the project is set up once with ek login and ek setup.
See the quickstart.