Help build the protocol for the agent internet
git 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.
# Python SDK
cd sdk/python && pytest
# JavaScript SDK
cd sdk/javascript && npm test
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.