Official Partnership: Aegis Engine is a high-performance security framework developed by YecoAI Team for the Security Bot team. Designed for seamless integration into the Security Bot core to establish a new standard in proactive community defense.
Aegis Engine is a plug-and-play predictive moderation framework. It transcends traditional blacklist filters by utilizing a multi-layered defense architecture that combines Statistical NLP with Behavioral Heuristics to secure high-traffic messaging environments (Discord, Telegram, Web).
| Scenario | Input Example | Status | Engine Logic |
|---|---|---|---|
| Bypass Attempt | f.u.c.k.y.o.u / v4ff4ncul0 |
Blocked | Aegis Normalizer + N-gram Analysis |
| Split Attack | You -> are -> trash |
Blocked | Aegis Temporal History (3-msg window) |
| Phishing/NSFW | discord.gg/invite-link |
Blocked | Deep Metadata Inspection (Server Name) |
| Mass Media Spam | Multi-channel media flood | Blocked | Cross-channel Behavioral Heuristics |
| Technical Context | Kill the parent process |
Allowed | Context-Aware NLP Engine |
A Logistic Regression model optimized for microsecond-latency inference:
- Feature Extraction: Char-level
TfidfVectorizer(1-4 n-grams) to neutralize orthographic obfuscation. - Classification: 5 distinct risk tiers (Clean, Offensive, Highly Offensive, Spam, Severe).
An advanced pre-processing pipeline that reconstructs intent:
- Leet-Translation: Real-time translation of symbolic alphabets.
- Structural Reconstruction: De-spacing and de-repetition algorithms to normalize fragmented intent.
- Statistical Layer: Probabilistic analysis with adaptive confidence scoring (40% floor).
- Temporal Layer: User history correlation to detect distributed toxicity.
- Metadata Layer: Deep invite inspection via server-side metadata fetching.
- Behavioral Layer: Real-time monitoring of media distribution patterns across channels.
- Throughput: ~2,400 msg/sec
- Latency: < 0.50ms (Local Inference)
- Accuracy: ~91% in real-world adversarial scenarios.
Aegis Engine is designed as a modular Python package:
from core.moderator import AegisModerator, SecurityLevel
aegis = AegisModerator(level=SecurityLevel.MEDIUM)
is_threat, reason = aegis.check_message(
text="Target content",
user_id=12345,
channel_id=6789,
attachments_count=0
)- Personal/Open Source: Free usage with mandatory attribution to Aegis Engine of YecoAI.com
- Commercial/Verified Bots: Integration into commercial or Discord-Verified bots requires a Commercial License. Please contact the repository owner for approval.
Aegis Engine: The unbreakable shield for digital communities.