10-layer defense pipeline with kill chain mapping, self-healing, self-learning, and compliance reporting. Local-first, zero cloud deps. - 72 detection rules across 7 kill chain phases - 294 unit tests, 500+ attack corpus samples - Management dashboard (Next.js 15, 10 pages) - Automated resistance testing (2x daily, 31 probes) - MITRE ATLAS, OWASP LLM Top 10, EU AI Act compliance - Integrations: Next.js middleware, Ollama, n8n - PostgreSQL 17 + pgvector for persistent learning
19 lines
802 B
TypeScript
19 lines
802 B
TypeScript
/**
|
|
* @module @shieldx/core/learning
|
|
* Self-evolution engine — pattern storage, feedback processing,
|
|
* drift detection, attack graph, red team, active learning,
|
|
* federated sync, and conversation learning.
|
|
*/
|
|
|
|
export { PatternStore } from './PatternStore.js'
|
|
export { EmbeddingStore } from './EmbeddingStore.js'
|
|
export { FeedbackProcessor } from './FeedbackProcessor.js'
|
|
export { ThresholdAdaptor } from './ThresholdAdaptor.js'
|
|
export { PatternEvolver } from './PatternEvolver.js'
|
|
export { RedTeamEngine } from './RedTeamEngine.js'
|
|
export { DriftDetector } from './DriftDetector.js'
|
|
export { AttackGraph } from './AttackGraph.js'
|
|
export { ActiveLearner } from './ActiveLearner.js'
|
|
export { FederatedSync } from './FederatedSync.js'
|
|
export { ConversationLearner } from './ConversationLearner.js'
|