@blamejs/exceptd-skills 0.14.0 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +3 -1
- package/CHANGELOG.md +16 -0
- package/README.md +31 -0
- package/bin/exceptd.js +31 -1
- package/data/_indexes/_meta.json +3 -3
- package/data/_indexes/activity-feed.json +8 -8
- package/data/_indexes/catalog-summaries.json +2 -2
- package/data/_indexes/frequency.json +1413 -1
- package/data/playbooks/citation-hygiene.json +1 -1
- package/data/rfc-references.json +55757 -146
- package/lib/citation-resolve.js +226 -0
- package/lib/collectors/citation-hygiene.js +81 -1
- package/lib/cve-cli.js +51 -0
- package/lib/flag-suggest.js +1 -1
- package/lib/rfc-cli.js +68 -0
- package/lib/schemas/cve-catalog.schema.json +13 -0
- package/lib/source-ghsa.js +3 -0
- package/lib/source-osv.js +4 -0
- package/lib/validate-package.js +7 -2
- package/manifest.json +44 -44
- package/package.json +2 -2
- package/sbom.cdx.json +84 -39
- package/scripts/refresh-upstream-catalogs.js +12 -2
- package/sources/validators/cve-validator.js +46 -1
|
@@ -372,7 +372,7 @@
|
|
|
372
372
|
"confidence": "low",
|
|
373
373
|
"deterministic": false,
|
|
374
374
|
"false_positive_checks_required": [
|
|
375
|
-
"Resolve the identifier
|
|
375
|
+
"Resolve the identifier with `exceptd cve <id>` (catalog -> resolved cache -> one NVD lookup, then cached so sibling agents reuse it instead of each researching the same id). If it returns status=published with a product matching the surrounding claim, the citation is sound; record verified and demote to miss. For RFC numbers use `exceptd rfc <number> --check \"<claimed title>\"`.",
|
|
376
376
|
"If it resolves to a REJECTED / DISPUTED record at NVD, re-classify under rejected-or-disputed-cve rather than leaving it inconclusive."
|
|
377
377
|
]
|
|
378
378
|
},
|