sc-vercel

sc-vercel is a skill for Claude Code, Codex from rahmanef63/si-coder-agent. It costs 105 tokens per session (1,892 once invoked), scanned A, original, MIT.

A deployment skill for hosting a Next.js frontend on Vercel with a Convex Cloud backend and an optional custom domain. Vercel is a managed web-hosting platform, while Convex Cloud provides the backend service.

In plain words
What is it for?
Use it to connect a GitHub repository, configure the Convex deployment key and build command, set up a domain, and deploy the frontend.
Why use it?
It coordinates project setup, environment configuration, DNS records, deployment, and readiness checks in one process.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/rahmanef63/si-coder-agent/sc-vercel
Any agent
npx skills add rahmanef63/si-coder-agent --skill sc-vercel
Clone the repo
git clone --depth 1 https://github.com/rahmanef63/si-coder-agent

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for sc-vercel

README.md
[![agentmods](https://agentmods.dev/badge/skills/rahmanef63/si-coder-agent/sc-vercel.svg)](https://agentmods.dev/skills/rahmanef63/si-coder-agent/sc-vercel)
Your own site
<a href="https://agentmods.dev/skills/rahmanef63/si-coder-agent/sc-vercel"><img src="https://agentmods.dev/badge/skills/rahmanef63/si-coder-agent/sc-vercel.svg" alt="Measured on agentmods" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,892 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00105 $0.01892
Opus 5 $0.00053 $0.00946
Sonnet 5 $0.00021 $0.00378
Haiku 4.5 $0.00011 $0.00189

Measured 4d ago against content hash 2fdae5710f0b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

sc-vercel scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/_shared.js, scripts/build-command.js, scripts/deploy.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/sc-vercel/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/sc-vercel — Vercel (online frontend)

Status: implemented (online path).

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"]

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. Build a team-aware Vercel client from VERCEL_TOKEN (+ optional VERCEL_TEAM_ID).
  2. Resolve the GitHub repo: --git-owner/--git-repo, else read origin from the local git remote.
  3. findOrCreateProject({ name, gitRepo, framework:'nextjs' }) — bind the repo on create.
  4. Set env vars: CONVEX_DEPLOY_KEY (type:'encrypted', Production only — it's a prod key). Do not set NEXT_PUBLIC_CONVEX_URL (injected by the build).
  5. Resolve the build command without overriding the repo: explicit --build-command → repo vercel.json → Bun/npm-aware Convex fallback. This lets repos such as Baton keep their own gated bun run build:auto contract.
  6. Add the custom domain/subdomain (tolerate 409 already-assigned).
  7. Read the exact required DNS from Vercel's domain config.
  8. Configure Hostinger DNS (TXT ownership challenge first if unverified, then the A/CNAME pointing record), or print the records to add manually if no HOSTINGER_API_TOKEN.
  9. Trigger the first deploy (git-linked projects auto-deploy on push; force the initial one).
  10. Poll getDeployment every 4s until readyState ∈ {READY, ERROR, CANCELED}.
  11. Soft-poll DNS propagation (misconfigured === false) up to ~60s — never hard-fail (cert/record can lag).
  12. Print summary: project id, deployment URL, custom domain, DNS record applied, Convex Cloud URL.

Read the full file on GitHub · 113 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 113 lines · 105 tokens per session scan A 2fdae5710f0b

Subscribe to this mod's changes

sc-vercel is a skill published in the GitHub repository rahmanef63/si-coder-agent (14 stars, last pushed 6d ago), licensed MIT. It adds 105 tokens to every session and 1,892 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

convex-self-hosting

Integrate Convex static self hosting into existing apps using the latest upstream instructions from get-convex/self-hosting every time. Use when setting up upload APIs, HTTP routes, deployment scripts, migration from external hosting, or troubleshooting static deploy issues across React, Vite, Next.js, and other…

waynesutton/markdown-site · 69 tokens

setup-convex-worktrees

Set up, repair, or explain isolated Convex development deployments for Git worktrees and coding agents, including per-worktree env bindings, temporary deployment creation, baseline data seeding, frontend port isolation, and AGENTS.md guardrails. Use when separate checkouts are clobbering one shared Convex dev…

mackinleysmith/convex-worktree-isolation · 95 tokens

deployhq

Deploy code, manage servers, and automate infrastructure via the DeployHQ CLI (dhq). Use when the user wants to deploy, check deployment status, manage projects/servers, or interact with the DeployHQ platform.

deployhq/deployhq-cli · 46 tokens

Convex Cron Jobs

Scheduled function patterns for background tasks including interval scheduling, cron expressions, job monitoring, retry strategies, and best practices for long-running tasks.

powroom/flins · 31 tokens

cloud-architect

Designs cloud architectures, creates migration plans, generates cost optimization recommendations, and produces disaster recovery strategies across AWS, Azure, and GCP. Use when designing cloud architectures, planning migrations, or optimizing multi-cloud deployments. Invoke for Well-Architected Framework, cost…

Jeffallan/claude-skills · 71 tokens

rule

Skill "rule" from x-cmd/x-cmd, covering rule — rules to rule, 核心命令, 规则文件格式, 示例 and 验证规则文件格式.

x-cmd/x-cmd · 0 tokens