nexusai.gg: Skill for Codex

.agents/skills/convex-quickstart/SKILL.md

convex-quickstart is a skill for Codex from fiinytid/nexusai.gg. It costs 43 tokens per session (3,622 once invoked), scanned A, original, MIT.

A setup guide for adding Convex, a backend service for storing data and running application functions, to a web app. It covers new Convex projects and existing React, Next.js, Vue, Svelte, or similar apps.

In plain words
What is it for?
Use it to scaffold a new Convex app or add Convex to an existing one, configure the frontend and environment variables, run the local Convex development setup, and verify the project.
Why use it?
It gives a defined starting path for installing Convex, connecting it to the frontend, and checking that the database schema and backend functions are valid. This avoids guessing which setup commands and environment values are needed.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is fiinytid/nexusai.gg's own configuration. It tells Codex how to work on nexusai.gg itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything nexusai.gg configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is import { api } from "../convex/_generated/api";.

Reuse

Borrowing it

Nothing to install: this file belongs to fiinytid/nexusai.gg. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/fiinytid/nexusai.gg/main/.agents/skills/convex-quickstart/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/fiinytid/nexusai.gg

Made for: 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 convex-quickstart

README.md
[![agentmods](https://agentmods.dev/badge/skills/fiinytid/nexusai.gg/convex-quickstart/github.svg)](https://agentmods.dev/skills/fiinytid/nexusai.gg/convex-quickstart)
Your own site
<a href="https://agentmods.dev/skills/fiinytid/nexusai.gg/convex-quickstart"><img src="https://agentmods.dev/badge/skills/fiinytid/nexusai.gg/convex-quickstart/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for convex-quickstart

Your own site · 80×15
<a href="https://agentmods.dev/skills/fiinytid/nexusai.gg/convex-quickstart"><img src="https://agentmods.dev/badge/skills/fiinytid/nexusai.gg/convex-quickstart.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,622 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00043 $0.03622
Opus 5 $0.00022 $0.01811
Sonnet 5 $0.00009 $0.00724
Haiku 4.5 $0.00004 $0.00362

Measured 9d ago against content hash 3cdc8fc0c306, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

convex-quickstart 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 9d 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.

.agents/skills/convex-quickstart/SKILL.md · 452 lines

How it starts

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

Convex Quickstart

Set up a working Convex project as fast as possible.

When to Use

  • Starting a brand new project with Convex
  • Adding Convex to an existing React, Next.js, Vue, Svelte, or other app
  • Scaffolding a Convex app for prototyping

When Not to Use

  • The project already has Convex installed and convex/ exists - just start building
  • You only need to add auth to an existing Convex app - use the convex-setup-auth skill

Workflow

  1. Determine the starting point: new project or existing app
  2. If new project, pick a template and scaffold with npm create convex@latest
  3. If existing app, install convex and wire up the provider
  4. Run npx convex dev --once to provision a local anonymous deployment, push the current convex/ code, typecheck it, and regenerate types — all in one shot, exiting cleanly. The output tells the agent whether the schema and functions are valid.
  5. Ask the user (or, for cloud agents, start in the background) npm run dev — Convex templates wire the watcher and the frontend into a single command. If the project has no combined dev script, use npx convex dev for the watcher and run the frontend separately.
  6. Verify the setup works

Use the official scaffolding tool. It creates a complete project with the frontend framework, Convex backend, and all config wired together.

Pick a template

Template Stack
react-vite-shadcn React + Vite + Tailwind + shadcn/ui
nextjs-shadcn Next.js App Router + Tailwind + shadcn/ui
react-vite-clerk-shadcn React + Vite + Clerk auth + shadcn/ui
nextjs-clerk Next.js + Clerk auth
nextjs-convexauth-shadcn Next.js + Convex Auth + shadcn/ui
nextjs-lucia-shadcn Next.js + Lucia auth + shadcn/ui
bare Convex backend only, no frontend

Read the full file on GitHub · 452 lines

Files

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.

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. 9d ago First seen · 452 lines · 43 tokens per session scan A 3cdc8fc0c306

Subscribe to this mod's changes

convex-quickstart is a skill published in the GitHub repository fiinytid/nexusai.gg (2 stars, last pushed 1mo ago), licensed MIT. It adds 43 tokens to every session and 3,622 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

roblox-open-cloud

Roblox Open Cloud REST API for accessing data stores, assets, universes, places, users, groups, subscriptions, and Luau execution from outside the engine or via HttpService. Covers authentication (API keys, OAuth 2.0, avoiding legacy cookie auth), scopes and least-privilege, IP allowlists, key rotation and the 60-day…

nonlooped/roblox-suite · 128 tokens

discord-webhook

Posts a message to a Discord webhook. Use when the user asks to send a webhook, notify a channel, or post an update to Discord. The webhook URL is read from the .env file at the project root. Invoke with: /discord-webhook.

dig1t/skills · 59 tokens

mem0-oss-to-platform

Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…

mem0ai/mem0 · 273 tokens

agui-dotnet-protobuf

Use the protobuf wire transport (instead of the default Server-Sent Events) for an AG-UI connection with the AG-UI .NET SDK — a compact binary event stream negotiated via the Accept header. USE FOR: making an AGUIChatClient prefer protobuf by wiring an AGUIEventStreamHandler with ProtobufEventStreamFormatter (then…

ag-ui-protocol/ag-ui · 162 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens

fastapi-router-py

Create FastAPI routers with CRUD operations, authentication dependencies, and proper response models. Use when building REST API endpoints, creating new routes, implementing CRUD operations, or adding authenticated endpoints in FastAPI applications.

microsoft/skills · 46 tokens