feat: add Sysinternals sigcheck output as a material type#3184
Merged
Conversation
Adds a SYSINTERNALS_SIGCHECK material type that ingests Sysinternals sigcheck CSV output. Because the policy engine evaluates JSON only, the CSV is transformed into a JSON array of records at evaluation time (delimiter auto-detected, BOM-aware), consistent with the existing JUnit and Jacoco handling. The crafter validates the report and stores the original CSV in the CAS. Assisted-by: Claude Code Signed-off-by: Javier Rodriguez <javier@chainloop.dev> Chainloop-Trace-Sessions: 8fed5172-740a-4468-9572-6e160777444d
Contributor
AI Session Analysis
|
| Status | Policy | Material | Messages |
|---|---|---|---|
| ✅ Passed | ai-config-ai-agents-allowed |
ai-coding-session-8fed51 |
- |
| ✅ Passed | ai-config-no-dangerous-commands |
ai-coding-session-8fed51 |
- |
| ✅ Passed | ai-config-no-secrets |
ai-coding-session-8fed51 |
- |
| ✅ Passed | ai-config-mcp-servers-allowed |
ai-coding-session-8fed51 |
- |
Powered by Chainloop and Chainloop Trace
migmartri
approved these changes
Jun 10, 2026
migmartri
left a comment
Member
There was a problem hiding this comment.
We probably want to update the readme and the documentation page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a
SYSINTERNALS_SIGCHECKmaterial type that ingests Sysinternals sigcheck output.sigcheck emits CSV, but the Rego policy engine evaluates JSON only. The material is therefore transformed into a JSON array of records at evaluation time (delimiter auto-detected between comma and tab, BOM-aware), following the existing JUnit and Jacoco handling in
GetEvaluableContent. Policies can then read the records underinput.elements[_].The crafter validates the report via a structural fingerprint (presence of the
PathandVerifiedcolumns), stores the original CSV in the CAS, and annotates the material with the tool name.This change was developed with AI assistance (Claude Code), as disclosed via the
Assisted-bycommit trailer.