Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Review Summary by QodoUpgrade Convex to 1.35.1 and add comprehensive AI guidance with agent skills
WalkthroughsDescription• **Upgraded Convex framework to version 1.35.1** across all workspace packages (package.json, pnpm-lock.yaml, and individual app/package dependencies) • **Added comprehensive AI guidance and agent skills** for Convex development: - Core guidelines covering function registration, HTTP endpoints, validators, pagination, schema design, authentication, and testing patterns - Five new agent skills: convex-quickstart, convex-setup-auth, convex-create-component, convex-migration-helper, and convex-performance-audit - Each skill includes detailed reference guides for specific workflows (Auth0, Clerk, WorkOS, Convex Auth, migrations, performance optimization) • **Enhanced documentation** with new AGENTS.md and CLAUDE.md files directing developers to AI guidance • **Added agent skill configurations** with OpenAI interface definitions for automatic skill invocation • **Updated roadmap** with UI improvements and AI agent enhancements • **Locked agent skills versions** in skills-lock.json for reproducible AI guidance Diagramflowchart LR
A["Convex 1.33.0"] -- "upgrade" --> B["Convex 1.35.1"]
C["Agent Skills"] -- "install" --> D["AI Guidelines & References"]
D -- "enable" --> E["AI-Assisted Development"]
B --> E
F["Documentation"] -- "enhance" --> E
File Changes1. convex/_generated/ai/guidelines.md
|
Code Review by Qodo
1. convex-quickstart uses npm/npx
|
| npm create convex@latest my-app -- -t react-vite-shadcn | ||
| cd my-app | ||
| npm install |
There was a problem hiding this comment.
1. convex-quickstart uses npm/npx 📘 Rule violation § Compliance
The new Convex quickstart skill instructs users to run npm/npx commands (e.g., npm create, npm install, npm run) instead of pnpm, violating the repo’s package-manager standard. This can cause inconsistent installs/lockfiles and diverging developer workflows.
Agent Prompt
## Issue description
The new documentation uses `npm`/`npx` commands for scaffolding, installing deps, and running scripts, but this repo requires `pnpm` exclusively.
## Issue Context
Update the commands to `pnpm` equivalents (e.g., `pnpm create ...` / `pnpm dlx ...`, `pnpm install`, `pnpm run dev`, and a `pnpm`-based way to run the Convex CLI).
## Fix Focus Areas
- .agents/skills/convex-quickstart/SKILL.md[23-26]
- .agents/skills/convex-quickstart/SKILL.md[49-71]
- .agents/skills/convex-quickstart/SKILL.md[92-96]
- .agents/skills/convex-quickstart/SKILL.md[128-136]
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
No description provided.