@lumenflow/cli 3.6.9 → 3.7.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumenflow/cli",
3
- "version": "3.6.9",
3
+ "version": "3.7.1",
4
4
  "description": "Command-line interface for LumenFlow workflow framework",
5
5
  "keywords": [
6
6
  "lumenflow",
@@ -178,13 +178,13 @@
178
178
  "xstate": "^5.28.0",
179
179
  "yaml": "^2.8.2",
180
180
  "zod": "^4.3.6",
181
- "@lumenflow/agent": "3.6.9",
182
- "@lumenflow/memory": "3.6.9",
183
- "@lumenflow/control-plane-sdk": "3.6.9",
184
- "@lumenflow/metrics": "3.6.9",
185
- "@lumenflow/initiatives": "3.6.9",
186
- "@lumenflow/core": "3.6.9",
187
- "@lumenflow/kernel": "3.6.9"
181
+ "@lumenflow/agent": "3.7.1",
182
+ "@lumenflow/initiatives": "3.7.1",
183
+ "@lumenflow/kernel": "3.7.1",
184
+ "@lumenflow/control-plane-sdk": "3.7.1",
185
+ "@lumenflow/core": "3.7.1",
186
+ "@lumenflow/metrics": "3.7.1",
187
+ "@lumenflow/memory": "3.7.1"
188
188
  },
189
189
  "devDependencies": {
190
190
  "@vitest/coverage-v8": "^4.0.18",
@@ -1,4 +1,4 @@
1
1
 
2
- > @lumenflow/packs-sidekick@3.6.6 build /home/tom/source/hellmai/lumenflow-dev/worktrees/framework-core-lifecycle-wu-2267/packages/@lumenflow/packs/sidekick
2
+ > @lumenflow/packs-sidekick@3.7.0 build /home/tom/source/hellmai/lumenflow-dev/packages/@lumenflow/packs/sidekick
3
3
  > tsc
4
4
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumenflow/packs-sidekick",
3
- "version": "3.6.9",
3
+ "version": "3.7.1",
4
4
  "description": "Sidekick personal assistant pack for LumenFlow — 16 tools for task management, typed memory, channels, routines, and audit",
5
5
  "keywords": [
6
6
  "lumenflow",
@@ -0,0 +1,4 @@
1
+
2
+ > @lumenflow/packs-software-delivery@3.7.0 build /home/tom/source/hellmai/lumenflow-dev/worktrees/framework-core-lifecycle-wu-2268/packages/@lumenflow/packs/software-delivery
3
+ > tsc
4
+
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@lumenflow/packs-software-delivery",
3
+ "version": "3.7.1",
4
+ "description": "Software delivery pack for LumenFlow — work units, gates, lanes, initiatives, and agent coordination",
5
+ "keywords": [
6
+ "lumenflow",
7
+ "pack",
8
+ "software-delivery",
9
+ "work-units",
10
+ "gates",
11
+ "lanes"
12
+ ],
13
+ "homepage": "https://github.com/hellmai/lumenflow-dev",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/hellmai/lumenflow-dev.git",
17
+ "directory": "packages/@lumenflow/packs/software-delivery"
18
+ },
19
+ "license": "AGPL-3.0-only",
20
+ "author": {
21
+ "name": "HellmAI",
22
+ "url": "https://hellm.ai"
23
+ },
24
+ "type": "module",
25
+ "exports": {
26
+ ".": "./dist/index.js",
27
+ "./tools": "./dist/tools/index.js",
28
+ "./tool-impl": "./dist/tool-impl/index.js"
29
+ },
30
+ "main": "./dist/index.js",
31
+ "types": "./dist/index.d.ts",
32
+ "files": [
33
+ "dist",
34
+ "manifest.yaml",
35
+ "LICENSE.md",
36
+ "README.md"
37
+ ],
38
+ "scripts": {
39
+ "build": "tsc",
40
+ "clean": "rm -rf dist *.tgz",
41
+ "test": "vitest run",
42
+ "typecheck": "tsc --noEmit"
43
+ },
44
+ "dependencies": {
45
+ "@lumenflow/kernel": "workspace:^"
46
+ },
47
+ "devDependencies": {
48
+ "simple-git": "^3.27.0",
49
+ "typescript": "^5.9.3",
50
+ "vitest": "^4.0.18"
51
+ },
52
+ "engines": {
53
+ "node": ">=22"
54
+ },
55
+ "publishConfig": {
56
+ "access": "public"
57
+ }
58
+ }
@@ -228,7 +228,7 @@ function patchConsoleOutput(stdoutChunks: string[], stderrChunks: string[]): ()
228
228
 
229
229
  return () => {
230
230
  for (let index = restoreMethods.length - 1; index >= 0; index -= 1) {
231
- restoreMethods[index]();
231
+ restoreMethods[index]?.();
232
232
  }
233
233
  };
234
234
  }
@@ -0,0 +1,20 @@
1
+ {
2
+ "extends": "../../../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "target": "ES2023",
5
+ "lib": ["ES2023"],
6
+ "outDir": "./dist",
7
+ "rootDir": ".",
8
+ "noEmit": false,
9
+ "declaration": true,
10
+ "strict": true,
11
+ "useUnknownInCatchVariables": false,
12
+ "noUnusedLocals": false,
13
+ "noUnusedParameters": false,
14
+ "allowJs": false,
15
+ "checkJs": false,
16
+ "noEmitOnError": true
17
+ },
18
+ "include": ["*.ts", "tools/**/*.ts", "tool-impl/**/*.ts"],
19
+ "exclude": ["node_modules", "dist", "__tests__"]
20
+ }