junit-failure-fingerprint
Cluster JUnit failures into stable fingerprints so CI triage focuses on root causes, not noisy one-off logs.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/daniellummis/junit-failure-fingerprintJUnit Failure Fingerprint
Use this skill to compress noisy JUnit failures/errors into repeatable fingerprints.
What this skill does
- Scans one or more JUnit XML files
- Extracts only failing/error test cases
- Normalizes volatile tokens (IDs, numbers, line numbers, addresses, UUIDs)
- Generates stable fingerprint hashes for similar root-cause failures
- Emits grouped triage output (
textorjson)
Inputs
Optional:
JUNIT_GLOB(default:test-results/**/*.xml)TOP_N(default:20)OUTPUT_FORMAT(textorjson, default:text)STACK_LINES(default:3) — number of normalized stack lines to include in fingerprint seedFAIL_ON_FAILURES(0or1, default:0) — exit non-zero when any failures/errors are found
Run
Text report:
JUNIT_GLOB='artifacts/junit/**/*.xml' \
TOP_N=15 \
bash skills/junit-failure-fingerprint/scripts/fingerprint-junit.sh
JSON output for CI annotation/upload:
JUNIT_GLOB='artifacts/junit/**/*.xml' \
OUTPUT_FORMAT=json \
FAIL_ON_FAILURES=1 \
bash skills/junit-failure-fingerprint/scripts/fingerprint-junit.sh
Run with bundled fixtures:
JUNIT_GLOB='skills/junit-failure-fingerprint/fixtures/*.xml' \
bash skills/junit-failure-fingerprint/scripts/fingerprint-junit.sh
Output contract
- Exit
0by default (reporting mode) - Exit
1ifFAIL_ON_FAILURES=1and at least one failure/error is found - In
textmode, prints summary + top fingerprints - In
jsonmode, prints machine-readable groups and per-case detail
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-daniellummis-junit-failure-fingerprint": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
github-actions-recovery-latency-audit
Measure GitHub Actions failure recovery latency and unresolved incident age by workflow group.
github-actions-cache-hardening-audit
Audit GitHub Actions workflow cache usage for poisoning, keying, and secret-path risks.
render-env-guard
Preflight-check Render service environment variables before deploys; catches missing keys and placeholder/template values that commonly break production rollouts.
github-actions-trigger-health-audit
Audit GitHub Actions run health by trigger event and workflow so flaky or noisy automation sources are easy to prioritize.
github-actions-run-gap-audit
Detect GitHub Actions workflow groups that stopped running on their normal cadence using median run intervals and current inactivity gap.