ecosystem

Định hướng trong hệ sinh thái Convex — thứ gì nằm trong repository nào, specs và docs ở đâu, và những thư viện client nào tồn tại. Sử dụng khi bạn cần ngữ cảnh…

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

The Convex Ecosystem

Convex is a lattice-based decentralised network and execution platform. Data merges like CRDTs rather than forming a linear chain, consensus is Convergent Proof of Stake (CPoS), and the CVM is a lambda-calculus virtual machine for functional smart contracts.

This repository (Convex-Dev/convex) is the reference implementation. Several things an agent needs are deliberately not here.

Where Things Live

WhatWhere
Reference implementation — CVM, consensus, peer, CLI, toolingConvex-Dev/convex (this repo)
CADs — normative specificationsConvex-Dev/design, under docs/cad/
Glossary and tutorialsConvex-Dev/design, under docs/tutorial/
Rendered docshttps://docs.convex.world

The design repository is the authority on what Convex should do; this repository is what it currently does. When they disagree, one of them has a bug — see the cad-reference skill for how to find the governing CAD.

Do not assume design is checked out locally. Use https://docs.convex.world unless you have confirmed the repository is present alongside this one.

Module Map

The 14 Maven modules are listed in AGENTS.md with their purposes, and each has its own README.md. In short: convex-core holds the CVM, consensus and Etch; convex-peer the networking, including the NodeServer; convex-cli, convex-gui and convex-restapi the interfaces; convex-p2p the P2P node stack, whose P2PNode runs a NodeServer.

Client Libraries

LanguageRepository
Javaconvex-java module in this repo
ClojureConvex-Dev/convex.cljc
TypeScriptConvex-Dev/convex.ts
PythonConvex-Dev/convex-api-py

Prefer the in-repo convex-java module for JVM integration — it is versioned with the network implementation.

Networks

  • Protonet (production): peer.convex.live
  • Testnets are used for tooling and experimentation; the endpoint in use is recorded in AGENTS.md under Network Defaults.

Anything you deploy to Protonet is real. Confirm the target network before any transaction, and prefer a local network for development — see the local-network skill.

Terminology

Convex has its own vocabulary and it is not interchangeable with blockchain terminology. Never substitute "gas", "fees", "blockchain", "chain", "miner", "validator", "block", "wei", "satoshi" or "mainnet".

Use: CVM coin, Copper, Juice, Peer, Actor, Lattice, CPoS, Belief, Etch, CAD, CNS, Protonet. The canonical glossary is at https://docs.convex.world/docs/tutorial/glossary — check it rather than guessing at a translation.

Related Projects

The ecosystem page at https://docs.convex.world lists community projects, wallets, demos and integrations. Treat that list as the current source; entries here would go stale.

Thêm skills từ convex-dev

account
convex-dev
Tạo hoặc kiểm tra các account Convex. Sử dụng khi người dùng muốn thiết lập account mới, kiểm tra chi tiết account, hoặc quản lý keys.
account
convex-dev
Tạo hoặc kiểm tra tài khoản Convex. Sử dụng khi người dùng muốn thiết lập tài khoản mới, kiểm tra chi tiết tài khoản hoặc quản lý khóa.
token
convex-dev
Tạo và quản lý token có thể thay thế trên Convex. Sử dụng khi người dùng muốn tạo token mới, kiểm tra số dư token, hoặc quản lý nguồn cung token.
build-convex
convex-dev
Xây dựng dự án Convex từ mã nguồn. Sử dụng khi một người đóng góp muốn biên dịch, kiểm thử hoặc đóng gói Convex.
convex-db
convex-dev
Sử dụng Convex DB — cơ sở dữ liệu SQL hỗ trợ lattice. Sử dụng khi giúp người dùng viết truy vấn, kết nối qua JDBC hoặc máy khách PostgreSQL, tạo bảng, chèn/truy vấn dữ liệu,…
convex-lisp
convex-dev
Tài liệu tham khảo ngôn ngữ Convex Lisp — quy ước CVM, gọi mã thư viện, định nghĩa actor, mã juice và lỗi. Sử dụng khi viết hoặc gỡ lỗi mã nguồn CVM cho…
deploy
convex-dev
Triển khai một actor (hợp đồng thông minh) lên mạng Convex. Sử dụng khi người dùng muốn tạo một actor trên chuỗi mới với các hàm được xuất.
local-network
convex-dev
Chạy mạng thử nghiệm Convex cục bộ để phát triển. Sử dụng khi kiểm tra các thay đổi với mạng trực tiếp, tái hiện sự cố của đồng nghiệp, hoặc khi không có mạng từ xa…