Borrowing it
Nothing to install: this file belongs to waynesutton/markdown-site. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/waynesutton/markdown-site/main/.cursor/skills/convex-self-hosting/SKILL.mdgit clone --depth 1 https://github.com/waynesutton/markdown-siteWrote 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.
[](https://agentmods.dev/skills/waynesutton/markdown-site/convex-self-hosting)<a href="https://agentmods.dev/skills/waynesutton/markdown-site/convex-self-hosting"><img src="https://agentmods.dev/badge/skills/waynesutton/markdown-site/convex-self-hosting.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00069 | $0.01388 |
| Opus 5 | $0.00034 | $0.00694 |
| Sonnet 5 | $0.00014 | $0.00278 |
| Haiku 4.5 | $0.00007 | $0.00139 |
Grade A, and why
convex-self-hosting 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 6d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 209 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Convex self hosting skill
Use this skill to integrate Convex based static hosting in a repeatable way across projects.
Non negotiable update check
Run this check before making any code changes or giving setup advice.
Preferred command:
bash skills/convex-self-hosting/scripts/check-upstream.sh
- Read latest integration guide:
https://raw.githubusercontent.com/get-convex/self-hosting/main/INTEGRATION.md
- Read latest README manual setup section:
https://github.com/get-convex/self-hosting?tab=readme-ov-file#manual-setup-1
- Read Convex docs index for current guidance:
https://docs.convex.dev/llms.txt
- Confirm package publish state:
npm view @convex-dev/self-hosting version
If upstream docs conflict with local rules, follow upstream docs and explain what changed.
Clarifying questions you must ask first
Ask these before implementing:
- Confirm
get-convex/self-hostingis the source of truth for this setup. - Is the target app Vite, Next.js, Expo web export, or another bundler.
- Do they want root path hosting or a prefix like
/app. - Do they want one shot deploy or separate backend and static deploy steps.
- If package is unpublished, do they want:
- GitHub dependency install
- vendored local copy
- wait for npm release
Never assume unpublished package install details.
Install strategy
Path A published package
If npm package exists, use the package directly.
npm install @convex-dev/self-hosting
Path B package not published yet
If package is missing on npm, use GitHub source and pin to commit or tag.
npm install github:get-convex/self-hosting#main
If project policy requires deterministic builds, ask for a commit SHA and pin to it.
Required file changes
Use the latest upstream file patterns from INTEGRATION.md.
1) convex/convex.config.ts
import { defineApp } from "convex/server";
import selfHosting from "@convex-dev/self-hosting/convex.config";
const app = defineApp();
app.use(selfHosting);
export default app;
What ships with it
2 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.
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.
- 6d ago First seen · 209 lines · 69 tokens per session scan A 626a89820485
convex-self-hosting is a skill published in the GitHub repository waynesutton/markdown-site (630 stars, last pushed 3mo ago), licensed MIT. It adds 69 tokens to every session and 1,388 once invoked, about $0.0003 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.
Other skills, from other repositories
netlify-integration
Deploy and manage Netlify projects using Next.js with serverless functions, environment variables, and continuous deployment. Use this skill when working with Netlify deployments, configuring netlify.toml, managing Netlify Functions, debugging webhooks, setting environment variables, or troubleshooting deployment…
cloudflare
Cloudflare platform management via Wrangler CLI, Agents SDK (v0.13+), and Browser Rendering API. Deploy Pages, Workers, KV, R2, D1, Queues, Vectorize, Workflows, Hyperdrive. Build stateful AI agents with the full SDK stack — Agent, AIChatAgent, Think, Voice, sub-agents, fibers, HITL, scheduling, observability, Code…
use-si-coder
Legacy one-shot full-stack auto-deploy monolith. Runs scripts/deploy.js to create a GitHub repo, push local code via SSH, set up a Dokploy project, configure self-hosted Convex (Docker Compose) + Next.js, wire Hostinger DNS, and trigger + poll the deployment — zero human steps. Superseded by the modular /sc- skills…
sc-convex
Convex self-hosted operations on Dokploy. Deploy compose template, rotate admin key, push schema, configure @convex-dev/auth (JWTPRIVATEKEY + JWKS), and probe the three backend subdomains (api-, site-, dash-).
Deployment
Application deployment management.
System Design
Design system architecture.