mirror of
https://github.com/LeoYeAI/openclaw-master-skills.git
synced 2026-07-27 22:15:43 +00:00
- Added 175 new high-quality skills across all categories - 14 distinct categories: AI, Search, Productivity, Dev, Marketing, Media, Finance, Communication, Smart Home, Memory, Security, Data, Social, Other - Updated all language READMEs and SKILL.md - Weekly update by MyClaw.ai
13 lines
410 B
JavaScript
13 lines
410 B
JavaScript
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);
|
|
}
|