→ WebApp

Cognitive Bundle Registry

Discover and share specialized AI bundles. Each bundle is a portable cognitive context — signed, versioned, and scored by the TPS algorithm.

Public bundles
Capabilities
Signed bundles
📦 Available Bundles


Loading bundles…
🌐 Join the Friend Mesh
BundleFabric uses a decentralized P2P HTTP gossip protocol. Run your own node and share bundles with the community.
# 1. Deploy BundleFabric on your server
git clone https://github.com/bundlefabric/bundlefabric.git
cd bundlefabric
docker compose --profile phase2 up --build -d

# 2. Configure friends.yaml
cat > friends.yaml << EOF
node_id: "your-node-name"
peers:
  - url: "https://api.bundlefabric.org"
    name: "BundleFabric Main"
EOF

# 3. Enable the mesh
echo "MESH_ENABLED=true" >> .env
docker compose --profile phase2 restart bundlefabric-api

# 4. Sign your bundles
docker exec bundlefabric-api python3 -c "
from security.crypto_manager import BundleCryptoManager
cm = BundleCryptoManager()
cm.generate_node_keypair()
"