moflo 4.6.12 → 4.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.
Files changed (30) hide show
  1. package/.claude/settings.json +4 -4
  2. package/.claude/workflow-state.json +1 -5
  3. package/README.md +1 -1
  4. package/bin/hooks.mjs +7 -3
  5. package/bin/setup-project.mjs +1 -1
  6. package/package.json +1 -1
  7. package/src/@claude-flow/cli/README.md +452 -7536
  8. package/src/@claude-flow/cli/dist/src/commands/doctor.js +1 -1
  9. package/src/@claude-flow/cli/dist/src/commands/embeddings.js +4 -4
  10. package/src/@claude-flow/cli/dist/src/commands/init.js +35 -8
  11. package/src/@claude-flow/cli/dist/src/commands/swarm.js +2 -2
  12. package/src/@claude-flow/cli/dist/src/init/claudemd-generator.js +316 -294
  13. package/src/@claude-flow/cli/dist/src/init/executor.js +461 -465
  14. package/src/@claude-flow/cli/dist/src/init/helpers-generator.d.ts +0 -36
  15. package/src/@claude-flow/cli/dist/src/init/helpers-generator.js +146 -1124
  16. package/src/@claude-flow/cli/dist/src/init/index.d.ts +1 -1
  17. package/src/@claude-flow/cli/dist/src/init/index.js +1 -1
  18. package/src/@claude-flow/cli/dist/src/init/moflo-init.js +78 -5
  19. package/src/@claude-flow/cli/dist/src/init/settings-generator.js +50 -120
  20. package/src/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.js +275 -32
  21. package/src/@claude-flow/cli/dist/src/plugins/store/discovery.js +4 -204
  22. package/src/@claude-flow/cli/dist/src/plugins/tests/standalone-test.js +4 -4
  23. package/src/@claude-flow/cli/dist/src/runtime/headless.d.ts +3 -3
  24. package/src/@claude-flow/cli/dist/src/runtime/headless.js +31 -31
  25. package/src/@claude-flow/cli/dist/src/services/agentic-flow-bridge.d.ts +3 -3
  26. package/src/@claude-flow/cli/dist/src/services/agentic-flow-bridge.js +3 -1
  27. package/src/@claude-flow/cli/dist/src/services/headless-worker-executor.js +14 -0
  28. package/src/@claude-flow/cli/dist/src/services/workflow-gate.js +21 -1
  29. package/src/@claude-flow/cli/dist/src/transfer/store/tests/standalone-test.js +4 -4
  30. package/src/@claude-flow/cli/package.json +1 -1
@@ -11,48 +11,12 @@ export declare function generatePreCommitHook(): string;
11
11
  * Generate post-commit hook script
12
12
  */
13
13
  export declare function generatePostCommitHook(): string;
14
- /**
15
- * Generate session manager script
16
- */
17
- export declare function generateSessionManager(): string;
18
- /**
19
- * Generate agent router script
20
- */
21
- export declare function generateAgentRouter(): string;
22
- /**
23
- * Generate memory helper script
24
- */
25
- export declare function generateMemoryHelper(): string;
26
- /**
27
- * Generate hook-handler.cjs (cross-platform hook dispatcher)
28
- * This is the inline fallback when file copy from the package fails.
29
- * Uses string concatenation instead of template literals to avoid escaping issues.
30
- */
31
- export declare function generateHookHandler(): string;
32
- /**
33
- * Generate a minimal intelligence.cjs stub for fallback installs.
34
- * Provides the same API as the full intelligence.cjs but with simplified logic.
35
- * Gets overwritten when source copy succeeds (full version has PageRank, Jaccard, etc.)
36
- */
37
- export declare function generateIntelligenceStub(): string;
38
14
  /**
39
15
  * Generate a minimal auto-memory-hook.mjs fallback for fresh installs.
40
16
  * This ESM script handles import/sync/status commands gracefully when
41
17
  * @claude-flow/memory is not installed. Gets overwritten when source copy succeeds.
42
18
  */
43
19
  export declare function generateAutoMemoryHook(): string;
44
- /**
45
- * Generate Windows PowerShell daemon manager
46
- */
47
- export declare function generateWindowsDaemonManager(): string;
48
- /**
49
- * Generate Windows batch file wrapper
50
- */
51
- export declare function generateWindowsBatchWrapper(): string;
52
- /**
53
- * Generate cross-platform session manager
54
- */
55
- export declare function generateCrossPlatformSessionManager(): string;
56
20
  /**
57
21
  * Generate all helper files
58
22
  */