con un clic
pixee-api
Send authenticated requests to any Pixee REST API endpoint.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Send authenticated requests to any Pixee REST API endpoint.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Describe the global flags, output format, exit codes, error handling, and TLS trust troubleshooting used by every Pixee CLI subcommand.
List, view, and delete Pixee analyses with filters and optional polling until the analysis reaches a terminal state.
List Pixee integrations to discover the id, type, and capabilities of each scanner integration registered with the org.
List, view, analyze, create, and delete Pixee scans with filters for repository, branch, detector tool, and analysis state.
List, create, update, run, and delete Pixee workflows on a repository with partial-update semantics across event kinds.
List, view, and delete Pixee repositories with shared name-or-UUID resolution used by every targeted subcommand.
| name | pixee-api |
| description | Send authenticated requests to any Pixee REST API endpoint. |
| metadata | {"version":"1.0.0","openclaw":{"category":"developer-tools","requires":{"bins":["pixee"]},"cliHelp":"pixee api --help"}} |
PREREQUISITE: Read
../pixee-shared/SKILL.mdfor global flags, exit codes, and error handling. Those conventions apply to every command in this skill. See../pixee-auth/SKILL.mdif authentication needs to be configured.
The escape-hatch subcommand. pixee api sends authenticated HTTP requests to any Pixee REST API
endpoint, modeled on gh api. Use it when a dedicated subcommand does not yet exist, or when an
agent needs to compose multi-step operations directly against the API.
The Pixee API is a HAL (Hypertext Application Language) API: every response contains _links that
name the related resources. Start at /api/v1 and follow _links to reach every other endpoint.
Do not hardcode paths beyond the root.
# Inspect the root to find the available resources
pixee api /api/v1
# Follow a link — here, the "repositories" link on the root
pixee api /api/v1/repositories --paginate
# Each resource has its own _links; follow them to related resources
pixee api /api/v1/repositories/<id>
pixee api closely mirrors gh api:
GET. pixee api switches to POST automatically when any -f / -F field
is supplied. Override explicitly with --method <VERB>.-f key=value adds a raw string field.-F key=value adds a typed field, converting true/false to booleans and numeric strings to
numbers.--input <file> reads a pre-constructed JSON body from a file. Use --input - to read from
stdin.pixee does not embed a jq implementation; pipe to jq externally for
filtering or transformation.By default, paginated endpoints return only the first page. Add --paginate to let pixee walk
the collection automatically:
pixee api /api/v1/repositories --paginate
With --paginate, pixee follows _links.next until it is absent, merges each page's
_embedded.items array, and emits a single flat JSON array. The HAL envelope (_links, page,
total) is stripped from the output.
This is pagination-strategy-agnostic: the CLI does not construct page-number query parameters
itself, so if the API migrates to a different strategy the same --paginate flag continues to
work.
# POST a workflow with typed fields (auto-switches to POST because fields are present)
pixee api /api/v1/repositories/<id>/workflows \
-f event=new-scan \
-F branch=main \
-f action=none
# Or submit a pre-constructed body
pixee api /api/v1/repositories/<id>/workflows --input workflow.json
# Filter a paginated response externally with jq
pixee api /api/v1/repositories --paginate | jq '.[] | .full_name'
--paginate to collect a full collection; do not hand-roll page-number query
parameters._links from /api/v1; do not inject the OpenAPI specification
into agent context.pixee repo list, pixee workflow list) when they exist — they
encode best practices on top of pixee api. Use pixee api as the escape hatch for operations
that do not yet have a subcommand.