원클릭으로
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.