Welcome, and thank you for your interest in contributing to PAXECT SelfTune! Your effort helps keep the project deterministic, reproducible, and cross-platform across all major operating systems.
PAXECT SelfTune is part of the broader PAXECT Interface ecosystem. All contributions must remain deterministic, platform-agnostic, and dependency-light — no AI, telemetry, or random behavior is allowed.
SelfTune focuses on runtime control, adaptive overhead regulation, and deterministic performance tuning. Every contribution must preserve bit-identical outputs across all runs and platforms.
-
Fork this repository to your own GitHub account.
-
Clone your fork locally:
git clone https://github.com/PAXECT-Interface/paxect-selftune-plugin.git cd paxect-selftune-plugin -
Create a virtual environment (recommended):
python3 -m venv .venv source .venv/bin/activate # On Windows: .venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Verify deterministic behavior before making changes:
python demos/selftune_enterprise_demo_01_standalone.py python demos/selftune_enterprise_demo_02_safety_throttle.py python demos/selftune_enterprise_demo_03_adaptive_benchmark.py python demos/selftune_enterprise_demo_04_metrics_server.py
🧩 Each demo must complete without drift or deviation between runs — investigate any inconsistent metrics before submitting code.
-
Keep commits focused and clear. Example:
fix: stabilize throttle timing on Windowsorfeat: add deterministic smoothing interval. -
All files must include SPDX headers:
# SPDX-FileCopyrightText: © 2025 PAXECT # SPDX-License-Identifier: Apache-2.0
-
Test on at least two operating systems (Linux + Windows/macOS).
-
Avoid adding randomness, pseudo-AI logic, or heuristic parameters.
-
All pull requests must pass CI + CodeQL validation.
-
Create a new feature branch:
git checkout -b feature/your-change
-
Push your changes:
git push origin feature/your-change
-
Open a Pull Request describing the goal and rationale.
-
Maintainers will review determinism, platform parity, and structure.
-
Once approved, your PR will be merged and scheduled for the next release.
✨ The goal: measurable, deterministic progress — not arbitrary speed.
- Issues: for bug reports, enhancement ideas, and reproducibility concerns
- Discussions: for architecture or policy refinement
- Security: please see SECURITY.md for responsible disclosure
Every contribution helps make PAXECT SelfTune a stronger, fairer, and more predictable component in the PAXECT ecosystem. Your technical precision and time are deeply appreciated.
Together we keep PAXECT deterministic, safe, and reproducible — across all environments.
