.cursor/skills/robel-auth/SKILL.md
Integrate and maintain Robelest Convex Auth in apps by always checking upstream before implementation. Use when adding auth setup, updating auth wiring, migrating between upstream patterns, or troubleshooting @robelest/convex-auth behavior across projects.
npx skillsauth add waynesutton/humanagent robel-authInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when a user asks to implement, update, or debug auth based on robelest/convex-auth.
This skill is designed to be copied into other repos.
Run this every time before proposing code or commands.
Preferred command:
bash .cursor/skills/robel-auth/scripts/check-upstream.sh
Manual checklist if script is unavailable:
main README:
https://raw.githubusercontent.com/robelest/convex-auth/main/README.mdrelease README:
https://raw.githubusercontent.com/robelest/convex-auth/release/README.mdhttps://github.com/robelest/convex-auth/compare/release...mainhttps://raw.githubusercontent.com/get-convex/self-hosting/main/INTEGRATION.mdhttps://github.com/get-convex/self-hostingIf main and release conflict, prefer the branch requested by the user. If unspecified, use release for stability and explain that choice.
Ask these before editing:
release or main.Never assume one install path.
npm view @robelest/convex-auth versionnpm install github:robelest/convex-auth#releasenpm install github:robelest/convex-auth#<commit-sha>If the project uses pnpm or bun, translate the same GitHub dependency pinning pattern.
When the user asks for clearer GitHub auth onboarding text, include this guidance in the README where OAuth providers are explained.
Required link:
https://github.com/settings/developersRecommended README content:
https://github.com/settings/developersSITE_URL)https://<deployment>.convex.site/api/auth/callback/githubAUTH_GITHUB_IDAUTH_GITHUB_SECRETSITE_URL is configured.Important implementation note for this repo:
/api/auth/callback/github.AUTH_GITHUB_ID, AUTH_GITHUB_SECRET, and CONVEX_SITE_URL are present.Always verify exact API names from upstream before coding. API names can change over time.
Core files typically involved:
convex/convex.config.tsconvex/auth.tsconvex/http.tsExpected patterns to verify against upstream docs:
defineApp()Do not hardcode historical method names without checking current docs first.
When upgrading existing apps:
Use get-convex/self-hosting only when:
When needed, follow the latest upstream integration docs:
https://github.com/get-convex/self-hostinghttps://raw.githubusercontent.com/get-convex/self-hosting/main/INTEGRATION.mdBefore finishing, always report:
Never claim completion without these five items.
https://github.com/robelest/convex-authhttps://github.com/robelest/convex-auth/tree/releasehttps://raw.githubusercontent.com/robelest/convex-auth/main/README.mdhttps://raw.githubusercontent.com/robelest/convex-auth/release/README.mdhttps://github.com/get-convex/self-hostinghttps://raw.githubusercontent.com/get-convex/self-hosting/main/INTEGRATION.mdhttps://agentskills.io/homedocumentation
# Update project docs Use this skill after completing any feature, fix, or migration to keep the three core project tracking files in sync. Activate with: `@update` ## Step 1: Get real dates Run this first: ```bash git log --date=short -n 10 ``` Use actual commit dates. Never use placeholder dates or future months. ## Step 2: Update TASK.md Move completed items into `## Completed` with the date: ```markdown - [x] Feature name (YYYY-MM-DD) - [x] Sub-task detail - [x] Sub-task detail
tools
# Create a PRD Use this skill before any multi-file feature, architectural decision, or complex bug fix. Activate with: `@prd` ## Location and naming - All PRDs live in `prds/` folder - File name: `prds/<feature-or-problem-slug>.md` - Extension is always `.md`, not `.prd` - Use kebab-case for the filename (e.g., `prds/adding-email-auth.md`) ## Template Copy and fill in this template: ```markdown # [Feature or problem name] ## Summary 1-2 sentence description of what this is and why it m
development
Integrate Convex static self hosting into existing apps using the latest upstream instructions from get-convex/self-hosting every time. Use when setting up upload APIs, HTTP routes, deployment scripts, migration from external hosting, or troubleshooting static deploy issues across React, Vite, Next.js, and other frontends.
development
Use when multiple workflows duplicate the same operational logic, when deciding what belongs in actions vs shared services, or when refactoring repeated operational blocks across domain flows. Use when adding new features that share mechanics with existing ones.