claude-flow 3.7.0-alpha.22 → 3.7.0-alpha.23
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": "claude-flow",
|
|
3
|
-
"version": "3.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.23",
|
|
4
4
|
"description": "Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -179,7 +179,7 @@ const createCommand = {
|
|
|
179
179
|
{ property: 'Priority', value: formatPriority(result.priority) },
|
|
180
180
|
{ property: 'Status', value: formatStatus(result.status) },
|
|
181
181
|
{ property: 'Assigned To', value: result.assignedTo?.join(', ') || 'Unassigned' },
|
|
182
|
-
{ property: 'Tags', value: result.tags
|
|
182
|
+
{ property: 'Tags', value: result.tags?.join(', ') || 'None' }, // #1863 — guard undefined array
|
|
183
183
|
{ property: 'Created', value: new Date(result.createdAt).toLocaleString() }
|
|
184
184
|
]
|
|
185
185
|
});
|
|
@@ -360,11 +360,15 @@ const statusCommand = {
|
|
|
360
360
|
{ key: 'value', header: 'Value', width: 40 }
|
|
361
361
|
],
|
|
362
362
|
data: [
|
|
363
|
+
// #1863 — tasks created via task_create or loaded from an older
|
|
364
|
+
// store schema may not have these arrays populated; guard each
|
|
365
|
+
// `.join()` so `task status` never throws "Cannot read properties
|
|
366
|
+
// of undefined (reading 'join')".
|
|
363
367
|
{ property: 'Assigned To', value: result.assignedTo?.join(', ') || 'Unassigned' },
|
|
364
368
|
{ property: 'Parent Task', value: result.parentId || 'None' },
|
|
365
|
-
{ property: 'Dependencies', value: result.dependencies
|
|
366
|
-
{ property: 'Dependents', value: result.dependents
|
|
367
|
-
{ property: 'Tags', value: result.tags
|
|
369
|
+
{ property: 'Dependencies', value: result.dependencies?.join(', ') || 'None' },
|
|
370
|
+
{ property: 'Dependents', value: result.dependents?.join(', ') || 'None' },
|
|
371
|
+
{ property: 'Tags', value: result.tags?.join(', ') || 'None' }
|
|
368
372
|
]
|
|
369
373
|
});
|
|
370
374
|
// Timeline
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Ruflo CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
|
|
6
6
|
"main": "dist/src/index.js",
|