@monoes/monomindcli 1.6.3 → 1.6.5

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 (130) hide show
  1. package/.claude/commands/monomind-createtask.md +3 -3
  2. package/.claude/commands/monomind-do.md +2 -2
  3. package/.claude/commands/monomind-idea.md +2 -2
  4. package/.claude/helpers/graphify-freshen.cjs +15 -6
  5. package/README.md +307 -553
  6. package/bundled-graph/dist/src/analyze.d.ts +32 -0
  7. package/bundled-graph/dist/src/analyze.d.ts.map +1 -0
  8. package/bundled-graph/dist/src/analyze.js +297 -0
  9. package/bundled-graph/dist/src/analyze.js.map +1 -0
  10. package/bundled-graph/dist/src/build.d.ts +8 -0
  11. package/bundled-graph/dist/src/build.d.ts.map +1 -0
  12. package/bundled-graph/dist/src/build.js +73 -0
  13. package/bundled-graph/dist/src/build.js.map +1 -0
  14. package/bundled-graph/dist/src/cache.d.ts +12 -0
  15. package/bundled-graph/dist/src/cache.d.ts.map +1 -0
  16. package/bundled-graph/dist/src/cache.js +43 -0
  17. package/bundled-graph/dist/src/cache.js.map +1 -0
  18. package/bundled-graph/dist/src/cluster.d.ts +5 -0
  19. package/bundled-graph/dist/src/cluster.d.ts.map +1 -0
  20. package/bundled-graph/dist/src/cluster.js +120 -0
  21. package/bundled-graph/dist/src/cluster.js.map +1 -0
  22. package/bundled-graph/dist/src/detect.d.ts +21 -0
  23. package/bundled-graph/dist/src/detect.d.ts.map +1 -0
  24. package/bundled-graph/dist/src/detect.js +195 -0
  25. package/bundled-graph/dist/src/detect.js.map +1 -0
  26. package/bundled-graph/dist/src/export.d.ts +21 -0
  27. package/bundled-graph/dist/src/export.d.ts.map +1 -0
  28. package/bundled-graph/dist/src/export.js +68 -0
  29. package/bundled-graph/dist/src/export.js.map +1 -0
  30. package/bundled-graph/dist/src/extract/index.d.ts +20 -0
  31. package/bundled-graph/dist/src/extract/index.d.ts.map +1 -0
  32. package/bundled-graph/dist/src/extract/index.js +158 -0
  33. package/bundled-graph/dist/src/extract/index.js.map +1 -0
  34. package/bundled-graph/dist/src/extract/languages/c.d.ts +3 -0
  35. package/bundled-graph/dist/src/extract/languages/c.d.ts.map +1 -0
  36. package/bundled-graph/dist/src/extract/languages/c.js +88 -0
  37. package/bundled-graph/dist/src/extract/languages/c.js.map +1 -0
  38. package/bundled-graph/dist/src/extract/languages/cpp.d.ts +3 -0
  39. package/bundled-graph/dist/src/extract/languages/cpp.d.ts.map +1 -0
  40. package/bundled-graph/dist/src/extract/languages/cpp.js +121 -0
  41. package/bundled-graph/dist/src/extract/languages/cpp.js.map +1 -0
  42. package/bundled-graph/dist/src/extract/languages/csharp.d.ts +3 -0
  43. package/bundled-graph/dist/src/extract/languages/csharp.d.ts.map +1 -0
  44. package/bundled-graph/dist/src/extract/languages/csharp.js +121 -0
  45. package/bundled-graph/dist/src/extract/languages/csharp.js.map +1 -0
  46. package/bundled-graph/dist/src/extract/languages/go.d.ts +3 -0
  47. package/bundled-graph/dist/src/extract/languages/go.d.ts.map +1 -0
  48. package/bundled-graph/dist/src/extract/languages/go.js +181 -0
  49. package/bundled-graph/dist/src/extract/languages/go.js.map +1 -0
  50. package/bundled-graph/dist/src/extract/languages/java.d.ts +3 -0
  51. package/bundled-graph/dist/src/extract/languages/java.d.ts.map +1 -0
  52. package/bundled-graph/dist/src/extract/languages/java.js +117 -0
  53. package/bundled-graph/dist/src/extract/languages/java.js.map +1 -0
  54. package/bundled-graph/dist/src/extract/languages/kotlin.d.ts +3 -0
  55. package/bundled-graph/dist/src/extract/languages/kotlin.d.ts.map +1 -0
  56. package/bundled-graph/dist/src/extract/languages/kotlin.js +112 -0
  57. package/bundled-graph/dist/src/extract/languages/kotlin.js.map +1 -0
  58. package/bundled-graph/dist/src/extract/languages/php.d.ts +3 -0
  59. package/bundled-graph/dist/src/extract/languages/php.d.ts.map +1 -0
  60. package/bundled-graph/dist/src/extract/languages/php.js +130 -0
  61. package/bundled-graph/dist/src/extract/languages/php.js.map +1 -0
  62. package/bundled-graph/dist/src/extract/languages/python.d.ts +3 -0
  63. package/bundled-graph/dist/src/extract/languages/python.d.ts.map +1 -0
  64. package/bundled-graph/dist/src/extract/languages/python.js +230 -0
  65. package/bundled-graph/dist/src/extract/languages/python.js.map +1 -0
  66. package/bundled-graph/dist/src/extract/languages/ruby.d.ts +3 -0
  67. package/bundled-graph/dist/src/extract/languages/ruby.d.ts.map +1 -0
  68. package/bundled-graph/dist/src/extract/languages/ruby.js +120 -0
  69. package/bundled-graph/dist/src/extract/languages/ruby.js.map +1 -0
  70. package/bundled-graph/dist/src/extract/languages/rust.d.ts +3 -0
  71. package/bundled-graph/dist/src/extract/languages/rust.d.ts.map +1 -0
  72. package/bundled-graph/dist/src/extract/languages/rust.js +195 -0
  73. package/bundled-graph/dist/src/extract/languages/rust.js.map +1 -0
  74. package/bundled-graph/dist/src/extract/languages/scala.d.ts +3 -0
  75. package/bundled-graph/dist/src/extract/languages/scala.d.ts.map +1 -0
  76. package/bundled-graph/dist/src/extract/languages/scala.js +110 -0
  77. package/bundled-graph/dist/src/extract/languages/scala.js.map +1 -0
  78. package/bundled-graph/dist/src/extract/languages/swift.d.ts +3 -0
  79. package/bundled-graph/dist/src/extract/languages/swift.d.ts.map +1 -0
  80. package/bundled-graph/dist/src/extract/languages/swift.js +122 -0
  81. package/bundled-graph/dist/src/extract/languages/swift.js.map +1 -0
  82. package/bundled-graph/dist/src/extract/languages/typescript.d.ts +3 -0
  83. package/bundled-graph/dist/src/extract/languages/typescript.d.ts.map +1 -0
  84. package/bundled-graph/dist/src/extract/languages/typescript.js +295 -0
  85. package/bundled-graph/dist/src/extract/languages/typescript.js.map +1 -0
  86. package/bundled-graph/dist/src/extract/semantic.d.ts +38 -0
  87. package/bundled-graph/dist/src/extract/semantic.d.ts.map +1 -0
  88. package/bundled-graph/dist/src/extract/semantic.js +242 -0
  89. package/bundled-graph/dist/src/extract/semantic.js.map +1 -0
  90. package/bundled-graph/dist/src/extract/tree-sitter-runner.d.ts +48 -0
  91. package/bundled-graph/dist/src/extract/tree-sitter-runner.d.ts.map +1 -0
  92. package/bundled-graph/dist/src/extract/tree-sitter-runner.js +137 -0
  93. package/bundled-graph/dist/src/extract/tree-sitter-runner.js.map +1 -0
  94. package/bundled-graph/dist/src/extract/types.d.ts +7 -0
  95. package/bundled-graph/dist/src/extract/types.d.ts.map +1 -0
  96. package/bundled-graph/dist/src/extract/types.js +2 -0
  97. package/bundled-graph/dist/src/extract/types.js.map +1 -0
  98. package/bundled-graph/dist/src/index.d.ts +28 -0
  99. package/bundled-graph/dist/src/index.d.ts.map +1 -0
  100. package/bundled-graph/dist/src/index.js +26 -0
  101. package/bundled-graph/dist/src/index.js.map +1 -0
  102. package/bundled-graph/dist/src/pipeline.d.ts +27 -0
  103. package/bundled-graph/dist/src/pipeline.d.ts.map +1 -0
  104. package/bundled-graph/dist/src/pipeline.js +269 -0
  105. package/bundled-graph/dist/src/pipeline.js.map +1 -0
  106. package/bundled-graph/dist/src/report.d.ts +26 -0
  107. package/bundled-graph/dist/src/report.d.ts.map +1 -0
  108. package/bundled-graph/dist/src/report.js +214 -0
  109. package/bundled-graph/dist/src/report.js.map +1 -0
  110. package/bundled-graph/dist/src/types.d.ts +124 -0
  111. package/bundled-graph/dist/src/types.d.ts.map +1 -0
  112. package/bundled-graph/dist/src/types.js +2 -0
  113. package/bundled-graph/dist/src/types.js.map +1 -0
  114. package/bundled-graph/dist/src/visualize.d.ts +4 -0
  115. package/bundled-graph/dist/src/visualize.d.ts.map +1 -0
  116. package/bundled-graph/dist/src/visualize.js +574 -0
  117. package/bundled-graph/dist/src/visualize.js.map +1 -0
  118. package/bundled-graph/dist/tsconfig.tsbuildinfo +1 -0
  119. package/bundled-graph/package.json +57 -0
  120. package/dist/src/commands/memory.d.ts.map +1 -1
  121. package/dist/src/commands/memory.js +0 -1
  122. package/dist/src/commands/memory.js.map +1 -1
  123. package/dist/src/init/executor.d.ts.map +1 -1
  124. package/dist/src/init/executor.js +6 -1
  125. package/dist/src/init/executor.js.map +1 -1
  126. package/dist/tsconfig.tsbuildinfo +1 -1
  127. package/package.json +9 -2
  128. /package/.claude/commands/{monobrain-help.md → monomind-help.md} +0 -0
  129. /package/.claude/commands/{monobrain-memory.md → monomind-memory.md} +0 -0
  130. /package/.claude/commands/{monobrain-swarm.md → monomind-swarm.md} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monoes/monomindcli",
3
- "version": "1.6.3",
3
+ "version": "1.6.5",
4
4
  "type": "module",
5
5
  "description": "Monomind 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",
@@ -68,6 +68,7 @@
68
68
  "dist",
69
69
  "bin",
70
70
  ".claude",
71
+ "bundled-graph",
71
72
  "README.md"
72
73
  ],
73
74
  "scripts": {
@@ -84,8 +85,14 @@
84
85
  "vitest": "^4.1.4"
85
86
  },
86
87
  "dependencies": {
87
- "@monomind/graph": "^1.3.0",
88
88
  "@noble/ed25519": "^2.1.0",
89
+ "graphology": "^0.25.4",
90
+ "graphology-communities-louvain": "^2.0.1",
91
+ "graphology-metrics": "^2.4.0",
92
+ "graphology-shortest-path": "^2.0.2",
93
+ "graphology-traversal": "^0.3.1",
94
+ "graphology-types": "^0.24.7",
95
+ "chokidar": "^3.6.0",
89
96
  "semver": "^7.6.0"
90
97
  },
91
98
  "optionalDependencies": {