Initial commit: docs, decisions, and M1 sensor core
Planning docs (SPEC, ARCHITECTURE, MODULES, ROADMAP, DECISIONS) with decisions D1-D15 settled: RigDoctor name, Python 3 + Qt/PySide6 stack (core/CLI/daemon stdlib-only), Ubuntu + NVIDIA first, .deb packaging, read-only + suggestions, GUI + tray modules, stress module dropped. First code: the M1 sensor core (stdlib-only) and a CLI. - core engine: Reading/Sample model, Sampler, hwmon reader - self-probing sources (NVIDIA first): nvidia-smi GPU, coretemp/k10temp CPU, /proc/meminfo + DDR5 SPD memory, NVMe storage - CLI: snapshot (text/JSON), monitor, sources; record/report stubbed - stdlib unittest smoke tests Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,166 @@
|
||||
# RigDoctor — Architecture (DRAFT v0.2)
|
||||
|
||||
> Tech stack and key structural decisions are now settled (see `DECISIONS.md` D2, D6, D8,
|
||||
> D10, D11). Items still marked **[OPEN]** are tracked there.
|
||||
|
||||
## 1. Principles
|
||||
- **Modular core + plugins.** A small engine; every capability is a module that can be
|
||||
installed/omitted independently.
|
||||
- **Capability detection over assumption.** Probe what hardware/tools exist; degrade
|
||||
gracefully.
|
||||
- **Vendor & distro abstraction.** GPU and package-manager differences live behind
|
||||
interfaces, not scattered through the code (NVIDIA + apt are the first concrete impls).
|
||||
- **One engine, many front-ends.** CLI, TUI, GUI, and tray are all thin front-ends over the
|
||||
same core engine. Anything the GUI/tray can do is reachable headless from the CLI.
|
||||
|
||||
## 2. Tech stack — *DECIDED (D2)*
|
||||
- **Language:** Python 3 (target machine has Python 3.14).
|
||||
- **Core / CLI / daemon:** **stdlib only** — no `pip` deps. Easy log/JSON/subprocess
|
||||
handling, tiny footprint, runs headless/over SSH.
|
||||
- **TUI (M2):** stdlib `curses` / plain ANSI redraw (no deps).
|
||||
- **GUI (M10) + tray (M11):** **Qt via PySide6** — one toolkit for both the desktop window
|
||||
and the `QSystemTrayIcon` menu-bar applet. PySide6 is a dependency of *only* these two
|
||||
modules, declared in the `.deb`; the core/daemon never import Qt.
|
||||
- **Installer bootstrap (M9):** the `.deb`'s maintainer scripts ensure Python is present,
|
||||
then hand off to the Python installer for module selection.
|
||||
|
||||
## 3. Component layout
|
||||
```
|
||||
+--------------------------+
|
||||
| core engine | (stdlib only)
|
||||
| sources → sampler → bus |
|
||||
+--------------------------+
|
||||
^ ^ ^ ^
|
||||
+-------------------+ | | +--------------------+
|
||||
| +-----------+ +-----------+ |
|
||||
+---------+ +----------+ +-----------+ +--------------+
|
||||
| CLI | | daemon | | GUI | | tray applet |
|
||||
| (stdlib)| | (M3, | | (M10,Qt) | | (M11, Qt) |
|
||||
| TUI(M2) | | systemd) | | | | |
|
||||
+---------+ +----------+ +-----------+ +--------------+
|
||||
```
|
||||
- The **core engine** is a stdlib-only library: sources → sampler loop → an internal bus
|
||||
that fans samples out to sinks (TUI renderer, CSV/JSON logger, alert engine, report
|
||||
builder).
|
||||
- The **daemon** (M3) is a long-running, stdlib-only process managed by `systemd --user`.
|
||||
- The **GUI** and **tray** import PySide6 and talk to the same engine; for live status they
|
||||
can read the daemon's output / a small status file or socket rather than re-sampling.
|
||||
|
||||
## 4. Core engine
|
||||
```
|
||||
+-------------------+ +------------------+ +-------------------+
|
||||
| Sources (probe) | ---> | Sampler loop | ---> | Sinks |
|
||||
| nvidia-smi/NVML | | (interval, Hz) | | - TUI renderer |
|
||||
| amdgpu sysfs | | normalizes into | | - CSV/JSON logger |
|
||||
| hwmon/lm-sensors | | Sample records | | - Alert engine |
|
||||
| journalctl/SMART | | | | - Report builder |
|
||||
+-------------------+ +------------------+ | - GUI/tray feed |
|
||||
+-------------------+
|
||||
```
|
||||
- **Sample record:** `{ ts, source, metric, value, unit }` flattened per tick into a row.
|
||||
- **Sources** are pluggable; each declares which metrics it can provide and self-checks
|
||||
availability at startup. NVIDIA (`nvidia-smi`/NVML) + hwmon are the first implementations.
|
||||
|
||||
## 5. Module contract
|
||||
Each module declares a manifest so the installer and engine can reason about it:
|
||||
```
|
||||
module:
|
||||
id: crash-logger
|
||||
name: "Crash-capture logger"
|
||||
provides: [logging]
|
||||
requires_sources: [gpu, cpu_temp] # capabilities, not packages
|
||||
system_packages: # per package manager, optional
|
||||
apt: [] # uses nvidia-smi + sysfs only
|
||||
pacman: []
|
||||
dnf: []
|
||||
python_deps: [] # e.g. GUI/tray modules → [pyside6]
|
||||
optional_packages:
|
||||
apt: [smartmontools] # enriches if present
|
||||
gpu_vendors: [nvidia, amd, intel]
|
||||
default_in_bundles: [essential]
|
||||
```
|
||||
Lifecycle hooks a module may implement: `probe()`, `collect(sample)`, `render(view)`,
|
||||
`report()`, `install_hint()`. GUI/tray modules additionally declare `python_deps: [pyside6]`.
|
||||
|
||||
## 6. Crash-logger daemon & trigger model — *DECIDED (D6)*
|
||||
The logger (M3) runs as a `systemd --user` service. Three user-selectable trigger modes:
|
||||
1. **Always-on** — service enabled at login, samples continuously (bounded by rotation).
|
||||
2. **Game-launch-triggered** — starts when a game/Steam session begins, stops after.
|
||||
Detection is layered (D12), no root: a precise **wrapper** (`rigdoctor wrap %command%`
|
||||
+ global Steam compat-tool) as primary; a zero-config **watcher** (Steam `RunningAppID`
|
||||
+ `/proc` heuristic) as fallback; **GameMode** D-Bus signals if `gamemoded` is present.
|
||||
3. **Manual** — started/stopped via the CLI (`rigdoctor record start/stop`) or the tray
|
||||
applet's quick action.
|
||||
|
||||
The selected mode is written to config by the installer and changeable later via CLI/GUI.
|
||||
|
||||
## 7. GUI & tray — *DECIDED (D10/D11)*
|
||||
- **GUI (M10):** a PySide6 desktop app — live dashboard (graphs/gauges), crash-log browser,
|
||||
health-report viewer, inventory view, logger controls. Works under X11 and Wayland.
|
||||
- **Tray (M11):** `QSystemTrayIcon` applet in the top menu bar (StatusNotifierItem; on
|
||||
Ubuntu/GNOME surfaced via the AppIndicator extension). Dropdown shows live M1 readouts
|
||||
(CPU temp, GPU temp, memory used/total, status dot) and actions led by **Run Diagnostic**
|
||||
(the guided diagnostic session, §7.1), plus Open dashboard / Start-Stop recording /
|
||||
Snapshot / Quit (D13).
|
||||
- Both are **optional** — a headless/server install omits them and loses no diagnostic
|
||||
capability (everything is in the CLI).
|
||||
|
||||
### 7.1 Guided diagnostic session (orchestration)
|
||||
The "Run Diagnostic" flow (exposed in tray, GUI, and CLI) is not a new module — it
|
||||
orchestrates existing ones: **pick a game** (D12 detection: Steam library / recently played
|
||||
/ running process) → **focused capture** (M3 scoped to that game's session via the D12
|
||||
wrapper/watcher) → **scan & analyze** (M4 over the captured window + system logs) →
|
||||
**present prioritized findings** with suggested fixes (read-only, D9). The engine exposes it
|
||||
as a single callable so all three front-ends share one implementation.
|
||||
|
||||
## 8. Installer design (M9)
|
||||
1. **Detect** GPU vendor via `lspci` (NVIDIA first) and the package manager (apt first).
|
||||
2. **Present** a module menu grouped into bundles:
|
||||
- *Essential* (sensor core + crash logger + health report) — the MVP, NVIDIA-only.
|
||||
- *Monitoring* (live TUI + alerts)
|
||||
- *Diagnostics* (inventory + gaming-env checks + SMART)
|
||||
- *Desktop UI* (GUI + tray applet — adds the PySide6 dependency)
|
||||
- *Custom* (pick individual modules)
|
||||
For each selection, show the exact packages that will be installed.
|
||||
3. **Resolve** dependencies: union of selected modules' `system_packages` + `python_deps`
|
||||
for the detected package manager; report-only if a package is missing and sudo
|
||||
unavailable.
|
||||
4. **Install** (with explicit confirmation), **write config** (`~/.config/rigdoctor/`),
|
||||
optionally **enable** the `systemd --user` logger service and choose its trigger mode (D6).
|
||||
5. **Verify** each installed module's `probe()` and print a readiness summary.
|
||||
|
||||
Module list/bundling is final (D14). Packaging is `.deb`-first (D8); the wizard layers
|
||||
module selection on top of the package.
|
||||
|
||||
## 9. GPU vendor abstraction
|
||||
| Capability | NVIDIA (first) | AMD (later) | Intel (later) |
|
||||
|------------|--------|-----|-------|
|
||||
| Temps/clocks/power | `nvidia-smi`/NVML | `/sys/class/drm/.../device` + `rocm-smi` | `/sys` + `intel_gpu_top` |
|
||||
| VRAM temp | mem-junction (often N/A on GeForce) | sysfs `mem` hwmon | n/a |
|
||||
| Crash signature | Xid in dmesg | `amdgpu: GPU reset` / ring timeouts | i915 GPU hang |
|
||||
| Power limit (read-only, D9) | `nvidia-smi -pl` (suggested, not applied) | sysfs `power_dpm` / `pp_*` | n/a |
|
||||
|
||||
## 10. Data & config layout
|
||||
```
|
||||
~/.config/rigdoctor/config.toml # enabled modules, thresholds, interval, trigger mode
|
||||
~/.local/share/rigdoctor/logs/ # rotated crash logs (CSV/JSON)
|
||||
~/.local/state/rigdoctor/ # session/min-max state, daemon status feed
|
||||
```
|
||||
|
||||
## 11. Dependency package names — apt-only (D15)
|
||||
We maintain package names for **Ubuntu/apt only**; no cross-distro mapping is built or
|
||||
maintained. The set is small (filled in per module as they land):
|
||||
|
||||
| Logical dep | apt package |
|
||||
|-------------|-------------|
|
||||
| SMART | `smartmontools` |
|
||||
| lm-sensors | `lm-sensors` |
|
||||
| DMI/inventory | `dmidecode` |
|
||||
| GUI/tray (Qt) | `python3-pyside6` |
|
||||
| Tray on GNOME | `gir1.2-appindicator3-0.1` (AppIndicator) |
|
||||
| Desktop notifications | `libnotify-bin` |
|
||||
|
||||
Module manifests still declare deps under a `system_packages.apt` / `python_deps` key, so a
|
||||
thin seam remains if another package manager is ever added — but multi-distro support is **not
|
||||
a planned deliverable** (D15).
|
||||
</content>
|
||||
@@ -0,0 +1,127 @@
|
||||
# RigDoctor — Decisions & Open Questions
|
||||
|
||||
Format: each item is **OPEN** (needs a call) or **DECIDED** (with date + rationale).
|
||||
Decisions D1–D15 were all settled on 2026-05-21; the original open questions are kept below
|
||||
with their resolutions so the reasoning is traceable. No tracked decisions are currently open.
|
||||
|
||||
## Decided
|
||||
|
||||
### D1 — Project name — *DECIDED 2026-05-21*
|
||||
**RigDoctor.** Confirmed as the final name (repo, package, and CLI command `rigdoctor`).
|
||||
Alternatives (RigWatch, GameDoc, Penguin Pit Crew, LGD) dropped.
|
||||
|
||||
### D2 — Language / runtime — *DECIDED 2026-05-21*
|
||||
**Python 3 + Qt (PySide6).**
|
||||
- *Why Python:* fastest AI-assisted development (largest codegen corpus) and a perfect fit
|
||||
for the real workload — parsing `nvidia-smi`/sysfs/`journalctl`, CSV/JSON, subprocess.
|
||||
- *Why Qt/PySide6:* one toolkit covers **both** the desktop GUI and the system-tray applet.
|
||||
- *Layering that preserves "low overhead":* the **core engine, CLI, and crash-logger daemon
|
||||
stay stdlib-only** (no hard deps, tiny footprint); **only the GUI and tray modules pull in
|
||||
PySide6**. This maps cleanly onto the modular installer — a headless/server user never
|
||||
installs Qt.
|
||||
- *Trade-off accepted:* the GUI carries a Qt runtime dependency (not a single static binary).
|
||||
Mitigated by shipping a `.deb` that declares `python3` + `python3-pyside6` (see D8).
|
||||
|
||||
### D3 — Distro priority order — *DECIDED 2026-05-21*
|
||||
**Ubuntu first**, by an explicit margin. Debian comes along for free via `apt`. Arch
|
||||
(`pacman`) / Fedora (`dnf`) / openSUSE (`zypper`) are best-effort later. The package-manager
|
||||
and distro abstraction stays in the design so other distros can be added, but all primary
|
||||
development, testing, and packaging target Ubuntu.
|
||||
|
||||
### D4 — GPU vendor priority — *DECIDED 2026-05-21*
|
||||
**NVIDIA first.** It's the seed hardware (RTX 3070) and the source of the motivating crash.
|
||||
AMD and Intel come later behind the vendor abstraction; nothing should hard-code NVIDIA in a
|
||||
way that blocks them.
|
||||
|
||||
### D5 — MVP scope — *DECIDED 2026-05-21*
|
||||
**M1 + M3 + M4 (the *Essential* bundle), NVIDIA-only**, CLI-first. This is the first build
|
||||
target — it captures the seed crash and explains the logs before any installer, GUI, tray,
|
||||
or multi-vendor work.
|
||||
|
||||
### D6 — Crash-logger trigger model — *DECIDED 2026-05-21*
|
||||
**Let the user choose.** All three modes are supported and selectable (installer + config):
|
||||
1. **Always-on** `systemd --user` service.
|
||||
2. **Game-launch-triggered** (auto-start when a game/Steam session starts, stop after).
|
||||
3. **Manual** (CLI command, or the tray applet's "start recording" button).
|
||||
*Still open:* the exact game-launch detection mechanism — see D12.
|
||||
|
||||
### D7 — Stress / repro module — *DECIDED 2026-05-21*
|
||||
**Out of scope. Module M7 is dropped.** RigDoctor will not build or bundle stress/load
|
||||
generators. Users who want to reproduce load can run existing tools (gpu-burn, vkmark,
|
||||
stress-ng) themselves alongside the logger.
|
||||
|
||||
### D8 — Distribution / packaging — *DECIDED 2026-05-21*
|
||||
**`.deb` package** as the primary distribution channel (matches the Ubuntu-first focus). The
|
||||
`.deb` declares dependencies per module group; the interactive installer (M9) handles module
|
||||
selection on top. AUR / Flatpak / COPR are possible later, not now.
|
||||
|
||||
### D9 — Scope of action (read-only vs apply-fixes) — *DECIDED 2026-05-21*
|
||||
**Read-only + suggestions.** RigDoctor diagnoses, monitors, and **suggests** actions in
|
||||
plain language (with the exact command where possible), but does **not** apply changes
|
||||
itself in this stage. Auto-applying fixes (governor, power profile, etc.) is a deliberate
|
||||
later milestone, gated behind explicit user consent when it lands.
|
||||
|
||||
### D10 — GUI is a first-class deliverable — *DECIDED 2026-05-21*
|
||||
The app must run **three ways**: (a) **CLI-only / headless** (full functionality from the
|
||||
terminal, works over SSH), (b) a **desktop GUI**, and (c) a **system-tray / top-menu-bar
|
||||
applet** with quick actions. This supersedes the original "terminal-first, GUI maybe later"
|
||||
non-goal. GUI and tray are separate optional modules over the shared core engine.
|
||||
|
||||
### D11 — Tray / menu-bar applet — *DECIDED 2026-05-21*
|
||||
A small always-available applet in the Linux top menu bar (system tray / StatusNotifierItem,
|
||||
via Qt's `QSystemTrayIcon`; on Ubuntu/GNOME this surfaces through the AppIndicator
|
||||
extension). Provides quick actions and at-a-glance status.
|
||||
*Still open:* the exact set of quick actions/indicators — see D13.
|
||||
|
||||
### D12 — Game-launch detection mechanism — *DECIDED 2026-05-21*
|
||||
**Layered approach, no root** (logger stays a `systemd --user` service):
|
||||
1. **Wrapper (precise, primary):** `rigdoctor wrap %command%` for per-game Steam launch
|
||||
options, plus an installer helper that registers RigDoctor as a **global Steam
|
||||
compatibility tool** (covers all Proton games without per-game edits). The same wrapper
|
||||
field works in Lutris/Heroic. Deterministic start/stop, knows the title, needs no
|
||||
watcher daemon. *Build first.*
|
||||
2. **Zero-config watcher (fallback):** low-frequency poll of Steam's `RunningAppID`
|
||||
(`~/.steam/registry.vdf`) plus a `/proc` heuristic for non-Steam launchers, for users
|
||||
who won't edit launch options. *Build later.*
|
||||
3. **GameMode (opportunistic):** if Feral `gamemoded` is present, use its D-Bus
|
||||
`GameRegistered`/`GameUnregistered` signals (via `gdbus`/`busctl` — no Python dbus dep).
|
||||
- *Explicitly rejected:* root-only kernel mechanisms (proc-connector netlink `PROC_EVENTS`,
|
||||
eBPF) — they'd force the logger to run as root.
|
||||
- *Phasing:* wrapper ships with the game-launch trigger mode (Phase 4); watcher + GameMode
|
||||
follow.
|
||||
|
||||
### D13 — Tray / menu-bar applet: actions & indicators — *DECIDED 2026-05-21*
|
||||
**Live readouts (from M1) + a Run Diagnostic action.**
|
||||
- **At-a-glance live data** shown inline in the tray dropdown, refreshed periodically:
|
||||
**CPU temp, GPU temp, memory used/total** (e.g. "14 GB / 32 GB"). A status dot
|
||||
(normal / throttling / alert) is proposed alongside.
|
||||
- **Run Diagnostic** — the primary action. Launches the **guided diagnostic session**
|
||||
(SPEC §4): prompts *which game to focus on*, starts a focused log collection for that
|
||||
game's session (M3, scoped via the D12 game detection), then scans/analyzes (M4) and
|
||||
presents the findings.
|
||||
- **Supporting actions (proposed minimal set):** Open dashboard (M10), Start/Stop recording
|
||||
(manual trigger), Snapshot now, Quit.
|
||||
|
||||
### D14 — Final installer module list & bundles — *DECIDED 2026-05-21*
|
||||
**Use the current `MODULES.md` catalog and bundles as final.** Modules: M1, M2, M3, M4, M5,
|
||||
M6, M8, M9, M10, M11 (M7 dropped). Bundles: Essential / Monitoring / Diagnostics /
|
||||
Desktop UI (+ Custom). No further additions planned for v1.
|
||||
|
||||
### D15 — Distro package-name mapping → apt-only — *DECIDED 2026-05-21*
|
||||
*What it was:* RigDoctor's optional modules need a few system packages (smartmontools,
|
||||
lm-sensors, dmidecode, python3-pyside6, AppIndicator). The same tool is named differently
|
||||
per distro (e.g. `lm-sensors` on apt vs `lm_sensors` on pacman/dnf; Qt is `python3-pyside6`
|
||||
on apt). Supporting multiple distros would require a table mapping each logical dependency to
|
||||
the right package name per package manager.
|
||||
*Decision:* **apt-only.** We maintain package names for **Ubuntu/apt only** and do **not**
|
||||
build or maintain mappings for other package managers. A thin seam is left in the design so
|
||||
another package manager *could* be added later, but multi-distro support is **not** a planned
|
||||
deliverable. Revisit only if Ubuntu-only proves too narrow.
|
||||
|
||||
## Open
|
||||
|
||||
None currently — all tracked decisions (D1–D15) are resolved. New questions will be added
|
||||
here as they arise. Remaining detail to flesh out during build: the tray's supporting-action
|
||||
set (D13 proposed list) and per-module apt package names (filled in as modules land).
|
||||
</content>
|
||||
</invoke>
|
||||
@@ -0,0 +1,56 @@
|
||||
# RigDoctor — Module Catalog (DRAFT v0.2)
|
||||
|
||||
Status: ⬜ not started · 🟦 designing · 🟨 in progress · ✅ done
|
||||
|
||||
> Final module set (D14). **M7 (stress/repro) was dropped (D7).** M10/M11 are the GUI and
|
||||
> tray modules (D10/D11). GPU scope reads "all (NVIDIA first)" — NVIDIA is implemented first,
|
||||
> others via the vendor abstraction (D4).
|
||||
|
||||
| ID | Module | Bundle | Key deps | GPU scope | Priority | Status |
|
||||
|----|--------|--------|----------|-----------|----------|--------|
|
||||
| M1 | Sensor core | Essential | none (nvidia-smi, sysfs) | all (NVIDIA first) | P0 | ⬜ |
|
||||
| M3 | Crash-capture logger | Essential | none (opt: smartmontools) | all (NVIDIA first) | P0 | ⬜ |
|
||||
| M4 | Health report (log scan) | Essential | none (opt: smartmontools) | all (NVIDIA first) | P0 | ⬜ |
|
||||
| M2 | Live monitor (TUI) | Monitoring | none (stdlib curses) | all | P1 | ⬜ |
|
||||
| M8 | Alerting | Monitoring | libnotify (opt) | all | P2 | ⬜ |
|
||||
| M5 | System inventory | Diagnostics | none (opt: lm-sensors, dmidecode) | all | P1 | ⬜ |
|
||||
| M6 | Gaming env checks | Diagnostics | none | all | P2 | ⬜ |
|
||||
| M10 | Desktop GUI | Desktop UI | **python3-pyside6** | all | P2 | ⬜ |
|
||||
| M11 | Tray / menu-bar applet | Desktop UI | **python3-pyside6** (+ AppIndicator on GNOME) | all | P2 | ⬜ |
|
||||
| M9 | Installer | (meta) | none | all | P1 | ⬜ |
|
||||
| ~~M7~~ | ~~Stress / repro~~ | — | — | — | — | ❌ dropped (D7) |
|
||||
|
||||
## Notes per module
|
||||
- **M1 Sensor core** — the foundation everything else samples from. Stdlib-only. Abstracts
|
||||
NVIDIA/AMD/Intel + hwmon behind one interface; **ship the NVIDIA + hwmon path first**.
|
||||
- **M3 Crash-capture logger** — the highest-value piece for the seed use case. `fsync` per
|
||||
sample; GPU-lost detection via query timeout; bounded rotation; `systemd --user` service
|
||||
with a **user-selectable trigger mode** (always-on / game-launch / manual — D6).
|
||||
- **M4 Health report** — turns scattered logs into a prioritized, plain-language findings
|
||||
list with **suggested** fixes (read-only, D9). Reuses M1 for a live snapshot. Also powers
|
||||
the **guided diagnostic session** (with M3): pick a game → focused capture → scan →
|
||||
findings (see SPEC §4).
|
||||
- **M2 Live monitor** — depends on M1; the terminal "HWMonitor for Linux" face. Stdlib-only.
|
||||
- **M5 / M6 Diagnostics** — inventory export + gaming-env checks; M6 flags risky settings and
|
||||
suggests the fix command but does not apply it (D9).
|
||||
- **M8 Alerting** — threshold/event notifications; integrates with the tray applet (M11).
|
||||
- **M10 Desktop GUI** — PySide6 graphical front-end over the core engine (dashboard, log
|
||||
browser, report viewer, logger controls). Optional; adds the Qt dependency.
|
||||
- **M11 Tray applet** — `QSystemTrayIcon` menu-bar applet. Dropdown shows live M1 readouts
|
||||
(CPU temp, GPU temp, memory used/total, status dot) and is led by a **Run Diagnostic**
|
||||
action (the guided diagnostic session), plus Open dashboard / Start-Stop recording /
|
||||
Snapshot / Quit (D13). Optional; shares the Qt dependency with M10.
|
||||
- **M9 Installer** — interactive wizard layered on the `.deb` (D8); apt-first dependency
|
||||
resolution; enables the logger service and trigger mode.
|
||||
|
||||
## Bundles (final — D14)
|
||||
- **Essential:** M1 + M3 + M4 *(the MVP, NVIDIA-only — D5)*
|
||||
- **Monitoring:** M2 + M8
|
||||
- **Diagnostics:** M5 + M6
|
||||
- **Desktop UI:** M10 + M11 *(adds PySide6)*
|
||||
|
||||
## MVP candidate — *confirmed (D5)*
|
||||
**M1 + M3 + M4 (Essential), NVIDIA-only, CLI-first.** Gives a working tool that captures the
|
||||
GPU crash and explains the logs — deliverable before the installer, GUI/tray, or multi-vendor
|
||||
work.
|
||||
</content>
|
||||
@@ -0,0 +1,56 @@
|
||||
# RigDoctor — Roadmap (DRAFT v0.2)
|
||||
|
||||
Phased so the seed use case (capturing the RTX 3070 crash / black-screen events) is solved
|
||||
early, before the broader "tool for all Linux gamers" work. Stack: Python 3 + Qt/PySide6;
|
||||
Ubuntu + NVIDIA first; `.deb` distribution (see `DECISIONS.md`).
|
||||
|
||||
## Phase 0 — Workspace & spec *(done)*
|
||||
- [x] Create repo + docs scaffold
|
||||
- [x] Settle the foundational decisions D1–D11 (name, language, platform/GPU priority, MVP
|
||||
scope, trigger model, packaging, scope-of-action, GUI/tray)
|
||||
- [x] Lock the MVP scope (M1 + M3 + M4, NVIDIA-only)
|
||||
|
||||
## Phase 1 — MVP: capture *this* crash (Essential bundle, NVIDIA-only, CLI)
|
||||
- [ ] M1 sensor core (NVIDIA via nvidia-smi + hwmon for CPU/RAM/NVMe), stdlib-only
|
||||
- [ ] M3 crash-capture logger (CSV, fsync per sample, GPU-lost detection, rotation,
|
||||
`systemd --user` service)
|
||||
- [ ] Manual trigger mode first (`rigdoctor record start/stop`); other modes in Phase 4
|
||||
- [ ] M4 health report (Xid/panic/OOM/MCE/AER/thermal scan + driver-mismatch + snapshot,
|
||||
suggested fixes only — D9)
|
||||
- [ ] `--report` post-crash summary (max temps/power, throttle events, last N samples)
|
||||
- **Exit criteria:** user can run it during gaming and, after a freeze/black-screen, see the
|
||||
last readings + a plausible cause.
|
||||
|
||||
## Phase 2 — Live monitor (terminal)
|
||||
- [ ] M2 TUI dashboard (current/min/max, grouped, throttle highlighting)
|
||||
- [ ] M8 basic alerting (overheat/throttle/GPU-lost notifications)
|
||||
|
||||
## Phase 3 — Diagnostics breadth
|
||||
- [ ] M5 system inventory + exportable report
|
||||
- [ ] M6 gaming environment checks (suggest-only)
|
||||
- [ ] SMART integration (smartmontools if present)
|
||||
|
||||
## Phase 4 — Desktop UI & installer
|
||||
- [ ] M10 desktop GUI (PySide6: dashboard, log browser, report viewer, logger controls)
|
||||
- [ ] M11 tray / menu-bar applet (QSystemTrayIcon: live M1 readouts + Run Diagnostic +
|
||||
supporting actions — D13)
|
||||
- [ ] Guided diagnostic session (pick game → focused M3 capture → M4 scan → findings),
|
||||
shared by tray/GUI/CLI
|
||||
- [ ] Logger trigger modes: always-on + game-launch (D12 — wrapper first:
|
||||
`rigdoctor wrap %command%` + global Steam compat-tool; zero-config watcher
|
||||
(Steam RunningAppID + /proc) and GameMode hook follow)
|
||||
- [ ] M9 interactive installer (GPU detection, module menu, apt dependency resolution,
|
||||
service enable + trigger-mode pick)
|
||||
- [ ] `.deb` packaging (D8) declaring per-bundle deps incl. python3-pyside6 for Desktop UI
|
||||
|
||||
## Phase 5 — Breadth (later)
|
||||
- [ ] AMD GPU support in M1 (Steam Deck / Radeon)
|
||||
- [ ] Intel GPU best-effort
|
||||
- [ ] (Later, separate milestone) Optional auto-apply of suggested fixes behind explicit
|
||||
consent — currently out of scope (D9)
|
||||
|
||||
> **Out of scope:** stress/repro module (D7); multi-distro support and packaging beyond
|
||||
> Ubuntu/apt + `.deb` (D15) — a thin seam is kept but not built out.
|
||||
|
||||
> **Dropped:** stress / repro module (D7) — not on the roadmap.
|
||||
</content>
|
||||
+156
@@ -0,0 +1,156 @@
|
||||
# RigDoctor — Product Specification (DRAFT v0.2)
|
||||
|
||||
> Living spec. The foundational decisions (name, language, platform/GPU priority, MVP scope,
|
||||
> packaging, scope-of-action, GUI/tray) are now settled — see `DECISIONS.md` (D1–D11).
|
||||
> Anything still marked **[OPEN]** is tracked there (D12–D15).
|
||||
|
||||
## 1. Vision
|
||||
|
||||
A single, modular toolkit that lets a Linux gamer **monitor**, **diagnose**, and
|
||||
**understand the health** of their machine — especially the hard-to-catch faults that happen
|
||||
under gaming load. The goal is to make otherwise near-impossible-to-investigate problems
|
||||
(random freezes, the screen suddenly going black mid-game, GPU "lost" events) tractable by
|
||||
capturing the right data automatically and explaining it in plain language. Users install
|
||||
only the modules relevant to their hardware via an interactive installer.
|
||||
|
||||
**Motivating cases:**
|
||||
- An RTX 3070 intermittently falls off the PCIe bus under heavy GPU/VRAM load
|
||||
(`Xid 79` / `Xid 154`, `NV_ERR_GPU_IS_LOST`). The crash is OS-independent (also seen on
|
||||
Windows in Tarkov) and load-correlated, pointing at hardware (VRAM thermals / power
|
||||
transients / PCIe signal integrity).
|
||||
- A monitor going black mid-session (e.g. during Path of Exile) — is it the GPU dropping,
|
||||
a driver reset, a cable/DP link issue, or a power event? Manually impossible to tell after
|
||||
the fact.
|
||||
|
||||
In both cases the last sensor readings before the freeze are normally never captured.
|
||||
RigDoctor's crash-safe logger is designed to fix exactly that.
|
||||
|
||||
## 2. Goals / Non-goals
|
||||
|
||||
**Goals**
|
||||
- Catch and preserve the machine's state in the seconds before a hard freeze.
|
||||
- Make hard-to-investigate gaming faults debuggable: collect scattered signals, correlate
|
||||
them, and explain them.
|
||||
- Offer **three ways to run**: full **CLI / headless** (works over SSH), a **desktop GUI**,
|
||||
and a **system-tray / top-menu-bar applet** with quick actions. (D10/D11)
|
||||
- Be modular: a novice installs a one-click "monitor + capture + report" bundle; a power
|
||||
user installs everything including the GUI, tray, and diagnostics.
|
||||
- Low overhead; safe defaults; no telemetry/phone-home.
|
||||
|
||||
**Non-goals (for now)**
|
||||
- Not a benchmark-score / e-peen leaderboard tool.
|
||||
- **Not a stress-test / load-generator** — explicitly out of scope (D7). Users can run
|
||||
existing tools (gpu-burn, vkmark, stress-ng) alongside the logger if they want.
|
||||
- Not an overclocking utility.
|
||||
- **Not (yet) an auto-fixer.** RigDoctor is **read-only**: it diagnoses and *suggests*
|
||||
actions (with the exact command where possible) but does not apply changes itself in this
|
||||
stage. Auto-apply is a deliberate later milestone behind explicit consent. (D9)
|
||||
|
||||
## 3. Target users & platforms
|
||||
|
||||
- **Users:** Linux gamers from novice ("is my PC ok?" + alerts, via GUI/tray) to advanced
|
||||
(raw logs, log forensics, headless capture over SSH).
|
||||
- **Distros:** **Ubuntu first** (and Debian via `apt`). Arch (`pacman`) / Fedora (`dnf`) /
|
||||
openSUSE (`zypper`) best-effort later, behind the distro abstraction. (D3)
|
||||
- **GPUs:** **NVIDIA first** (seed hardware). AMD second, Intel third — behind the vendor
|
||||
abstraction. (D4)
|
||||
- **Display:** GUI and tray must work under both X11 and Wayland on Ubuntu/GNOME; **all core
|
||||
functionality must also work fully headless** (CLI, over SSH, no display).
|
||||
- **Runtime:** Python 3 + Qt (PySide6). Core/CLI/daemon are stdlib-only; GUI and tray add
|
||||
PySide6. (D2)
|
||||
|
||||
## 4. Functional requirements (by module)
|
||||
|
||||
> Module IDs are stable. **M7 (stress/repro) is dropped** (D7). M10/M11 are the new GUI and
|
||||
> tray modules.
|
||||
|
||||
### M1 — Sensor core (foundation, always installed)
|
||||
Unified sampling of: CPU temp/freq/load, per-core; GPU temp/(mem-junction if exposed)/
|
||||
clocks/power/util/fan/VRAM/PCIe gen+width/throttle reasons; RAM (DDR5 SPD) temps; NVMe/SSD
|
||||
temps; system load. Pluggable sources: `nvidia-smi`/NVML (first), `amdgpu` sysfs/`rocm-smi`
|
||||
(later), `/sys/class/hwmon`, `lm-sensors`. Stdlib-only.
|
||||
|
||||
### M2 — Live monitor (TUI)
|
||||
HWMonitor-style terminal dashboard: current / session-min / session-max per sensor, grouped
|
||||
by subsystem, with throttle/critical highlighting. Refresh rate configurable. The terminal
|
||||
face of the live data (the GUI in M10 presents the same data graphically).
|
||||
|
||||
### M3 — Crash-capture logger (daemon)
|
||||
Headless background sampler that writes CSV/JSON and **`fsync`s every sample** so the last
|
||||
readings survive a hard lock. Detects GPU "lost"/hang (query timeout) and writes a marker.
|
||||
Ring-buffer/rotation to bound disk use. Runs as a `systemd --user` service. **Trigger model
|
||||
is user-selectable** (D6): always-on, game-launch-triggered, or manual (CLI / tray button).
|
||||
Stdlib-only.
|
||||
|
||||
### M4 — Health report (one-shot)
|
||||
Scans `journalctl` for Xid, kernel panics, OOM-killer, MCE, PCIe AER, thermal events; checks
|
||||
SMART disk health; flags driver/library version mismatches; verifies GPU firmware; prints a
|
||||
prioritized findings list with plain-language explanations and **suggested** fixes (read-only
|
||||
per D9). Reuses M1 for a live snapshot.
|
||||
|
||||
### M5 — System inventory
|
||||
CPU/GPU/motherboard/BIOS/RAM/storage, kernel, driver versions, X11/Wayland + compositor,
|
||||
PCIe topology. Exportable (Markdown/JSON) to paste into forum/bug reports.
|
||||
|
||||
### M6 — Gaming environment checks
|
||||
Detects & evaluates: GPU power profile / persistence mode, CPU governor, Proton/Wine/Steam
|
||||
versions, GameMode, MangoHud, shader cache, swappiness, hugepages, CPU mitigations,
|
||||
PCIe ASPM. Flags settings that hurt stability/performance and **suggests** the fix command
|
||||
(read-only per D9).
|
||||
|
||||
### M8 — Alerting
|
||||
Threshold + event alerts (desktop notification / sound / log) on overheat, throttle,
|
||||
GPU-lost, SMART failure. Surfaces in the tray applet (M11) when installed. Optional.
|
||||
|
||||
### M10 — Desktop GUI (PySide6/Qt)
|
||||
Full graphical front-end over the core engine: live dashboard (graphs/gauges), browse and
|
||||
visualize captured crash logs, run a health report and view findings, view system inventory,
|
||||
toggle the logger and its trigger mode. Mirrors CLI capability for non-terminal users.
|
||||
Optional module (pulls in PySide6).
|
||||
|
||||
### M11 — System-tray / menu-bar applet (PySide6/Qt)
|
||||
A small always-available applet in the Linux top menu bar (system tray /
|
||||
StatusNotifierItem; on Ubuntu/GNOME via the AppIndicator extension). Optional module.
|
||||
Contents (D13):
|
||||
- **At-a-glance live readouts (from M1)** in the dropdown, refreshed periodically:
|
||||
**CPU temp, GPU temp, memory used/total** (e.g. "14 GB / 32 GB"); a status dot
|
||||
(normal / throttling / alert) alongside.
|
||||
- **Run Diagnostic** — the headline action; launches the *guided diagnostic session* below.
|
||||
- **Supporting actions:** Open dashboard (M10), Start/Stop recording, Snapshot now, Quit.
|
||||
|
||||
### Guided diagnostic session (M3 + M4 workflow)
|
||||
The "Run Diagnostic" flow available from the tray (M11), the GUI (M10), and the CLI:
|
||||
1. **Pick a game to focus on** — chosen from detected/installed games (via the D12 game
|
||||
detection: Steam library / recently played / running process).
|
||||
2. **Collect** — RigDoctor runs a focused crash-capture session (M3) scoped to that game:
|
||||
it logs while you play, bracketing the session via the D12 wrapper/watcher.
|
||||
3. **Scan & analyze** — when the session ends (or after a crash + reboot), it runs the
|
||||
health report (M4) over the captured window + system logs to surface likely issues.
|
||||
4. **Present findings** — a prioritized, plain-language list with suggested fixes
|
||||
(read-only, D9).
|
||||
This is the one-click expression of the seed use case; it orchestrates existing modules
|
||||
rather than adding a new one.
|
||||
|
||||
### M9 — Installer (see ARCHITECTURE §5)
|
||||
Interactive wizard: detect GPU vendor (NVIDIA-first) → present module menu grouped into
|
||||
bundles with descriptions and the exact packages each needs → resolve & install (apt first)
|
||||
→ write config → optionally enable the `systemd --user` logger service and pick its trigger
|
||||
mode. Delivered alongside the `.deb` (D8). Module list/bundling is final per D14.
|
||||
|
||||
## 5. Non-functional requirements
|
||||
- **Zero hard deps for the core/CLI/daemon** — Python stdlib + tools already present. **Qt
|
||||
(PySide6) is required only by the GUI (M10) and tray (M11) modules**, declared in the
|
||||
`.deb` and pulled in only when those modules are selected.
|
||||
- **Crash-safe logging** — flush + `fsync` per sample; bounded disk usage.
|
||||
- **Low overhead** — default ≤1 Hz sampling; negligible CPU/GPU cost. The always-on daemon
|
||||
is stdlib-only (no Qt loaded) so it stays tiny.
|
||||
- **Headless-equivalent** — every diagnostic capability is reachable from the CLI; the GUI
|
||||
and tray are conveniences over the same engine, never the only way to do something.
|
||||
- **Privacy** — local only; inventory export is opt-in and reviewable; no telemetry.
|
||||
- **Portability** — graceful degradation when a sensor/tool is unavailable (N/A, not crash).
|
||||
|
||||
## 6. Open questions
|
||||
None tracked — all foundational decisions (D1–D15) are settled; see `DECISIONS.md`. Detail
|
||||
to flesh out during build: the tray's supporting-action set and per-module apt package names.
|
||||
Packaging/deps are **Ubuntu/apt-only** (D15) — no multi-distro mapping is maintained.
|
||||
</content>
|
||||
Reference in New Issue
Block a user