Track Your Cycle โ Privately, Transparently, and on Your Terms
โจ Features ยท ๐ How It Works ยท ๐ Getting Started ยท ๐ก๏ธ Privacy ยท ๐ค Contribute
ROS Cycle is an open-source, privacy-first menstrual cycle tracker that runs entirely on your device. No accounts. No cloud. No telemetry. Just honest, math-backed predictions you can actually understand.
Unlike commercial trackers that hide their logic behind black-box algorithms, ROS Cycle is built on transparent, explainable mathematics โ so you always know how and why a prediction is made.
ROS Cycle is a tracker, not a diagnostic tool. Predictions are estimates based on your inputs, not medical advice.
| Feature | Description |
|---|---|
| ๐๏ธ 12-Month Calendar View | See your entire predicted cycle year at a glance |
| ๐ก๏ธ Probabilistic Fertile Windows | Gradient fertility bands instead of misleading binary labels |
| ๐ฏ Ovulation Likelihood Peaks | Gaussian-modeled peak estimates with uncertainty baked in |
| ๐ Confidence Indicators | Know how reliable your predictions are, based on your cycle stability |
| ๐ Exportable PDF Reports | Generate and save reports โ fully local, never uploaded |
| ๐ฉบ PCOD Symptom Checklist | Optional, non-diagnostic symptom awareness tool |
| ๐ 100% On-Device | Zero data transmission. Always. |
ROS Cycle uses a two-layer mathematical model: a deterministic core anchored to your cycle data, layered with probabilistic reasoning to represent real biological uncertainty.
| Input | Symbol | Required |
|---|---|---|
| Last Menstrual Period start date | Dโ |
โ Yes |
| Average cycle length (days) | ฮผ_C |
โ Yes |
| Estimated cycle variability (ยฑ days) | ฯ_C |
Optional |
| Average period length (days) | P |
Optional |
For any calendar date Dโ, the cycle-relative day is:
CycleDay(Dโ) = (Dโ โ Dโ) mod ฮผ_C
Converts any absolute date into a repeating cycle position, anchoring all phase calculations.
| Phase | Range |
|---|---|
| ๐ด Menstrual | 0 โค d < P |
| ๐ก Follicular | P โค d < (ฮผ_C โ 14) |
| ๐ข Ovulation Center | d = (ฮผ_C โ 14) |
| ๐ต Luteal | (ฮผ_C โ 14) < d < ฮผ_C |
Ovulation is never certain. ROS Cycle models it with a Gaussian distribution:
P_ov(d) = exp( โ(d โ (ฮผ_C โ 14))ยฒ / 2(ฯ_C + ฮด)ยฒ )
ฮด โ 1โ2 daysof biological noise is always included- Confidence smoothly decreases the further a day is from the expected ovulation center
- Output: a likelihood value between 0 and 1 per cycle day
| Band | Condition |
|---|---|
| ๐ด High Fertility | P_ov(d) > 0.6 |
| ๐ Medium Fertility | 0.25 < P_ov(d) โค 0.6 |
| ๐ข Low Fertility | P_ov(d) โค 0.25 |
No false certainty. Just gradients that reflect reality.
Confidence = 1 โ (ฯ_C / ฮผ_C) [clamped to 0โ1]
| Confidence | Meaning |
|---|---|
| High | Short, stable, predictable cycle |
| Medium | Some variability present |
| Low | High variability โ predictions less reliable |
# Clone the repository
git clone https://github.com/YOUR_USERNAME/ros-cycle.git
# Navigate into the project
cd ros-cycle
# Install dependencies
npm install
# Start the app locally
npm startโก Everything runs in your browser or on your machine. No backend, no server, no sign-up.
ROS Cycle was built around a core principle: your health data belongs to you, and only you.
- โ All computation is local-only
- โ No accounts required
- โ No cloud storage, no sync, no telemetry
- โ No behavioral tracking or background learning
- โ Fully auditable open-source code
- โ Predictable, deterministic outputs given the same inputs
ROS Cycle includes an optional symptom awareness checklist for common PCOD-related symptoms.
- Summarizes symptom count
- Encourages you to speak with a healthcare professional when appropriate
- Does not influence cycle predictions
- Does not perform any diagnosis
- ๐๏ธ 12-month cycle calendar
- ๐ฏ Probability-informed fertile windows
- ๐ Ovulation likelihood peaks
- ๐ Cycle confidence indicators
- ๐ Local-only exportable PDF reports
Contributions are warmly welcome! We especially value work that:
- ๐ก Improves explainability of predictions
- โฟ Enhances accessibility
- ๐ Extends visualization clarity
- ๐ Preserves the privacy-first architecture
# Fork the repo, then:
git checkout -b feature/your-feature-name
git commit -m "feat: describe your change"
git push origin feature/your-feature-name
# Open a Pull Request ๐
โ ๏ธ Feature proposals requiring cloud storage or opaque inference models will be carefully reviewed to ensure they align with ROS Cycle's core values.
ROS Cycle is an educational and informational tool. Menstrual cycles are influenced by stress, illness, hormonal conditions, medications, and lifestyle factors. All predictions are estimates and may vary significantly.
Always consult a qualified healthcare professional for medical concerns.
MIT License โ free to use, modify, and distribute.
See LICENSE for full terms.
Made with ๐ธ for privacy, transparency, and cycle awareness.
ROS Cycle โ because your data should stay yours.