بنقرة واحدة
env-check
Validates current environment variables against .env.example requirements
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Validates current environment variables against .env.example requirements
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Analyzes the current session's token usage, pinpoints where tokens were wasted, and produces concrete optimization actions
Generates API documentation from route definitions (Express, Fastify, Hono, etc.)
Adds caching to expensive operations - Redis, in-memory, HTTP cache headers
Staged değişiklikleri analiz edip Conventional Commits formatında commit mesajı oluşturur
Reports cyclomatic complexity hotspots and refactoring suggestions
Finds unused functions, variables, exports, and dependencies across the codebase
| name | env-check |
| description | Validates current environment variables against .env.example requirements |
| user-invocable | true |
| allowed-tools | Bash Read |
| effort | low |
cat .env.example 2>/dev/null || cat .env.template 2>/dev/null
while IFS='=' read -r key _; do
[[ "$key" =~ ^#|^$ ]] && continue
if [[ -z "${!key}" ]]; then
echo "MISSING: $key"
else
echo " SET: $key"
fi
done < .env.example
Additional checks:
Output:
Environment Check:
✅ DATABASE_URL
✅ JWT_SECRET
❌ STRIPE_SECRET_KEY ← MISSING (required for payments)
⚠️ REDIS_URL ← Missing (optional, caching disabled)
Result: 1 required var missing - app will fail to start.