feat(llm-security): wire SIG scanner into orchestrator and policy
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V3s6WnubSSrFjAQTLQdVbG
This commit is contained in:
parent
9e0a09ab1f
commit
e46bf12b86
4 changed files with 64 additions and 1 deletions
|
|
@ -110,6 +110,7 @@ import { scan as supplyChainScan } from './supply-chain-recheck.mjs';
|
|||
import { scan as workflowScan } from './workflow-scanner.mjs';
|
||||
import { scan as tfaScan } from './toxic-flow-analyzer.mjs';
|
||||
import { scan as trgScan } from './trigger-scanner.mjs';
|
||||
import { scan as sigScan } from './signature-scanner.mjs';
|
||||
|
||||
const SCANNERS = [
|
||||
{ name: 'unicode', fn: unicodeScan },
|
||||
|
|
@ -123,6 +124,7 @@ const SCANNERS = [
|
|||
{ name: 'supply-chain', fn: supplyChainScan },
|
||||
{ name: 'workflow', fn: workflowScan },
|
||||
{ name: 'trg', fn: trgScan },
|
||||
{ name: 'sig', fn: sigScan },
|
||||
{ name: 'toxic-flow', fn: tfaScan, requiresPriorResults: true },
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue