Agent Skills
› openclaw/clawhub
› convex-env
convex-env
GitHub用于管理 Convex 部署的环境变量和密钥,支持设置、读取及验证,确保敏感信息不硬编码或提交至代码库。
Trigger Scenarios
需要配置应用环境变量
需要设置或更新部署密钥
Install
npx skills add openclaw/clawhub --skill convex-env -g -y
SKILL.md
Frontmatter
{
"name": "convex-env",
"description": "Set and wire Convex deployment env vars \/ secrets for the app."
}
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.
Version History
- d6a8c68 Current 2026-08-20 02:43


