feat(llm-security): wire AST 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
e497bb768c
commit
b50313e461
4 changed files with 62 additions and 1 deletions
|
|
@ -111,6 +111,7 @@ 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';
|
||||
import { scan as astScan } from './ast-taint-scanner.mjs';
|
||||
|
||||
const SCANNERS = [
|
||||
{ name: 'unicode', fn: unicodeScan },
|
||||
|
|
@ -125,6 +126,7 @@ const SCANNERS = [
|
|||
{ name: 'workflow', fn: workflowScan },
|
||||
{ name: 'trg', fn: trgScan },
|
||||
{ name: 'sig', fn: sigScan },
|
||||
{ name: 'ast', fn: astScan },
|
||||
{ name: 'toxic-flow', fn: tfaScan, requiresPriorResults: true },
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue