Surfaces relevant instincts during work. Use when starting a task to check if any learned behaviors apply.
You have learned behaviors. Use them.
node -e "
const fs = require('fs');
const path = require('path');
for (const dir of ['personal', 'inherited']) {
const base = path.join('.claude/homunculus/instincts', dir);
try {
const files = fs.readdirSync(base).filter(f => f.endsWith('.md'));
if (files.length) {
console.log('=== ' + dir + ' ===');
for (const f of files) {
console.log('--- ' + f + ' ---');
console.log(fs.readFileSync(path.join(base, f), 'utf8'));
}
}
} catch {}
}
"
---