بنقرة واحدة
build-convex
Build the Convex project from source. Use when a contributor wants to compile, test, or package Convex.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Build the Convex project from source. Use when a contributor wants to compile, test, or package Convex.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Deploy an actor (smart contract) to the Convex network. Use when the user wants to create a new on-chain actor with exported functions.
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, or use the direct lattice API.
Create or inspect Convex accounts. Use when the user wants to set up a new account, check account details, or manage keys.
Resolve or register Convex Name System (CNS) names. Use when the user wants to look up a CNS name, register a new name, or update a name's target.
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 expressions.
Create and manage fungible tokens on Convex. Use when the user wants to create a new token, check token balances, or manage token supply.
| name | build-convex |
| description | Build the Convex project from source. Use when a contributor wants to compile, test, or package Convex. |
| disable-model-invocation | true |
| allowed-tools | Bash |
| argument-hint | [module] [--test] |
Build the Convex Maven project. Requires Java 21+ (JDK 25 recommended) and Maven 3.7+.
cd C:/Users/mike_/git/convex && mvn clean install -DskipTests
cd C:/Users/mike_/git/convex && mvn clean install -DskipTests -pl $0 -am
The -am flag builds required dependencies too.
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.