Skip to content

Vulnetix/cli

Repository files navigation

Vulnetix CLI & GitHub Action

Automated vulnerability management for your CI/CD pipelines and development workflows.

Contents


GitHub Action

This GitHub Action provides the Vulnetix CLI for your workflows, enabling automated vulnerability scanning directly in your CI/CD pipeline.

Basic Usage

- name: Vulnetix Scan
  uses: Vulnetix/cli@main
  with:
    org-id: ${{ secrets.VULNETIX_ORG_ID }}

Workflow Examples

Scan on Pull Request

name: Security Scan
on: [pull_request]

jobs:
  vulnetix:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: Vulnetix/cli@main
        with:
          org-id: ${{ secrets.VULNETIX_ORG_ID }}

Upload Artifacts

- uses: Vulnetix/cli@main
  with:
    org-id: ${{ secrets.VULNETIX_ORG_ID }}
    task: upload
    artifact-path: ./reports/

See GitHub Actions documentation for complete configuration options, and Artifact Upload guide for uploading workflow artifacts to Vulnetix.

Other CI/CD Platforms

Platform Guide
GitLab CI GitLab pipeline integration
Azure DevOps Azure pipeline integration
Bitbucket Bitbucket pipeline integration

Claude Code Plugin

Integrate Vulnetix vulnerability intelligence directly into Claude Code with automated pre-commit scanning, six interactive analysis skills, and multi-hook architecture.

Install

Add the marketplace:

/plugin marketplace add Vulnetix/claude-code-plugin

Install the plugin:

/plugin install vulnetix@vulnetix-plugins

Upgrade

/plugin update vulnetix

Requires: Vulnetix CLI installed and authenticated (vulnetix auth login).

Full plugin documentation | Plugin repository


CLI Installation

Method Platforms Installation
Homebrew Linux, macOS brew install vulnetix/tap/vulnetix
Scoop Windows scoop install vulnetix
Nix Linux, macOS nix profile install github:Vulnetix/cli
Go Install All go install github.com/vulnetix/cli@latest
Binary Download All Direct download
From Source All Build from source

Architecture support: AMD64, ARM64, ARM, 386.

Quick Start

brew install vulnetix/tap/vulnetix
vulnetix auth login
vulnetix vdb status

See CLI Documentation for complete usage and command reference.


Available Tasks

Task Description Use Case
info Auth healthcheck (default) Verify credential setup

Documentation