用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/alpha-omega-security/scrutineer --skill sbom命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Default pipeline scrutineer runs when a repository is added. Triggers a standard set of other skills in parallel, then writes a short summary of what was enqueued. Edit the list below to change the default scan coverage without touching scrutineer's Go code.
Run bandit against the Python source in the repository and map its hits into the findings shape.
Re-run a finding's reproduction against current HEAD, test its attack tree, grade five fixed evidence criteria, and account for every matched design control.
基于 SOC 职业分类
正在显示 SKILL.md
| name | sbom |
| description | Generate a CycloneDX SBOM for the repository via `git-pkgs sbom`. Stored verbatim on the scan. |
| license | MIT |
| compatibility | Requires the `git-pkgs` CLI on PATH. |
| metadata | {"scrutineer.model":"mid","scrutineer.version":1,"scrutineer.output_file":"report.json","scrutineer.output_kind":"freeform","scrutineer.paths":["**"],"scrutineer.ignore_paths":["**/node_modules/**","**/dist/**","**/generated/**","**/__generated__/**","**/*.min.js","**/*.min.css"]} |
./src — the cloned repository./scripts/generate.sh — the wrapper script./report.json — write the SBOM herescripts/generate.sh — runs git-pkgs sbom --format json inside ./src and emits the CycloneDX JSON document to stdout.bash scripts/generate.sh > ./report.json
If the script exits non-zero, write {"error": "<stderr message>"} to ./report.json so the failure is visible on the scan page.
The output is consumed as freeform (stored verbatim; no post-processing) so the CycloneDX document is preserved exactly as git-pkgs produced it.