Thanks for your interest in contributing. gitlawb is an open protocol — agents and humans welcome.
# Clone and build
git clone https://github.com/Gitlawb/node
cd node
# Build everything
cargo build
# Run the workspace test suite
cargo test --workspace
# Run a local node (requires a Postgres instance — see docker-compose.yml)
cargo run -p gitlawb-node
# Build the CLI
cargo run -p gl -- --helpThe fastest dev loop is docker compose up postgres -d for the database, then cargo run -p gitlawb-node for the node.
crates/
├── gitlawb-core/ crypto primitives (DID, CID, HTTP sigs, UCAN, ref certs)
├── gitlawb-node/ axum HTTP server, git smart HTTP, P2P, GraphQL
├── gl/ CLI — identity, repos, MCP server, Base L2 names
├── git-remote-gitlawb/ git remote helper for gitlawb:// URLs
├── gitlawb-attest/ provenance attestations for ref-update certificates
└── icaptcha-client/ client for the iCaptcha proof-of-intelligence service
docs/ Operator guides
scripts/ Build helpers
Smart contracts live in a separate repo: github.com/Gitlawb/contracts.
- Bug reports — open an issue with steps to reproduce
- Feature requests — open an issue describing the use case
- Code — open a PR (see guidelines below)
- Documentation — fixes and improvements always welcome
- Node operators — run a node and join the network
- Agent integrations — build tools using
gl mcp serve
- One thing per PR. Small, focused PRs get reviewed faster.
- Tests. New functionality should have tests. Run
cargo test --workspacebefore opening a PR. - No breaking changes without discussion. Open an issue first for protocol-level changes.
- Conventional commits. Use
feat:,fix:,docs:,refactor:,test:,chore:. Releases are automated by release-please — your commit prefixes drive the next version bump. - Format and lint. Run
cargo fmt --allandcargo clippy --workspace --all-targets -- -D warningsbefore submitting. CI will reject anything that fails these. - Security-surface rules.
AGENTS.mdcarries the authorization invariants PRs most often break; it is written for coding agents and humans alike, so read it before touching endpoints, visibility, or migrations.
We welcome contributions from humans and agents alike. To keep review sustainable, PRs are expected to clear a basic quality bar:
- Link an issue. Bug fixes and features should reference an issue (
Closes #123). For protocol-level changes (identity, signatures, UCAN, ref certs, wire formats), open the issue before writing code. - One change per PR. Unrelated churn slows review and gets sent back.
- Tests and a green pipeline. New behavior needs tests;
cargo fmt,cargo clippy, and the full CI suite must pass. - A real description. Say what changes and why. "Update code" is not a description.
A triage bot labels PRs that are missing these and leaves a short note. Nothing is closed automatically while you're engaging. A flagged PR still missing a description after 14 days of inactivity gets a stale warning, and is closed 7 days later if still untouched. A missing issue link alone never triggers closure; that label stays advisory. Closed PRs can be reopened at any time once updated.
Requirements:
- Rust stable (≥ 1.91) — install via rustup
- PostgreSQL — required for the node. Use the bundled
docker-compose.ymlfor local dev. - Docker (optional, for full-stack local testing)
Environment variables:
cp .env.example .env
# edit .envThe minimum required variable is DATABASE_URL. Everything else has sensible defaults — see .env.example.
# All workspace tests
cargo test --workspace
# Specific crate
cargo test -p gitlawb-core
cargo test -p gitlawb-node- TypeScript SDK (
@gitlawb/sdk) — client library for the HTTP API - Python SDK (
gitlawb) — for ML/agent pipeline integration - UCAN authorization — add trusted issuer anchoring, capability checks, and authorization-aware revocation
- Filecoin storage tier — wire up cold storage deals
- Documentation — guides, tutorials, API examples
- Node operators — run a public node and report issues
Be constructive and respectful. This is a technical project — focus on ideas and code, not people.
By contributing, you agree that your contributions will be dual licensed under MIT and Apache-2.0, at the user's option.