Meet your autonomous product security engineer. Pixee is the agentic AppSec platform that turns scanner noise into validated, prioritized risk and writes fixes as your developers would — ending the security backlog instead of growing it. Learn more at pixee.ai.
This repository distributes pixee, the official command-line interface for the Pixee platform. It
is intended for Pixee customers and gives authenticated access to the Pixee REST API through dedicated
subcommands and a generic pixee api passthrough, and ships with coding-agent skills so tools like
Claude Code and OpenAI Codex can drive it natively.
brew tap pixee/pixee
brew install pixeePre-compiled binaries for linux-x64, darwin-arm64, and windows-x64 are published as
assets on each GitHub Release. Download the archive
for your platform, extract the pixee binary, and place it on your PATH.
# Authenticate against a Pixee deployment
pixee auth login --server https://pixee.example.com --token <your-token>
# Send an authenticated request to any Pixee REST API endpoint
pixee api /api/v1/repositories --paginate
# List workflows configured for a repository
pixee workflow list --repo my-repoRun pixee --help to see every subcommand.
The Pixee CLI ships with skills.sh-formatted skills that teach coding agents
(Claude Code, OpenAI Codex, and others) how to drive the CLI. The skills live under
skills/ and are licensed separately under the Apache License, Version 2.0.
Install every skill at once:
npx skills add pixee/pixee-cli --allOmitting --all opens an interactive picker so you can choose which skills to install. Or add
individual skills directly with npx skills add pixee/pixee-cli --skill <name>:
pixee-shared— global flags, exit codes, error handling. Prerequisite for the others.pixee-auth— login, status, credential precedence, and fixing exit-code-2 failures.pixee-api— thepixee apiescape hatch and HAL discovery.pixee-repo—pixee repo listand the shared--reporesolution protocol.pixee-workflow— workflow list/create/update/delete, event kinds, severity filters, and partial-update semantics.