convex-docs

Query and manage a local Convex documentation mirror for backend development.

Updated Oct 22, 2025
One-click install
npx skills add https://github.com/Girolino/rs-news --skill convex-docs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: convex-docs
Source: https://github.com/Girolino/rs-news/tree/main/.claude/skills/convex-docs
Command: npx skills add https://github.com/Girolino/rs-news --skill convex-docs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill streamlines backend development by providing immediate access to comprehensive Convex documentation. It enables rapid implementation of real-time databases, serverless functions, authentication, and file storage without extensive manual research, saving developers time and reducing complexity.

Core Features & Use Cases

  • Real-time Backend Solutions: Get quick answers and code examples for reactive queries, mutations, actions, and file storage.
  • React Integration: Learn how to seamlessly integrate Convex with React hooks for dynamic frontend-backend communication.
  • Use Case: When adding a new feature requiring real-time data updates, ask "How do I create a reactive query in Convex?" to get the exact steps and code, allowing you to focus on application logic rather than documentation lookup.

Quick Start

Show me how to create a mutation in Convex.

Frequently Asked Questions about convex-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a real-time database with Convex and React?

Real-time databases in Convex sync data automatically between backend and frontend. Define queries and mutations in your Convex backend, then use React hooks to subscribe to live data updates in your components, eliminating manual refresh logic.

How do I create and run mutations in Convex?

Mutations in Convex are serverless functions that modify your database. Define them in your backend, call them from React components using Convex hooks, and they execute server-side with automatic client-side data synchronization on completion.

Can I use Convex for authentication in a Next.js app?

Convex supports authentication integration with Next.js through its client library and serverless functions. Configure auth providers, store user data in your Convex database, and protect queries and mutations using authentication checks in your backend.

What's the best way to handle file uploads with Convex?

Convex file storage lets you upload, store, and retrieve files from your backend. Use the file storage API in serverless functions to handle uploads from your React frontend, storing file references in your database for retrieval.

Do I need additional tools to query a Convex database offline?

This Skill provides a local documentation mirror with 42 docs covering database queries, mutations, and authentication. Access offline guides and code examples without internet, enabling reference during development without external lookups.

How do serverless functions work in Convex for backend logic?

Convex serverless functions execute queries, mutations, and actions on your backend without managing infrastructure. Define functions that read/write your database or call external APIs, invoke them from React, and Convex handles scaling and execution.