claude-flow-novice 2.18.9 → 2.18.10

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-novice",
3
- "version": "2.18.9",
3
+ "version": "2.18.10",
4
4
  "description": "Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture\n\nIncludes Local RuVector Accelerator and all CFN skills for complete functionality.",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -63,11 +63,11 @@ function copyCFNDevTeam(targetDir) {
63
63
 
64
64
  function updateSkillsAndCommands(targetDir) {
65
65
  const sourceDir = path.join(projectRoot, '.claude');
66
- const targetDir = path.join(targetDir, '.claude');
66
+ const targetClaudeDir = path.join(targetDir, '.claude');
67
67
 
68
68
  // Update skills (preserve existing)
69
69
  const sourceSkillsDir = path.join(sourceDir, 'skills');
70
- const targetSkillsDir = path.join(targetDir, 'skills');
70
+ const targetSkillsDir = path.join(targetClaudeDir, 'skills');
71
71
 
72
72
  if (fs.existsSync(sourceSkillsDir)) {
73
73
  if (!fs.existsSync(targetSkillsDir)) {
@@ -92,7 +92,7 @@ function updateSkillsAndCommands(targetDir) {
92
92
 
93
93
  // Update commands
94
94
  const sourceCommandsDir = path.join(sourceDir, 'commands');
95
- const targetCommandsDir = path.join(targetDir, 'commands');
95
+ const targetCommandsDir = path.join(targetClaudeDir, 'commands');
96
96
 
97
97
  if (fs.existsSync(sourceCommandsDir)) {
98
98
  if (fs.existsSync(targetCommandsDir)) {