build-convex

โดย convex-dev

Build the Convex project from source. Use when a contributor wants to compile, test, or package Convex.

npx skills add https://github.com/convex-dev/convex --skill build-convex

Build Convex

Build the Convex Maven project. Requires Java 21+ (JDK 25 recommended) and Maven 3.7+.

Full build (skip tests)

cd C:/Users/mike_/git/convex && mvn clean install -DskipTests

Build a specific module

cd C:/Users/mike_/git/convex && mvn clean install -DskipTests -pl $0 -am

The -am flag builds required dependencies too.

Build and test

If $ARGUMENTS contains --test or the user asks to run tests:

cd C:/Users/mike_/git/convex && mvn clean install

For a specific module's tests:

cd C:/Users/mike_/git/convex && mvn test -pl $0

Report build result (success/failure) and any errors concisely.

Skills เพิ่มเติมจาก convex-dev

account
convex-dev
Create or inspect Convex accounts. Use when the user wants to set up a new account, check account details, or manage keys.
official
cns
convex-dev
แก้ไขหรือลงทะเบียนชื่อ Convex Name System (CNS) ใช้เมื่อผู้ใช้ต้องการค้นหาชื่อ CNS ลงทะเบียนชื่อใหม่ หรืออัปเดตเป้าหมายของชื่อ
official
convex-db
convex-dev
Use Convex DB — a lattice-backed SQL database. Use when helping users write queries, connect via JDBC or PostgreSQL clients, create tables, insert/query data,…
official
deploy
convex-dev
Deploy an actor (smart contract) to the Convex network. Use when the user wants to create a new on-chain actor with exported functions.
official
query
convex-dev
Execute a read-only CVM query on the Convex network. Use when reading on-chain state, checking balances, looking up accounts, or evaluating Convex Lisp…
official
token
convex-dev
สร้างและจัดการโทเค็นที่สามารถใช้แทนกันได้บน Convex ใช้เมื่อผู้ใช้ต้องการสร้างโทเค็นใหม่ ตรวจสอบยอดคงเหลือของโทเค็น หรือจัดการอุปทานของโทเค็น
official
transact
convex-dev
ดำเนินการธุรกรรม CVM บนเครือข่าย Convex ใช้เมื่อผู้ใช้ต้องการแก้ไขสถานะบนเชน เรียกใช้ฟังก์ชันของแอคเตอร์ หรือกำหนดค่า
official
transfer
convex-dev
Transfer CVM coins or fungible tokens between Convex accounts. Use when the user wants to send coins or tokens to another account.
official