Kernforge Memory-Scan Playbook
April 4, 2026 ยท View on GitHub
This playbook explains how to use Kernforge for pattern scan, signature scan, memory inspection, evasion resistance, and false-positive or false-negative tuning work.
1. When To Use This Playbook
- Scanner or signature matching logic is changing.
- False positives, false negatives, performance ceilings, or evasion resistance matter.
- Observer coverage matters from a stealth perspective.
- Recent scanner-related failed evidence already exists.
2. Recommended Baseline Flow
/analyze-project scanner stealth, false-positive, and memory hot path architecture
/analyze-performance scanner
/simulate stealth-surface scanner-core
/open scanner/patternscan.cpp
/review-selection false positives, stealth coverage, and performance ceilings
/edit-selection reduce false positives without weakening evasion coverage
/verify
/evidence-dashboard category:memory-scan
/mem-search category:memory-scan risk:>=70
3. Why This Flow Works Well
- Scanner work is usually about detection coverage and evasions, not just correctness.
- Project analysis helps map scanning paths, hot paths, and risky dependencies before editing.
stealth-surfacesurfaces observer gaps first.- Selection review and edit keep the work focused on the real scanning path.
/verifyadds memory-scan review steps plus recent simulation risk context./evidence-dashboardgives a fast current view of high-risk scanner state.
4. When Forensics Also Matter
If scanner output also matters for incident reconstruction:
/simulate forensic-blind-spot scanner-core
/verify
/simulate-dashboard
Why this helps:
- Detection alone is not enough if post-incident artifacts are too weak.
- Forensic blind spot simulation highlights that operational weakness separately.
5. Signals Worth Watching Closely
signal:stealthsignal:forensicsseverity:highrisk:>=70
Useful examples:
/evidence-search category:memory-scan signal:stealth
/evidence-search kind:simulation_finding signal:forensics
/mem-search category:memory-scan severity:high
6. Recommended Pre-PR Check
/verify/evidence-dashboard category:memory-scan/mem-search category:memory-scan risk:>=70/override
7. Good Team Habits
- Evaluate stealth pressure before and after scanner changes.
- When reducing false positives, explicitly check that evasion coverage does not weaken.
- Treat performance ceilings and detection gaps as part of the same operational problem.
- Treat repeated failures as a detection-gap problem first, not an override problem.