@nt-ai-lab/deterministic-agent-workflow-codex 0.4.3 → 0.4.4

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.
@@ -110,7 +110,7 @@ function resolveDatabasePath(processDeps) {
110
110
  const home = processDeps.getEnv('HOME');
111
111
  if (home === undefined || home === '')
112
112
  throw new TypeError('Missing required environment variable: HOME');
113
- return join(home, '.workflow-events.db');
113
+ return join(home, 'ai-workflow-database', '.workflow-events.db');
114
114
  }
115
115
  function handleHookInvocation(config, engineDeps, root, now) {
116
116
  const raw = config.processDeps.readFile('/dev/stdin');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nt-ai-lab/deterministic-agent-workflow-codex",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "repository": {
@@ -17,9 +17,9 @@
17
17
  ],
18
18
  "dependencies": {
19
19
  "zod": "^3.25.76",
20
- "@nt-ai-lab/deterministic-agent-workflow-cli": "0.4.1",
21
- "@nt-ai-lab/deterministic-agent-workflow-engine": "0.4.1",
22
- "@nt-ai-lab/deterministic-agent-workflow-event-store": "0.4.1"
20
+ "@nt-ai-lab/deterministic-agent-workflow-cli": "0.4.2",
21
+ "@nt-ai-lab/deterministic-agent-workflow-engine": "0.4.2",
22
+ "@nt-ai-lab/deterministic-agent-workflow-event-store": "0.4.2"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public"