gitextract_zre7wo39/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── camo-purge.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── AGENTS.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── Taskfile.yml ├── cmd/ │ ├── all.go │ ├── batt.go │ ├── curr.go │ ├── fans.go │ ├── guess.go │ ├── guess_test.go │ ├── hw.go │ ├── power.go │ ├── raw.go │ ├── root.go │ ├── temp.go │ ├── version.go │ └── volt.go ├── go.mod ├── go.sum ├── gosmc/ │ ├── .clang-format │ ├── LICENSE │ ├── README.md │ ├── go.mod │ ├── gosmc.go │ ├── smc.c │ ├── smc.h │ └── values.go ├── hid/ │ ├── get.go │ └── hid.go ├── main.go ├── output/ │ ├── influxoutput.go │ ├── influxoutput_test.go │ ├── jsonoutput.go │ ├── jsonoutput_test.go │ ├── output.go │ ├── output_test.go │ ├── outputfactory.go │ ├── outputfactory_test.go │ ├── tableoutput.go │ └── tableoutput_test.go ├── platform/ │ ├── get.go │ ├── mapping.go │ └── mapping_test.go ├── reports/ │ ├── report-a18.txt │ ├── report-intel-t2.txt │ ├── report-m1-max.txt │ ├── report-m1-pro-2.txt │ ├── report-m1-pro.txt │ ├── report-m1-ultra.txt │ ├── report-m2.txt │ ├── report-m3-max-2.txt │ ├── report-m3-max.txt │ ├── report-m3-pro-2.txt │ ├── report-m3-pro-3.txt │ ├── report-m3-pro.txt │ ├── report-m4-2.txt │ ├── report-m4-3.txt │ ├── report-m4-4.txt │ ├── report-m4-max.txt │ ├── report-m4-pro-2.txt │ ├── report-m4-pro.txt │ ├── report-m4.txt │ ├── report-m5-max-2.txt │ ├── report-m5-max.txt │ ├── report-m5-pro.txt │ ├── reports.go │ └── reports_test.go ├── smc/ │ ├── conv.go │ ├── conv_test.go │ ├── gen-sensors.sh │ ├── get.go │ ├── mapping_test.go │ ├── raw.go │ ├── rawtemp.go │ ├── rawtemp_test.go │ ├── sensors.go │ ├── smc.go │ └── smc_test.go ├── src/ │ ├── current.txt │ ├── fans.txt │ ├── power.txt │ ├── temp.txt │ └── voltage.txt └── stress/ └── stress_darwin.go