obol-ai 0.3.21 → 0.3.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/evolve/evolve.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obol-ai",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.22",
|
|
4
4
|
"description": "Self-evolving AI assistant that learns, remembers, and acts on its own. Persistent vector memory, self-rewriting personality, proactive heartbeats.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
package/src/evolve/evolve.js
CHANGED
|
@@ -351,7 +351,7 @@ Fix the scripts. Tests define correct behavior.`
|
|
|
351
351
|
fs.writeFileSync(soulPath, result.soul);
|
|
352
352
|
if (supabaseConfig) {
|
|
353
353
|
const { backup } = require('../soul');
|
|
354
|
-
backup(supabaseConfig, `soul-v${
|
|
354
|
+
backup(supabaseConfig, `soul-v${evolutionNumber}`, result.soul).catch(e =>
|
|
355
355
|
console.error('[evolve] Soul backup failed:', e.message)
|
|
356
356
|
);
|
|
357
357
|
}
|