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.
npx agentmods add skills/rahmanef63/si-coder-agent/sc-convexnpx skills add rahmanef63/si-coder-agent --skill sc-convexgit clone --depth 1 https://github.com/rahmanef63/si-coder-agentWrote 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/rahmanef63/si-coder-agent/sc-convex)<a href="https://agentmods.dev/skills/rahmanef63/si-coder-agent/sc-convex"><img src="https://agentmods.dev/badge/skills/rahmanef63/si-coder-agent/sc-convex.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.00055 | $0.02588 |
| Opus 5 | $0.00028 | $0.01294 |
| Sonnet 5 | $0.00011 | $0.00518 |
| Haiku 4.5 | $0.00006 | $0.00259 |
Grade B, and why
sc-convex scanned grade B with 1 finding 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 yesterday.
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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
> `SC_DOCKER_SUDO` — `1` force sudo for docker, `0` forbid, unset = auto-detect (used by `dockerExec`, `lib/proc.js`). How it starts
The opening of the file, as written. The whole thing — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/sc-convex — Convex on Dokploy
Use this skill when the user wants to deploy, debug, or maintain a self-hosted Convex backend running on Dokploy. The repo lives at https://github.com/rahmanef63/si-coder-agent.
Connection-safe local execution
Credential-dependent local helper scripts must run through sc run -- ... when their Dokploy/Convex access lives in SI-Coder named connections. This lets one child process receive the selected provider connections without writing them to the parent shell. The command examples below show script arguments; prefix them with sc run -- unless the caller already provides the required environment.
NEVER ask the user to run Convex CLI by hand
For self-hosted Convex projects the Convex CLI (v1.27+) auto-detects the backend from .env.local (CONVEX_SELF_HOSTED_URL + CONVEX_SELF_HOSTED_ADMIN_KEY). The schema/function push happens automatically via the sc-git pre-push hook installed by /sc-all. Do not instruct the user to run npx convex deploy, pnpm convex:deploy, convex:push, or any Convex CLI command interactively. If the hook is not installed, install it yourself (node ~/.claude/skills/sc-git/scripts/hook.js install --repo <name>) instead of asking.
If the hook is genuinely unable to deploy (admin key invalid, backend unreachable), debug it with scripts/check-backend.js and fix root cause — do not punt the convex CLI call to the user.
Pre-requisites
DOKPLOY_API_URL,DOKPLOY_API_KEY— Dokploy adminCONVEX_ADMIN_KEY(or generated on the fly from the running container)- Optional
HOSTINGER_API_TOKENfor DNS A-record automation
If anything is missing, route the user to /sc-onboarding.
CORE MANDATES (LEARNED LESSONS)
- Self-Hosted Convex by default: never silently swap to Clerk. ALWAYS use
@convex-dev/authfor new projects unless the user explicitly asks for Clerk. convex/_generatedis checked in: never runnpx convex codegeninsideDockerfile. Generate locally withnpx convex dev --onceand commit the folder.- Admin Key Sync Rule: when generating or rotating the admin key, update BOTH the Dokploy Compose env (
CONVEX_ADMIN_KEY) and the repo's local env file in a single pass. Never leave them out-of-sync. - PEM via REST, not CLI:
npx convex env set JWT_PRIVATE_KEY "-----BEGIN..."breaks because--is parsed as a flag. Usescripts/set-auth-env.js(admin REST/api/update_environment_variables) instead. NEXT_PUBLIC_CONVEX_URLat build time:NEXT_PUBLIC_*is inlined atnext build. If the Dockerfile uses a dummy URL, the deployed JS connects to the wrong server — see## Dockerfile patternbelow.- No Scrypt/bcrypt password hashing: Dokploy proxy kills WebSocket at >60s. Use PBKDF2 (10k iter ≈ 50ms) via WebCrypto — see
## Password hashingbelow. - Route
auth:*actions via HTTP: WebSocket reconnect mid-flight aborts in-flight actions. Wrap the Convex client soauth:*goes viaConvexHttpClient— see## Frontend patternbelow.
What ships with it
4 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.
- yesterday Changed · +10 lines 4c583f638255
- 6d ago First seen · 162 lines · 55 tokens per session scan B 700e1a3b0033
sc-convex is a skill published in the GitHub repository rahmanef63/si-coder-agent (12 stars, last pushed today), licensed MIT. It adds 55 tokens to every session and 2,588 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
django-storages-s3
Use when configuring Django to store static and media files on AWS S3 with django-storages. Invoke when working with the STORAGES setting, S3 buckets, presigned URLs, CloudFront, or boto3-backed file storage in settings.py. Configures the Django 4.2+ STORAGES dict, public/private custom backends, presigned GET/POST…
sns
AWS SNS notification service for pub/sub messaging. Use when creating topics, managing subscriptions, configuring message filtering, sending notifications, or setting up mobile push.
hono-api-scaffolder
Scaffold Hono API routes for Cloudflare Workers. Produces route files, middleware, typed bindings, Zod validation, error handling, and APIENDPOINTS.md documentation. Use after a project is set up with cloudflare-worker-builder or vite-flare-starter, when you need to add API routes, create endpoints, or generate API…
cloudflare-worker-builder
Scaffold and deploy Cloudflare Workers with Hono routing, Vite plugin, and Static Assets. Describe project, scaffold structure, configure bindings, deploy. Use whenever the user wants to create a Worker project, set up Hono on Cloudflare, configure D1 / R2 / KV / Queues bindings, or troubleshoot Worker export syntax…
cloudflare-workers
Rapid development with Cloudflare Workers - build and deploy serverless applications on Cloudflare's global network. Use when building APIs, full-stack web apps, edge functions, background jobs, or real-time applications. Triggers on phrases like "cloudflare workers", "wrangler", "edge computing", "serverless…
aws-serverless
Use when building serverless systems on AWS. Covers Lambda design, cold starts, event-driven patterns with EventBridge and SQS, idempotency, step functions, and the limits that shape the architecture.