Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Arete-Consortium/ai-skills --skill env명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | env |
| description | Environment Management |
| lifecycle | experimental |
Manage .env files, secrets, and environment configuration.
/env # Audit current env setup
/env --init # Create .env from .env.example
/env --check # Verify all required vars set
/env --rotate KEY # Rotate a secret
# Database
DATABASE_URL=postgresql://user:pass@localhost/db
# API Keys
API_KEY=sk-xxxxxxxxxxxx
SECRET_KEY=your-secret-key-here
# Feature Flags
DEBUG=true
LOG_LEVEL=debug
# Database
DATABASE_URL=postgresql://user:password@localhost/dbname
# API Keys (get from dashboard)
API_KEY=
SECRET_KEY=
# Feature Flags
DEBUG=false
LOG_LEVEL=info
.env
.env.local
.env.*.local
*.pem
*.key
credentials.json
secrets/
# Environment Audit: [Project]
## Files
| File | Status | Notes |
|------|--------|-------|
| .env | Exists | 12 variables |
| .env.example | Missing | Should create |
| .gitignore | OK | .env excluded |
## Variables
### Required (Missing)
| Variable | Used In | Purpose |
|----------|---------|---------|
| `API_KEY` | api.py:23 | External API auth |
### Required (Set)
| Variable | Status | Validated |
|----------|--------|-----------|
| `DATABASE_URL` | Set | Valid URL format |
| `SECRET_KEY` | Set | Sufficient length |
### Optional
| Variable | Default | Current |
|----------|---------|---------|
| `DEBUG` | false | true |
| `LOG_LEVEL` | info | debug |
## Security Issues
- [ ] `.env` in .gitignore
- [x] No secrets in source code
- [ ] No secrets in git history
## Recommendations
1. Create `.env.example` with all variables
2. Add `API_KEY` to .env
3. Run `git log -p | grep -i secret` to check history
# Find env var usage in Python
import os
os.environ.get("VAR_NAME")
os.getenv("VAR_NAME")
# Find in Rust
std::env::var("VAR_NAME")
# Find in shell scripts
$VAR_NAME
${VAR_NAME}
When /env is invoked: