tuist-flaky-test-stabilizer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited tuist-flaky-test-stabilizer (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.
Use this skill to move from flaky-test evidence to a small code or test fix.
Accept any of:
Module/Suite/testName identifiertuist test case list --flaky --json --page-size 50
tuist test case show <id-or-identifier> --json
tuist test case run list <module/suite/test> --flaky --json
tuist test case run show <run-id> --jsonCollect:
Open the reported source line, then inspect setup, teardown, shared fixtures, global state, async waits, mocked services, file system use, and clock/timezone dependencies.
Common root causes:
condition-based waits.
Run the narrow test repeatedly:
xcodebuild test \
-workspace <workspace> \
-scheme <scheme> \
-only-testing <module>/<suite>/<test> \
-test-iterations 50 \
-run-tests-until-failureIf the flake depends on parallelism, broaden the scope:
xcodebuild test \
-workspace <workspace> \
-scheme <scheme> \
-only-testing <module> \
-parallel-testing-enabled YES \
-test-iterations 20 \
-run-tests-until-failureUse Thread Sanitizer when a data race is plausible and the project can run with TSan enabled.
Report the root cause, fix, before/after evidence, exact verification command, and any residual risk if the original flake could not be reproduced locally.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.