Claude-skill-registry env-local
Generates .env.local file for local development environment variables. Contains developer-specific configuration like API URLs, ports, and feature flags. Gitignored for security.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/env-local" ~/.claude/skills/majiayu000-claude-skill-registry-env-local && rm -rf "$T"
manifest:
skills/data/env-local/SKILL.mdsource content
Environment Local Skill
Purpose
Generate .env.local file for local development environment configuration.
Output
Create the file:
.env.local
Notes
is used for local development environment variables.env.local- This file should be in
(never commit secrets).gitignore - Developers must replace
placeholders with actual values<> - Used by Vite to inject environment variables at build time
- All Vite env vars must be prefixed with
to be exposed to client codeVITE_ - NODE_ENV determines the build mode (development, production, test)