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:
Kjell Tore Guttormsen 2026-06-20 09:41:32 +02:00
commit b50313e461
4 changed files with 62 additions and 1 deletions

View file

@ -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 },
];