convex-suggest

Đề xuất thành phần Convex phù hợp khi người dùng tự viết một mẫu mà nó đã giải quyết sẵn (crons, sharded-counter, rate-limiter, storage, search, presence, workflow, RAG, prosemirror-sync). Thụ động — chỉ đề xuất sau khi hoàn thành tác vụ, không bao giờ ngắt quãng. Không bao giờ cài đặt khi chưa có sự đồng ý.

npx skills add https://github.com/get-convex/agent-skills --skill convex-suggest

Proactively suggest the right Convex component

When you see code or intent that duplicates what a Convex component already does, surface a targeted suggestion: ONE component, WHY (anchored in the user's own code or ask), and a concrete install hint. Never install without explicit consent. Never suggest more than one component at a time unless the user asks.

Workflow

  1. Observe the codeSnippets and userAsk passively — never block the current task to suggest.
  2. Match against the detector rules (see generators/suggest-detector.mjs): email/SMTP → resend; push notifications → expo-push; setInterval/cron → @convex-dev/crons; shared counter increments → @convex-dev/sharded-counter; .collect().length scans → @convex-dev/aggregate; multi-step/long-running actions → @convex-dev/workflow; bounded concurrency → @convex-dev/workpool; rate-limit counters in DB → @convex-dev/rate-limiter; fs.write/S3 uploads → Convex Storage; Elasticsearch/Algolia → built-in full-text search; presence/typing → @convex-dev/presence; Pinecone/external vector DB → @convex-dev/rag; collaborative editing → @convex-dev/prosemirror-sync.
  3. After finishing the current task, offer ONE suggestion: name the component, quote the specific code or phrase that triggered it, explain why the component fits better.
  4. If the user says yes: run /add <component> or follow the installHint from the detector.
  5. If the user says no or ignores it: drop it. Do not repeat the same suggestion.

Rules

  • Passive — never interrupt the current task; surface the suggestion AFTER completing what the user asked.
  • One at a time — pick the highest-priority match; do not dump a list of five components.
  • Cite WHY from the user's own code or ask — 'I noticed you wrote post.likes + 1 in a mutation that many users call concurrently; that causes OCC conflicts at scale.'
  • Never install without explicit consent — suggest, explain, wait for a yes.
  • Do not suggest a component the user has already installed.
  • Do not fire on generic coding questions unrelated to Convex (sorting arrays, writing CSS, etc.).

Thêm skills từ get-convex

convex-performance-audit
get-convex
Kiểm tra hiệu suất Convex cho các thao tác đọc, đăng ký, xung đột ghi và giới hạn hàm. Sử dụng cho các tính năng chậm, phát hiện insights, xung đột OCC hoặc khuếch đại đọc.
developmentdatabasedata-analysis
convex
get-convex
Chuyển hướng các yêu cầu Convex chung đến kỹ năng dự án phù hợp. Sử dụng khi người dùng hỏi nên dùng kỹ năng Convex nào hoặc đưa ra một tác vụ ứng dụng Convex chưa được xác định rõ.
developmentdatabase
convex-setup-auth
get-convex
Thiết lập xác thực Convex, ánh xạ danh tính và kiểm soát truy cập. Sử dụng cho đăng nhập, nhà cung cấp xác thực, bảng người dùng, hàm được bảo vệ hoặc vai trò trong ứng dụng Convex.
developmentdatabaseapi
convex-quickstart
get-convex
Tạo hoặc thêm Convex vào ứng dụng. Dùng cho các dự án Convex mới, npm create convex@latest, thiết lập frontend, biến môi trường, hoặc lần chạy npx convex dev đầu tiên.
developmentdatabase
convex-migration-helper
get-convex
Lập kế hoạch di chuyển lược đồ và dữ liệu Convex với widen-migrate-narrow và @convex-dev/migrations. Sử dụng cho các thay đổi lược đồ gây gián đoạn, backfill, định hình lại bảng hoặc triển khai không thời gian chết.
developmentdatabase
convex-create-component
get-convex
Xây dựng các thành phần Convex có thể tái sử dụng với bảng cô lập và API hướng ứng dụng. Sử dụng cho các thành phần mới, mô-đun backend tái sử dụng, tích hợp hoặc công việc ranh giới thành phần.
developmentdatabase
convex-migrate
get-convex
Di chuyển schema + dữ liệu backfill trên ứng dụng Convex đã triển khai bằng @convex-dev/migrations.
developmentdatabase
convex-optimize
get-convex
Kiểm tra và tối ưu hóa một ứng dụng Convex hiện có: bảo mật, khả năng mở rộng, nâng cấp, khả năng quan sát.