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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.22
2
+ - update changelog
3
+ - fix soul backup version number to use evolutionNumber
4
+
1
5
  ## 0.3.21
2
6
  - update changelog
3
7
  - store one soul row per evolution in supabase
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obol-ai",
3
- "version": "0.3.21",
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": {
@@ -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${state.evolutionCount}`, result.soul).catch(e =>
354
+ backup(supabaseConfig, `soul-v${evolutionNumber}`, result.soul).catch(e =>
355
355
  console.error('[evolve] Soul backup failed:', e.message)
356
356
  );
357
357
  }