Coding
PromptBeginner5 minmarkdown
Nano Banana Pro
Agent skill for nano-banana-pro
6
Project-wide agentic rules referencing CLAUDE.md guides and Convex rules for consistent frontend/backend development
Sign in to like and favorite skills
These rules summarize and enforce the conventions from your CLAUDE guides and Convex rules across the entire repo.
Authoritative docs to consult while coding:
src/components/ui/.convex/.@/* for all src imports.npm run convex:dev continuously.npm run dev in a separate terminal.NEXT_PUBLIC_CONVEX_URL is set in .env.local for the client.npm run convex:deploy.convex/schema.ts using defineSchema/defineTable.convex/_generated/server:
query, mutation, actioninternalQuery, internalMutation, internalActionargs validators and returns (use v.null() when needed).convex/ and call via api.*/internal.*.withIndex over .filter(); avoid table scans.src/app/layout.tsx via src/app/providers/convex-provider.tsx.convex/react hooks and api references from convex/_generated/api.src/components/ui/; follow design tokens and typography (JetBrains Mono) in src/app/globals.css.convex/<feature>.ts with public/internal functions grouped by feature.convex/http.ts using httpAction and httpRouter.src/app/providers/.src/lib/.any and unsafe casts.When in doubt, consult the linked guides: