AI Newsletter Digest improvements: fixed QP soft line break decoding, URL extraction, and content cleaning

This commit is contained in:
Krilly
2026-03-04 13:29:22 +00:00
parent 29a98137a7
commit 57dd294675
13706 changed files with 2114953 additions and 237629 deletions

View File

@@ -0,0 +1,12 @@
const fs = require('fs');
const path = require('path');
const WAKE_FILE = path.resolve(__dirname, '../../memory/evolver_wake.signal');
try {
fs.writeFileSync(WAKE_FILE, 'WAKE');
console.log(`[Evolver Trigger] Wake signal sent to ${WAKE_FILE}. The wrapper should wake up shortly.`);
} catch (e) {
console.error(`[Evolver Trigger] Failed to send wake signal: ${e.message}`);
process.exit(1);
}