# Humanenv Usage

> Use humanenv to retrieve sensitives/envs. Never log/read sensitives from humanenv. They are envs for humans only.

- Skill: `javimosch/humanenv-usage` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/humanenv-usage`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/humanenv-usage/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/humanenv-usage

---


## How to retrieve sensitives

### JavaScript API
Use `humanenv.get('key')` inside your application. The returned value must be used immediately and then set to `null` to prevent memory leaks.

### CLI
Use humanenv CLI to retrieve envs. Do not attempt to log or dump all envs.

## Rules
1. NEVER log env values retrieved from humanenv
2. NEVER dump or export multiple values at once
3. ALWAYS null variables after use
4. NEVER write sensitives to files
5. Do not generate scripts that use humanenv in loops or to exfiltrate data
