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.
- package/.claude/CLAUDE.md +17 -0
- package/.claude/cfn-scripts/check-memory.sh +150 -0
- package/.claude/cfn-scripts/run-with-memory-limit.sh +91 -0
- package/.claude/commands/cfn-loop/cfn-loop-cli.md +9 -0
- package/.claude/commands/cfn-loop-task.md +11 -0
- package/.claude/commands/cfn-ruvector/cfn-codebase-reindex.md +23 -4
- package/.claude/commands/cfn-ruvector/cfn-codebase-search.md +10 -2
- package/.claude/commands/cfn-ruvector/cfn-detect-stale-docs.md +22 -4
- package/.claude/hooks/README.md +148 -148
- package/.claude/hooks/cfn-bash-search-hook.sh +87 -0
- package/.claude/hooks/cfn-smart-search-hook.sh +127 -0
- package/.claude/hooks/deprecated/cfn-SessionStart-cfn-load-openai-key.sh +48 -0
- package/.claude/hooks/post-commit-codebase-index +79 -45
- package/.claude/settings.json +20 -11
- package/.claude/skills/CLAUDE.md +70 -0
- package/.claude/skills/cfn-edit-safety/lib/hooks/security-scanner.sh +1 -0
- package/.claude/skills/cfn-local-ruvector-accelerator/SKILL.md +37 -21
- package/.claude/skills/cfn-local-ruvector-accelerator/cfn-integration.sh +47 -6
- package/.claude/skills/cfn-local-ruvector-accelerator/src/cli/index.rs +2 -1
- package/.claude/skills/cfn-local-ruvector-accelerator/src/cli/init.rs +3 -3
- package/.claude/skills/cfn-local-ruvector-accelerator/src/cli/query.rs +1 -1
- package/.claude/skills/cfn-local-ruvector-accelerator/src/lib.rs +1 -0
- package/.claude/skills/cfn-local-ruvector-accelerator/src/paths.rs +4 -2
- package/.claude/skills/cfn-local-ruvector-accelerator/src/search_engine.rs +11 -0
- package/.claude/skills/cfn-local-ruvector-accelerator/test_query_api.sh +102 -102
- package/CLAUDE.md +63 -373
- package/docs/CFN_LOOP_CLI_MODE.md +134 -0
- package/package.json +9 -5
- package/scripts/cfn-init.js +8 -2
- package/scripts/organize-root-files.sh +340 -340
- package/scripts/postinstall.js +120 -3
- package/test-epic-creator-security.sh +202 -202
- package/.claude/hooks/SessionStart:cfn-build-ruvector.sh +0 -28
- package/.claude/hooks/SessionStart:cfn-load-openai-key.sh +0 -35
- /package/.claude/hooks/{SessionStart-cfn-build-ruvector.sh → cfn-SessionStart-cfn-build-ruvector.sh} +0 -0
- /package/.claude/hooks/{cfn-load-cerebras-env.sh → deprecated/cfn-load-cerebras-env.sh} +0 -0
package/scripts/cfn-init.js
CHANGED
|
@@ -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)) {
|