원클릭으로
security-env
Environment variables and secrets. Use when handling API keys, .env, .gitignore, or avoiding hardcoded secrets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Environment variables and secrets. Use when handling API keys, .env, .gitignore, or avoiding hardcoded secrets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Git commit messages and workflow. Use when writing commit messages, creating branches, or discussing PR/rebase/squash workflow.
Python virtual environments and dependencies. Use when creating venv, installing packages, running scripts, or fixing path/activation issues.
README and project documentation structure. Use when writing or updating README.md, docs, or project overview.
TypeScript and React best practices. Use when writing or refactoring .ts/.tsx files, React components, hooks, or type definitions.
Best practices for Remotion - Video creation in React
| name | security-env |
| description | Environment variables and secrets. Use when handling API keys, .env, .gitignore, or avoiding hardcoded secrets. |
| metadata | {"tags":"security, env, secrets, gitignore"} |
.env、.env.example.gitignore 已忽略敏感文件process.env.VITE_*、import.meta.env.*、os.environ 等)或本地配置文件.env.example 列出所需变量名与说明,不含真实值.gitignore 应包含:.env、.env.local、*.pem、含密钥的配置文件VITE_API_URL、VITE_PUBLIC_KEY(仅可暴露的)process.env.API_KEY,从 .env 加载(如 dotenv)os.environ.get("SECRET_KEY") 或 python-dotenv