env-setup

env-setup is a skill for Claude Code, Codex from mgiovani/cc-arsenal. It costs 125 tokens per session (1,634 once invoked), scanned A, original, MIT.

A codebase utility for managing environment variables, which are settings supplied outside the source code. It can create or update a sample `.env.example` file, check whether required settings are present, and look for exposed secrets.

In plain words
What is it for?
Use it to scan supported codebases, sync `.env.example`, check `.env` completeness, verify `.gitignore` handling, and report leaked variable names with file locations.
Why use it?
It helps keep configuration documentation aligned with what the code actually reads. It also helps identify credentials that may have been placed in environment files or version history.

Skill for Claude CodeCodex

Part of the cc-arsenal plugin — 53 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/mgiovani/cc-arsenal/env-setup
Any agent
npx skills add mgiovani/cc-arsenal --skill env-setup
Clone the repo
git clone --depth 1 https://github.com/mgiovani/cc-arsenal

Made for: Claude Code, Codex.

Or install cc-arsenal, the plugin that ships this one along with the rest of its 53 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for env-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/mgiovani/cc-arsenal/env-setup.svg)](https://agentmods.dev/skills/mgiovani/cc-arsenal/env-setup)
Your own site
<a href="https://agentmods.dev/skills/mgiovani/cc-arsenal/env-setup"><img src="https://agentmods.dev/badge/skills/mgiovani/cc-arsenal/env-setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,634 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00125 $0.01634
Opus 5 $0.00063 $0.00817
Sonnet 5 $0.00025 $0.00327
Haiku 4.5 $0.00013 $0.00163

Measured 4d ago against content hash 4b4d56167bc5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

env-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/env-setup/SKILL.md · 149 lines

How it starts

The opening of the file, as written. The whole thing — 149 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Env Setup

Scan the codebase for environment variable usage, generate or update .env.example, validate .env completeness, and detect leaked secrets.

Anti-Hallucination Guidelines

Only report variables that are actually found in the code:

  1. Grep before reporting: Never invent variable names; only list what grep actually returns
  2. Read .env.example before writing: Preserve existing entries; only add/update what changed
  3. No actual secrets: .env.example must only contain placeholder values (e.g., your_api_key_here)
  4. Verify .gitignore: Actually read the file before claiming .env is ignored
  5. Never echo a found secret value: when Phase 6 flags a leaked secret, report the variable name and file:line only. Never print, quote, or write the actual value into chat output, a report file, or anywhere else: the scan's job is to locate leaks, not to create a second one.

Workflow

Phase 1: Scan Codebase

Grep for environment variable usage matching the project's actual language/framework: see references/scan-patterns.md for the ready-to-run pattern per language (Node/TS, Python, Ruby, Rust, Java/Kotlin, Docker Compose, client-exposed prefixes). Only run the pattern(s) for stacks present in the repo.

Also scan:

  • .env.example (existing entries to preserve)
  • config/ directory for config files referencing env vars
  • Framework config files (next.config.js, vite.config.ts, etc.)

Phase 2: Categorize Variables

Group discovered variables by prefix/service: see the service prefix table in references/scan-patterns.md for the standard groupings (Database, Cache, Auth, OAuth, Stripe, AWS, Email, App config, Client vars).

Classify each variable:

  • Required vs Optional (required if no default/fallback in code)
  • Secret vs Config (secret if it contains key/secret/password/token in name)
  • Client-exposed (NEXT_PUBLIC_*, VITE_*: flag if contains secrets)

Phase 3: Compare with .env.example

Read existing .env.example (if it exists):

Read the full file on GitHub · 149 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 149 lines · 125 tokens per session scan A 4b4d56167bc5

Subscribe to this mod's changes

env-setup is a skill published in the GitHub repository mgiovani/cc-arsenal (7 stars, last pushed 4d ago), licensed MIT. It adds 125 tokens to every session and 1,634 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.