Skip to content

feat(report): add remediation and recommendation details to pipeline summary#586

Open
a-oren wants to merge 2 commits into
guacsec:mainfrom
a-oren:feat/add-remediation-recommendation-summary
Open

feat(report): add remediation and recommendation details to pipeline summary#586
a-oren wants to merge 2 commits into
guacsec:mainfrom
a-oren:feat/add-remediation-recommendation-summary

Conversation

@a-oren

@a-oren a-oren commented Jul 22, 2026

Copy link
Copy Markdown
Contributor

Summary

  • Surfaces trusted-content remediations and recommendations in the Tekton task console output
  • Previously this data was only available in the saved JSON report file; now it appears inline after the vulnerability counts
  • Supports the Lightwell demo (Act 2: build-time guardrail) by showing which vulnerable dependencies have trusted-content replacements

Changes

  • docker-image/scripts/trustify-da.sh: Added two new sections to the console summary:
    • Remediations (per source): count + list of dependencies with trustedContent replacements and their CVEs
    • Recommendations (per provider): count + list of dependencies with trusted-content alternatives

Test plan

  • Verified jq queries against trustify-dependency-analytics test data (report.json) — correct output with remediations and recommendations
  • Verified against trustify-da-java-client test data (analysis-report.json) — handles empty remediations gracefully
  • No output produced when no remediations/recommendations exist (empty case)

🤖 Generated with Claude Code

Summary by Sourcery

Surface trusted-content remediation and recommendation details in the Trustify dependency analytics pipeline summary output.

New Features:

  • Display per-source remediation counts and lists of dependencies with trusted-content replacements and associated CVEs in the Tekton task console summary.
  • Display per-provider recommendation counts and lists of dependencies with trusted-content alternative suggestions in the console summary when available.

…summary

The Tekton task console output now surfaces trusted-content remediations
and recommendations that were previously only available in the JSON report.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@sourcery-ai

sourcery-ai Bot commented Jul 22, 2026

Copy link
Copy Markdown

Reviewer's Guide

Adds remediation and recommendation details to the Trustify dependency analytics Tekton console summary, including counts and detailed listings sourced via jq from the JSON report.

File-Level Changes

Change Details Files
Extend per-provider/source console summary to include remediation counts and detailed dependency mappings when available.
  • Compute remediation count from the JSON report and print it alongside existing vulnerability severity counts.
  • When remediations exist, use jq to extract dependencies and transitive dependencies with trustedContent remediations, including original and replacement refs plus associated CVEs, and print them in a formatted list.
  • Ensure output is suppressed when no remediations are present by gating jq listing on the remediation count.
docker-image/scripts/trustify-da.sh
Surface trusted-content recommendations per provider with counts and per-dependency suggestions.
  • Discover recommendation sources under each provider and print a per-source total recommendation count.
  • When recommendations exist, iterate recommended dependencies and print their refs and recommended replacements in a readable format.
  • Handle absence of recommendations gracefully by defaulting counts to zero and skipping detailed output.
docker-image/scripts/trustify-da.sh

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@a-oren
a-oren requested a review from ruromero July 22, 2026 17:37

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey - I've found 1 issue

Prompt for AI Agents
Please address the comments from this code review:

## Individual Comments

### Comment 1
<location path="docker-image/scripts/trustify-da.sh" line_range="118" />
<code_context>
+              (.issues // [])[] | select(.remediation.trustedContent.ref != null) |
+              {ref: $t.ref, tc: .remediation.trustedContent.ref, cves: ((.cves // [.id]) | join(", "))}
+            ]
+          ] | flatten | unique_by(.ref + .tc) | .[] |
+          "      \(.ref)\n        → \(.tc)\n        CVEs: \(.cves)"
+        ' <<< "$report"
</code_context>
<issue_to_address>
**suggestion (bug_risk):** Avoid potential collisions in `unique_by(.ref + .tc)` by using a composite key.

Concatenating `ref` and `tc` can cause collisions when different `(ref, tc)` pairs produce the same string (e.g. `"ab" + "c"` vs `"a" + "bc"`). Use a composite key instead:

```jq
unique_by({ref, tc})
```

This keeps the intended behavior while ensuring correct deduplication.

```suggestion
          ] | flatten | unique_by({ref, tc}) | .[] |
```
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

(.issues // [])[] | select(.remediation.trustedContent.ref != null) |
{ref: $t.ref, tc: .remediation.trustedContent.ref, cves: ((.cves // [.id]) | join(", "))}
]
] | flatten | unique_by(.ref + .tc) | .[] |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (bug_risk): Avoid potential collisions in unique_by(.ref + .tc) by using a composite key.

Concatenating ref and tc can cause collisions when different (ref, tc) pairs produce the same string (e.g. "ab" + "c" vs "a" + "bc"). Use a composite key instead:

unique_by({ref, tc})

This keeps the intended behavior while ensuring correct deduplication.

Suggested change
] | flatten | unique_by(.ref + .tc) | .[] |
] | flatten | unique_by({ref, tc}) | .[] |

Use `while IFS= read -r` instead of `for ... in` to iterate over
source names, preventing names like "Red Hat Product Security" from
being split on whitespace.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@codecov-commenter

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 91.01%. Comparing base (156bb77) to head (da4dc83).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main     #586   +/-   ##
=======================================
  Coverage   91.01%   91.01%           
=======================================
  Files          38       38           
  Lines        8001     8001           
  Branches     1395     1395           
=======================================
  Hits         7282     7282           
  Misses        719      719           
Flag Coverage Δ
unit-tests 91.01% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants