get-convex/agent-skills913 installs
convex-env
Set and wire Convex deployment env vars / secrets for the app.
How do I install this agent skill?
npx skills add https://github.com/get-convex/agent-skills --skill convex-envIs this agent skill safe to install?
- Gen Agent Trust Hubpass
This skill provides documentation and best practices for managing environment variables and secrets in Convex applications using the standard CLI. No security issues were detected.
- Socketpass
No alerts
- Snykpass
Risk: LOW · No issues
What does this agent skill do?
<!-- GENERATED from convex-agents content/capabilities/env.json — do not edit by hand. -->
Manage env vars + secrets
Store secrets as Convex deployment env vars (npx convex env set), read them with process.env in actions, never commit them.
Workflow
npx convex env set KEY value(per deployment).- Read via process.env.KEY inside actions (not queries/mutations).
- Never hardcode or commit secrets; add to .env.local only for local.
- Confirm with
npx convex env list.
Rules
- Secrets live in Convex env vars, never in code or git.
- process.env only in actions ('use node' if needed), not queries/mutations.
- Different deployments need their own values.
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/get-convex/agent-skills/convex-env">View convex-env on skillZs</a>