sc-vercel

Solid

Vercel deploy as online frontend host. Create project bound to a GitHub repo, set CONVEX_DEPLOY_KEY, set build command to couple Convex Cloud deploy + Next.js build (injects NEXT_PUBLIC_CONVEX_URL), add a custom domain or subdomain, configure Hostinger DNS (CNAME for subdomain / A for apex) from Vercel's required config, trigger + poll deploy. Pairs with /sc-convex-cloud for the Convex Cloud backend.

Web & Frontend 12 stars 2 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 85/100

Stars 20%
37
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# /sc-vercel — Vercel (online frontend) > **Status:** implemented (online path). ```mermaid flowchart TD A["/sc-vercel"] --> B["find/create Vercel project<br/>(bound to GitHub repo)"] B --> C["set CONVEX_DEPLOY_KEY (encrypted)"] C --> D["set coupled build cmd<br/>npx convex deploy --cmd 'npm run build'"] D --> E["add custom domain / subdomain"] E --> F["read required DNS from Vercel<br/>(array-normalized + IPv4 guard)"] F --> G["Hostinger DNS<br/>CNAME (sub) / A (apex)"] G --> H["trigger deploy + poll readyState<br/>(15-min cap, blip-tolerant)"] H --> I["live URL ✅<br/>NEXT_PUBLIC_CONVEX_URL injected at build"] ``` ## Connection-safe local execution When `VERCEL_TOKEN` is stored in a direct SI-Coder named connection, run this skill's credential-dependent helper through `sc run -- ...`: ```bash sc run -- node skills/sc-vercel/scripts/deploy.js --help ``` The plain `node ...` examples below are script-interface examples for callers that already supply the required environment. A Composio/native-MCP Vercel connection must execute through that external backend. ## When to use - You want Vercel's edge network for the Next.js frontend, with the Convex backend on **Convex Cloud** (managed). - You don't want to deal with a Dockerfile / Compose for the frontend. - The online counterpart to the self-hosted Dokploy path. Pair with `/sc-convex-cloud` for the backend. ## Scope (implemented) `scripts/deploy.js` is a single 12-step orchestrator: 1....

Details

Author
rahmanef63
Repository
rahmanef63/si-coder-agent
Created
5 months ago
Last Updated
2 days ago
Language
JavaScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

DevOps & Infrastructure Solid

sc-convex-cloud

Convex Cloud (managed) deploy operations. Run 'npx convex deploy' against a Cloud deployment using CONVEX_DEPLOY_KEY, output the injected NEXT_PUBLIC_CONVEX_URL, and probe the deployment (/version on *.convex.cloud + JWKS on *.convex.site). The online-path counterpart to /sc-convex (self-hosted on Dokploy).

12 Updated 2 days ago
rahmanef63
API & Backend Solid

sc-convex

Convex self-hosted operations on Dokploy. Deploy compose template, rotate admin key, push schema, configure @convex-dev/auth (JWT_PRIVATE_KEY + JWKS), and probe the three backend subdomains (api-, site-, dash-).

12 Updated 2 days ago
rahmanef63
Web & Frontend Listed

vercel-deploy

Ship a Next.js 16 App Router project to production on Vercel end-to-end: preview → smoke test → a *staged* production deployment (`vercel --prod --skip-domain`) that serves no traffic yet → `vercel promote` → domains and DNS, plus a rollback runbook. Requires `stack.framework` in {`next`, `monorepo`} and `phase >= feature_complete`; sets `phase = "deployed"` on success. Idempotent. Triggers on: "deploy", "ship it", "go live", "push to production", "manda in produzione", "attacca il dominio", "rollback the deploy". Not for: the Vercel project config — `vercel.json`, region, env-var matrix, monorepo root directory are `module-add deploy` (run it first); the pre-deploy gates (`vercel-doctor`, `compliance-audit`, `shadscan`); CI and git hooks (`module-add ci`); an Expo/RN app (`rn-eas-deploy`); an eve agent (`eve deploy`).

6 Updated today
lukedj78