@lumenflow/agent 2.10.0 → 2.11.0
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/agent-session.js +2 -2
- package/package.json +3 -3
package/dist/agent-session.js
CHANGED
|
@@ -3,8 +3,8 @@ import { readFile, writeFile, mkdir, unlink, access } from 'node:fs/promises';
|
|
|
3
3
|
import { join } from 'path';
|
|
4
4
|
import { simpleGit } from 'simple-git';
|
|
5
5
|
import { appendIncident } from './agent-incidents.js';
|
|
6
|
-
import { PATTERNS, INCIDENT_SEVERITY,
|
|
7
|
-
const SESSION_DIR =
|
|
6
|
+
import { PATTERNS, INCIDENT_SEVERITY, LUMENFLOW_PATHS } from '@lumenflow/core/lib/wu-constants.js';
|
|
7
|
+
const SESSION_DIR = LUMENFLOW_PATHS.SESSIONS;
|
|
8
8
|
const SESSION_FILE = join(SESSION_DIR, 'current.json');
|
|
9
9
|
/**
|
|
10
10
|
* Start a new agent session
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumenflow/agent",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"description": "Agent session management for LumenFlow workflow framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lumenflow",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"simple-git": "^3.30.0",
|
|
42
42
|
"zod": "^4.3.5",
|
|
43
|
-
"@lumenflow/core": "2.
|
|
44
|
-
"@lumenflow/memory": "2.
|
|
43
|
+
"@lumenflow/core": "2.11.0",
|
|
44
|
+
"@lumenflow/memory": "2.11.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@vitest/coverage-v8": "^4.0.17",
|