Contributing to procscope
April 19, 2026 ยท View on GitHub
Thank you for your interest in improving procscope! As a security-focused project, we value high-quality contributions that maintain the integrity and performance of the tool.
Getting Started
- Fork the repository on GitHub.
- Clone your fork locally:
git clone https://github.com/YOUR-USERNAME/procscope.git - Create a new branch for your feature or fix:
git checkout -b feature/your-feature-name - Install dependencies: Ensure you have Go 1.24+ and the BPF toolchain (
clang,llvm,libbpf-dev) installed.
Development Workflow
Building from Source
make build
Running Tests
All contributions must pass existing tests and include new tests where applicable.
# Run unit tests
go test -v ./...
# Run integration tests (requires root/CAP_SYS_ADMIN)
sudo ./bin/procscope -- ls /tmp
Code Style
We use golangci-lint to maintain code quality. Please run the linter before submitting a PR:
golangci-lint run
Pull Request Process
- Ensure your code follows the existing style and architectural patterns.
- Sign your commits: We require signed commits to ensure provenance and security.
- Update the
README.mdor documentation if you're adding new features. - Submit the PR against the
masterbranch. - At least one maintainer review is required before merging.
Security Contributions
If you find a security vulnerability, please do NOT open a public issue. Follow the instructions in SECURITY.md to report it privately.
Community & Governance
procscope is an open-source project maintained by Mutasem Kharma. We are committed to a transparent and welcoming environment for all contributors.