claude-flow-novice 2.18.22 → 2.18.24

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.
Files changed (36) hide show
  1. package/.claude/CLAUDE.md +17 -0
  2. package/.claude/cfn-scripts/check-memory.sh +150 -0
  3. package/.claude/cfn-scripts/run-with-memory-limit.sh +91 -0
  4. package/.claude/commands/cfn-loop/cfn-loop-cli.md +9 -0
  5. package/.claude/commands/cfn-loop-task.md +11 -0
  6. package/.claude/commands/cfn-ruvector/cfn-codebase-reindex.md +23 -4
  7. package/.claude/commands/cfn-ruvector/cfn-codebase-search.md +10 -2
  8. package/.claude/commands/cfn-ruvector/cfn-detect-stale-docs.md +22 -4
  9. package/.claude/hooks/README.md +148 -148
  10. package/.claude/hooks/cfn-bash-search-hook.sh +87 -0
  11. package/.claude/hooks/cfn-smart-search-hook.sh +127 -0
  12. package/.claude/hooks/deprecated/cfn-SessionStart-cfn-load-openai-key.sh +48 -0
  13. package/.claude/hooks/post-commit-codebase-index +79 -45
  14. package/.claude/settings.json +20 -11
  15. package/.claude/skills/CLAUDE.md +70 -0
  16. package/.claude/skills/cfn-edit-safety/lib/hooks/security-scanner.sh +1 -0
  17. package/.claude/skills/cfn-local-ruvector-accelerator/SKILL.md +37 -21
  18. package/.claude/skills/cfn-local-ruvector-accelerator/cfn-integration.sh +47 -6
  19. package/.claude/skills/cfn-local-ruvector-accelerator/src/cli/index.rs +2 -1
  20. package/.claude/skills/cfn-local-ruvector-accelerator/src/cli/init.rs +3 -3
  21. package/.claude/skills/cfn-local-ruvector-accelerator/src/cli/query.rs +1 -1
  22. package/.claude/skills/cfn-local-ruvector-accelerator/src/lib.rs +1 -0
  23. package/.claude/skills/cfn-local-ruvector-accelerator/src/paths.rs +4 -2
  24. package/.claude/skills/cfn-local-ruvector-accelerator/src/search_engine.rs +11 -0
  25. package/.claude/skills/cfn-local-ruvector-accelerator/test_query_api.sh +102 -102
  26. package/CLAUDE.md +63 -373
  27. package/docs/CFN_LOOP_CLI_MODE.md +134 -0
  28. package/package.json +9 -5
  29. package/scripts/cfn-init.js +8 -2
  30. package/scripts/organize-root-files.sh +340 -340
  31. package/scripts/postinstall.js +120 -3
  32. package/test-epic-creator-security.sh +202 -202
  33. package/.claude/hooks/SessionStart:cfn-build-ruvector.sh +0 -28
  34. package/.claude/hooks/SessionStart:cfn-load-openai-key.sh +0 -35
  35. /package/.claude/hooks/{SessionStart-cfn-build-ruvector.sh → cfn-SessionStart-cfn-build-ruvector.sh} +0 -0
  36. /package/.claude/hooks/{cfn-load-cerebras-env.sh → deprecated/cfn-load-cerebras-env.sh} +0 -0
@@ -71,6 +71,10 @@ const CFN_PATHS = {
71
71
  src: path.join(cfnRoot, '.claude/helpers'),
72
72
  dest: '.claude/helpers',
73
73
  pattern: 'cfn-*'
74
+ },
75
+ configHooks: {
76
+ src: path.join(cfnRoot, 'config/hooks'),
77
+ dest: 'config/hooks'
74
78
  }
75
79
  };
76
80
 
@@ -82,7 +86,8 @@ async function ensureDirectories() {
82
86
  '.claude/commands',
83
87
  '.claude/cfn-extras',
84
88
  '.claude/core',
85
- '.claude/helpers'
89
+ '.claude/helpers',
90
+ 'config/hooks'
86
91
  ];
87
92
 
88
93
  for (const dir of dirs) {
@@ -282,7 +287,8 @@ async function initializeCfnProject() {
282
287
  '.claude/agents/cfn-dev-team',
283
288
  '.claude/skills',
284
289
  '.claude/hooks',
285
- '.claude/commands'
290
+ '.claude/commands',
291
+ 'config/hooks'
286
292
  ];
287
293
 
288
294
  if (fs.existsSync(markerPath)) {