open-agents-ai 0.187.427 → 0.187.428

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/dist/index.js CHANGED
@@ -540940,7 +540940,7 @@ function getMemoryStats(workingDir) {
540940
540940
  knowledgeGraph: { totalNodes: 0, totalEdges: 0, nodeTypes: {}, edgeTypes: {} },
540941
540941
  episodes: { total: 0, avgImportance: 0, oldestTs: null, newestTs: null, modalities: {} }
540942
540942
  };
540943
- const memoryDbPath = path5.join(workingDir, ".oa", "memory.db");
540943
+ const memoryDbPath = path5.join(workingDir, ".oa", "episodes.db");
540944
540944
  if (fs4.existsSync(memoryDbPath)) {
540945
540945
  try {
540946
540946
  const Database2 = __require("better-sqlite3");
@@ -540963,7 +540963,7 @@ function getMemoryStats(workingDir) {
540963
540963
  } catch (e2) {
540964
540964
  }
540965
540965
  }
540966
- const kgDbPath = path5.join(workingDir, ".oa", "kg.db");
540966
+ const kgDbPath = path5.join(workingDir, ".oa", "knowledge.db");
540967
540967
  if (fs4.existsSync(kgDbPath)) {
540968
540968
  try {
540969
540969
  const Database2 = __require("better-sqlite3");
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.427",
3
+ "version": "0.187.428",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "open-agents-ai",
9
- "version": "0.187.427",
9
+ "version": "0.187.428",
10
10
  "hasInstallScript": true,
11
11
  "license": "CC-BY-NC-4.0",
12
12
  "dependencies": {
@@ -2905,9 +2905,9 @@
2905
2905
  }
2906
2906
  },
2907
2907
  "node_modules/bare-url": {
2908
- "version": "2.4.1",
2909
- "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.1.tgz",
2910
- "integrity": "sha512-fZapLWNB25gS+etK27NV9KgBNXgo2yeYHuj+OyPblQd6GYAE3JVy6aKxszMV5jhGGFwraXQKA5fldvf3lMyEqw==",
2908
+ "version": "2.4.2",
2909
+ "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.2.tgz",
2910
+ "integrity": "sha512-/9a2j4ac6ckpmAHvod/ob7x439OAHst/drc2Clnq+reRYd/ovddwcF4LfoxHyNk5AuGBnPg+HqFjmE/Zpq6v0A==",
2911
2911
  "license": "Apache-2.0",
2912
2912
  "optional": true,
2913
2913
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.427",
3
+ "version": "0.187.428",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",