ワンクリックで
security-scan
Run a verifiable security scan (vulns, secrets, misconfig) over code you wrote or deps you added, before calling the work done
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run a verifiable security scan (vulns, secrets, misconfig) over code you wrote or deps you added, before calling the work done
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Catch bad React in your changes — run react-doctor's deterministic scan and fix what it flags
Drive a real browser verifiably — navigate, snapshot, act BY INDEX, extract; every step provable
Run multi-agent work as ONE provable causal DAG — parallel subagents, an Orchestrate graph, an immutable spec-seed
Author or connect a Model Context Protocol server so an agent gains new tools
Build automated pipelines that gate merges and ship reliably
Build reliable, resumable data connectors and transforms (ETL)
| name | security-scan |
| description | Run a verifiable security scan (vulns, secrets, misconfig) over code you wrote or deps you added, before calling the work done |
| version | 1 |
| trust | built-in |
When you've added or changed dependencies, written code that touches auth, secrets, subprocess calls, file I/O, or the network — or the user asks "is this secure?" — run a security scan before you finish.
Use the security_scan tool. It wraps the best scanner on the machine and is
read-only (never modifies files):
Calls:
security_scan with no args scans the project root.path to scan a subtree, or scanner to force trivy / pip-audit / bandit.For the user (or in CI) the same scan is korgex scan [path] — it exits nonzero when a
high/critical finding is present, so it gates a pipeline.
Each finding has kind (vuln | secret | misconfig | license), severity
(critical → low), id (CVE / rule), target (file or pkg@version), and a fix when
the scanner knows one. The scan is recorded to the verifiable ledger, so findings are
tamper-evident and traceable: korgex why <CVE-or-file> walks a finding back to the
prompt that introduced it, and korgex verify proves the report wasn't edited.
fix
version, remove and rotate the leaked secret, correct the misconfig — then re-scan
to confirm it's gone.