Skip to content

Contributing Development Setup

Devrajsinh Gohil edited this page Aug 30, 2026 · 1 revision

Contributing: Development Setup

How to set up the developer environment for contributing to AgentMesh.


1. Prerequisites

  • Clang 15+ or GCC 12+ (C++20 support)
  • CMake 3.20+
  • uv Python package manager

2. Build Debug Binaries with AddressSanitizer

cd Phase1
mkdir -p build_debug && cd build_debug
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_ASAN=ON ..
make -j8
ctest --output-on-failure
```\n

Clone this wiki locally