macos-telemetry-probe — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited macos-telemetry-probe (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Add high-signal app instrumentation without leaving noisy permanent logs. Prefer Apple's unified logging and verify events after build/run.
Logger from OSLog.import OSLog
private let logger = Logger(
subsystem: Bundle.main.bundleIdentifier ?? "SampleApp",
category: "Sidebar"
)
@MainActor
func selectItem(_ item: SidebarItem) {
logger.info("Selected sidebar item: \(item.id, privacy: .public)")
selection = item.id
}Use feature categories like Windowing, Commands, MenuBar, Sidebar, Sync, or Import.
macos-runtime-debugger; if present, prefer ./script/build_and_run.sh --telemetry or --logs. log stream --style compact --predicate 'process == "AppName"'
log stream --style compact --predicate 'subsystem == "com.example.app" && category == "Sidebar"'Confirm the app builds, the relevant action emits exactly one clear line or bounded sequence, logs filter by process/subsystem/category, no sensitive payloads are written, and temporary debug noise is gone. If the task is mainly crash/backtrace work, switch to macos-runtime-debugger.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.