원클릭으로
pixee-preferences
Read and write Pixee organization preferences from files or stdin with optimistic concurrency handled by the CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read and write Pixee organization preferences from files or stdin with optimistic concurrency handled by the CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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-preferences |
| description | Read and write Pixee organization preferences from files or stdin with optimistic concurrency handled by the CLI. |
| metadata | {"version":"1.0.0","openclaw":{"category":"developer-tools","requires":{"bins":["pixee"]},"cliHelp":"pixee organization preferences --help"}} |
PREREQUISITES: Read
../pixee-shared/SKILL.mdfor global flags, exit codes, and error handling, and../pixee-auth/SKILL.mdif authentication needs to be configured.
Organization preferences are a freeform markdown blob (≤10,000 characters) that the Pixee
platform applies to every analysis run for the organization. The content shapes both triage
(is a given finding a real risk for this org?) and remediation (how should the fix look in
this codebase?), and is stored as a single document with audit metadata: content,
updated_at, updated_by, org_id. The MVP hardcodes org_id to default-organization;
an --org-id flag is planned once the platform supports multi-org.
pixee organization preferences get [--content-only]
Org: <id> / Updated: <iso> by <actor> header (colon
separated, no tabs, because the markdown body is multiline and tabs are reserved for list
commands), a blank line, then the content body emitted verbatim with no synthetic
trailing newline.--content-only prints the body alone, byte-for-byte. Designed for piping into a file,
less, bat, or a diff tool. No header, no trailing newline added.--output json (or --json) emits the full record including the HAL _links envelope.
See ../pixee-api/SKILL.md for HAL conventions; do not restate them in scripts.no organization preferences set. Branch on this for
fresh-organization flows.pixee organization preferences set (--from-file <path> | --content <string>)
--from-file or --content is required; passing both, or neither, is a
parse error (exit 1) before any network call.--from-file - reads content from stdin, enabling get-transform-set pipelines.If-Match: <etag> (or If-None-Match: * on first creation). Agents and scripts never
touch ETag headers directly.concurrent modification: another writer updated organization preferences between read and write; re-run to refresh. Re-running typically succeeds; if multiple writers race
repeatedly, refresh and re-author against the latest content.get (default header + body in text mode, full record in JSON
mode).Pixee resolves preferences per-analysis with strict fallback, no merging:
PIXEE.md at its root (even if empty), it is used exclusively.content, they are used.An empty PIXEE.md is a deliberate opt-out: a repo with one is treated as having
preferences, which silently shadows org preferences for that repo. Agents working in a
specific repo should check for PIXEE.md before assuming org preferences will apply.
Humans can author preferences in the Pixee web app under an organization's Settings → Preferences; the CLI and the web UI write the same resource.
Preferences come in three flavors:
For worked examples of each flavor, see references/preferences-authoring.md.
Treat those examples as starting points and adapt them to the org's stack, tone, and
compliance posture.
# Print the body verbatim, suitable for piping into an editor or less
pixee organization preferences get --content-only
# Pretty-print the record as JSON, then pull a single field with jq
pixee organization preferences get --json | jq -r '.updated_by'
# Walk to the canonical resource via HAL (do not hardcode the path)
href=$(pixee organization preferences get --json | jq -r '._links.self.href')
pixee api "$href"
# Author offline and push from a file
pixee organization preferences set --from-file ./pixee-preferences.md
# Compose inline from a heredoc for a quick one-off
pixee organization preferences set --content "$(cat <<'EOF'
# Risk Guidance
## SQL Injection
Prefer Spring NamedParameterJdbcTemplate with :namedParameters.
EOF
)"
# Round-trip through stdin (byte-identical when the transform is a no-op)
pixee organization preferences get --content-only \
| sed 's/old-vendor/new-vendor/g' \
| pixee organization preferences set --from-file -
# Retry the set on concurrent-modification conflicts
until pixee organization preferences set --from-file ./pixee-preferences.md; do
echo "retrying"
sleep 1
done
pixee-preferences.md in a repo root
or an internal docs repo) and push with --from-file. Reserve --content for one-liners
and shell heredocs.--content-only when piping into editors, diffs, or less. Use --output json for
programmatic inspection and HAL traversal.--from-file once approved.set call or refresh and re-author against the
latest content.PIXEE.md silently overrides org preferences for that repo. Agents working
inside a specific repository should check for PIXEE.md before assuming the org-level
document applies.