ワンクリックで
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