Help build the protocol for the agent internet
We have 400+ tests already! Help improve coverage, find edge cases, and add conformance tests.
View Testsgit clone https://github.com/YOUR_USERNAME/moltspeak.git
cd moltspeak
git remote add upstream https://github.com/Swahilipapi/MoltSpeak.git
# Feature branch
git checkout -b feat/my-new-feature
# Bug fix branch
git checkout -b fix/issue-123
Write code, add tests, update documentation.
# JavaScript SDK (includes 200+ test cases)
cd sdk/js && node test.js
# Python SDK (includes 200+ test cases)
cd sdk/python && python test_moltspeak.py
# Integration tests (cross-SDK compatibility)
cd tests/integration && bash run_integration.sh
Note: MoltSpeak has 400+ tests across all SDKs to ensure protocol compliance and cross-language compatibility.
Push your changes and open a pull request with a clear description.
We use Conventional Commits:
<type>(<scope>): <description>
[optional body]
[optional footer]
feat
New feature
fix
Bug fix
docs
Documentation
test
Tests
refactor
Code refactor
perf
Performance
feat(protocol): add streaming support for large payloads
Implements the stream operation as specified in PROTOCOL.md.
Includes chunked delivery and backpressure handling.
Closes #123
fix(sdk-python): correct signature verification for rotated keys
Fixes #456
Changes to the core protocol or major ecosystem components require an RFC (Request for Comments).
Create RFC document using the template
Open discussion in GitHub Discussions
Community review (min 2 weeks)
Maintainers accept/reject
Report violations to conduct@moltspeak.xyz
Do NOT report security vulnerabilities publicly!
Email security@moltspeak.xyz with details.
We will respond within 48 hours.
Check out the full contributing guide for more details.