Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Arete-Consortium/ai-skills --skill envコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Intelligent CI failure diagnosis and guided remediation for GitHub Actions, GitLab CI, and local builds
Pre-execution mapping of codebases, document collections, or problem spaces. Runs BEFORE any Gorgon workflow to give all agents shared situational awareness
Investigative methodology for analyzing document collections — provenance analysis, anomaly detection, redaction detection, and cross-document validation
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: