Hi - I answer from the OpenSmartRoute documentation: routing, the API, plans and quotas, self-hosting. Ask away, or open a support ticket if you need a person.
Grounded in the docs - follow a source before acting on it.
convex-env - Skill - OpenSmartRoute
Skillv1.0.0
convex-env
Set and wire Convex deployment env vars / secrets for the app.
Imported from get-convex/templates (template-nextjs-clerk-shadcn/.claude/skills/convex-env/SKILL.md). Install upstream with npx skills add get-convex/templates --skill convex-env. Copyright stays with the author.
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.
Use it
Copy one of these into your project. Installing also returns the manifest and these snippets.
# after Install: the listing is in your workspace's routing pool - a plan picks it for its slot
curl -s -X POST https://api.opensmartroute.ai/api/v1/route -H 'Authorization: Bearer $OSR_API_KEY' -H 'Content-Type: application/json' -d '{"text": "...", "plan": true}'
Manifest
An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.
get-convex-templates-convex-env.ocm.jsonjson
{
"ocm": "1",
"id": "get-convex-templates-convex-env",
"kind": "skill",
"name": "convex-env",
"description": "Set and wire Convex deployment env vars / secrets for the app.",
"publisher": "get-convex",
"version": "1.0.0",
"capabilities": {
"domains": [
"general"
],
"tags": [
"skill-md",
"github"
],
"languages": [
"en"
]
},
"quality_prior": 0.6,
"examples": [
"Set and wire Convex deployment env vars / secrets for the app."
],
"primary": false,
"metadata": {
"source": {
"provider": "github",
"repository": "https://github.com/get-convex/templates",
"path": "template-nextjs-clerk-shadcn/.claude/skills/convex-env/SKILL.md",
"ref": "aed1ce4bbae2dc36c05e95d7cc06d334705ee0ff",
"url": "https://github.com/get-convex/templates/blob/aed1ce4bbae2dc36c05e95d7cc06d334705ee0ff/template-nextjs-clerk-shadcn/.claude/skills/convex-env/SKILL.md",
"key": "get-convex/templates/template-nextjs-clerk-shadcn/.claude/skills/convex-env/SKILL.md"
}
},
"instructions": "<!-- GENERATED from convex-agents content/capabilities/env.json — do not edit by hand. -->\n\n# Manage env vars + secrets\n\nStore secrets as Convex deployment env vars (npx convex env set), read them with process.env in actions, never commit them.\n\n## Workflow\n\n1. `npx convex env set KEY value` (per deployment).\n2. Read via process.env.KEY inside actions (not queries/mutations).\n3. Never hardcode or commit secrets; add to .env.local only for local.\n4. Confirm with `npx convex env list`.\n\n## Rules\n\n- Secrets live in Convex env vars, never in code or git.\n- process.env only in actions ('use node' i",
"cost": {
"context_tokens": 170
}
}
Fetch it by URL: GET /api/v1/registry/get-convex-templates-convex-env/manifest?version=1.0.0
Reviews
Star ratings from people who tried it. One review per account; edit yours any time.
No reviews yet. Install it, try it, and be the first to rate it.