convex-tanstack
✓Comprehensive guide for building full-stack applications with Convex and TanStack Start. This skill should be used when working on projects that use Convex as the backend database with TanStack Start (React meta-framework). Covers schema design, queries, mutations, actions, authentication with Better Auth, routing, data fetching patterns, SSR, file storage, scheduling, AI agents, and frontend patterns. Use this when implementing features, debugging issues, or needing guidance on Convex + TanStack Start best practices.
Installation
SKILL.md
This skill provides guidance for building reactive, real-time full-stack applications using Convex (reactive backend-as-a-service) with TanStack Start (full-stack React meta-framework). The stack provides live-updating queries, type-safe end-to-end development, SSR support, and automatic cache invalidation.
| import { useQuery } from 'convex/react' | import { useQuery } from 'convex-helpers/react/cache' | | if (id) useQuery(...) | useQuery(..., id ? {...} : "skip") | | .filter(x => x.field === val) | .withIndex("byfield", q => q.eq("field", val)) | | Action with ctx.db | Use ctx.runQuery/runMutation | | count || 0 | count ?? 0 (0 is falsy) |
| references/01-setup.md | Project setup, config files, environment variables | | references/02-router.md | Router setup, root route, file-based routing, layouts | | references/03-auth.md | Better Auth setup, sign up/in/out, protected routes, SSR auth | | references/04-data-fetching.md | useQuery, useSuspenseQuery, mutations, loaders, prefetching |
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/sstobo/convex-skills --skill convex-tanstack- Source
- sstobo/convex-skills
- Category
- {}Data Analysis
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is convex-tanstack?
Comprehensive guide for building full-stack applications with Convex and TanStack Start. This skill should be used when working on projects that use Convex as the backend database with TanStack Start (React meta-framework). Covers schema design, queries, mutations, actions, authentication with Better Auth, routing, data fetching patterns, SSR, file storage, scheduling, AI agents, and frontend patterns. Use this when implementing features, debugging issues, or needing guidance on Convex + TanStack Start best practices. Source: sstobo/convex-skills.
How do I install convex-tanstack?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/sstobo/convex-skills --skill convex-tanstack Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/sstobo/convex-skills
Details
- Category
- {}Data Analysis
- Source
- skills.sh
- First Seen
- 2026-02-01