From 271adc8504aad32075d75d06fd42023877a649ec Mon Sep 17 00:00:00 2001 From: Christophe Besson Date: Sun, 9 Aug 2026 03:52:58 +0200 Subject: chore: initialize monorepo structure for MeshBay 3-package layout: meshbay-common (shared crypto/protocol), meshbay-hub (FastAPI server), meshbay-node (local daemon). Includes validated POC spikes 1-6 in poc/, architecture drafts v1/v2 in docs/, and CLAUDE.md project conventions. All cryptographic primitives extracted from POC into meshbay_common/crypto.py (GEK wrap/unwrap, chunk key derivation, keystore encryption, chunk signing). Co-Authored-By: Claude Sonnet 4.6 (1M context) --- packages/meshbay-common/src/meshbay_common/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 packages/meshbay-common/src/meshbay_common/__init__.py (limited to 'packages/meshbay-common/src/meshbay_common/__init__.py') diff --git a/packages/meshbay-common/src/meshbay_common/__init__.py b/packages/meshbay-common/src/meshbay_common/__init__.py new file mode 100644 index 0000000..94b3d27 --- /dev/null +++ b/packages/meshbay-common/src/meshbay_common/__init__.py @@ -0,0 +1,5 @@ +"""MeshBay common — shared crypto primitives and protocol types.""" + +__version__ = "0.1.0" +MNP_VERSION = "0.1" +MHP_VERSION = "0.1" -- cgit v1.2.3