-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from AkihiroSuda/dev
An initial support of Trivy plugin mode
- Loading branch information
Showing
2 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Trivy plugin manifest <https://aquasecurity.github.io/trivy/v0.56/docs/plugin/developer-guide/> | ||
name: "vexllm" | ||
version: "0.1.0-beta.0" | ||
repository: github.com/AkihiroSuda/vexllm | ||
maintainer: AkihiroSuda | ||
# TODO: support output mode | ||
summary: Silence negligible CVE alerts using LLM | ||
description: |- | ||
A Trivy plugin that silences negligible CVE alerts using LLM. | ||
platforms: | ||
- selector: | ||
os: darwin | ||
arch: amd64 | ||
uri: https://github.com/AkihiroSuda/vexllm/releases/download/v0.1.0-beta.0/vexllm-v0.1.0-beta.0.darwin-amd64.tar.gz | ||
bin: ./vexllm | ||
- selector: | ||
os: darwin | ||
arch: arm64 | ||
uri: https://github.com/AkihiroSuda/vexllm/releases/download/v0.1.0-beta.0/vexllm-v0.1.0-beta.0.darwin-arm64.tar.gz | ||
bin: ./vexllm | ||
- selector: | ||
os: linux | ||
arch: amd64 | ||
uri: https://github.com/AkihiroSuda/vexllm/releases/download/v0.1.0-beta.0/vexllm-v0.1.0-beta.0.linux-amd64.tar.gz | ||
bin: ./vexllm | ||
- selector: | ||
os: linux | ||
arch: arm64 | ||
uri: https://github.com/AkihiroSuda/vexllm/releases/download/v0.1.0-beta.0/vexllm-v0.1.0-beta.0.linux-arm64.tar.gz | ||
bin: ./vexllm |