monomind 1.6.9 → 1.8.0

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 (38) hide show
  1. package/.claude/commands/monomind-createtask.md +75 -113
  2. package/.claude/commands/monomind-do.md +227 -115
  3. package/.claude/commands/monomind-idea.md +30 -104
  4. package/.claude/commands/monomind-improve.md +31 -103
  5. package/.claude/helpers/graphify-freshen.cjs +12 -97
  6. package/.claude/helpers/hook-handler.cjs +16 -0
  7. package/.claude/helpers/learning-service.mjs +0 -0
  8. package/.claude/helpers/metrics-db.mjs +0 -0
  9. package/.claude/helpers/statusline.cjs +89 -65
  10. package/.claude/helpers/swarm-hooks.sh +0 -0
  11. package/.claude/settings.local.json +2 -1
  12. package/.claude/skills/monomind-task-engine/SKILL.md +358 -0
  13. package/.claude/statusline-command.sh +0 -0
  14. package/.claude/statusline.sh +0 -0
  15. package/.claude-plugin/scripts/install.sh +0 -0
  16. package/.claude-plugin/scripts/uninstall.sh +0 -0
  17. package/.claude-plugin/scripts/verify.sh +0 -0
  18. package/package.json +17 -17
  19. package/packages/@monomind/cli/bin/cli.js +0 -0
  20. package/packages/@monomind/cli/bin/mcp-server.js +0 -0
  21. package/packages/@monomind/cli/dist/src/commands/doctor.js +36 -9
  22. package/packages/@monomind/cli/dist/src/init/executor.js +99 -28
  23. package/packages/@monomind/cli/dist/src/init/helpers-generator.js +14 -14
  24. package/packages/@monomind/cli/dist/src/init/shared-instructions-generator.d.ts +38 -0
  25. package/packages/@monomind/cli/dist/src/init/shared-instructions-generator.js +571 -0
  26. package/packages/@monomind/cli/dist/src/init/types.d.ts +1 -1
  27. package/packages/@monomind/cli/dist/src/mcp-client.js +5 -2
  28. package/packages/@monomind/cli/dist/src/mcp-tools/graphify-tools.d.ts +4 -67
  29. package/packages/@monomind/cli/dist/src/mcp-tools/graphify-tools.js +40 -1226
  30. package/packages/@monomind/cli/dist/src/mcp-tools/index.d.ts +1 -0
  31. package/packages/@monomind/cli/dist/src/mcp-tools/index.js +1 -0
  32. package/packages/@monomind/cli/dist/src/mcp-tools/monograph-tools.d.ts +9 -0
  33. package/packages/@monomind/cli/dist/src/mcp-tools/monograph-tools.js +495 -0
  34. package/packages/@monomind/cli/package.json +2 -1
  35. package/packages/@monomind/cli/README.md +0 -441
  36. package/packages/@monomind/guidance/README.md +0 -1195
  37. package/packages/@monomind/shared/README.md +0 -323
  38. package/packages/README.md +0 -514
@@ -1,73 +1,10 @@
1
1
  /**
2
- * Graphify MCP Tools
2
+ * Graphify MCP Tools — DEPRECATED SHIMS
3
3
  *
4
- * Bridges @monoes/graph's knowledge graph into monomind's MCP tool surface.
5
- * Agents can query the codebase knowledge graph without reading files —
6
- * god_nodes(), query_graph(), shortest_path() give structural understanding
7
- * in milliseconds vs. reading dozens of source files.
8
- *
9
- * Graph is built automatically on `monomind init` and stored at
10
- * .monomind/graph/graph.json (legacy: graphify-out/graph.json).
11
- * Rebuild manually: call graphify_build via MCP.
12
- */
13
- import { type MCPTool } from './types.js';
14
- /**
15
- * Build or rebuild the knowledge graph for a directory.
16
- */
17
- export declare const graphifyBuildTool: MCPTool;
18
- /**
19
- * Query the knowledge graph with natural language.
20
- */
21
- export declare const graphifyQueryTool: MCPTool;
22
- /**
23
- * Get the most connected (god) nodes — the core abstractions.
24
- */
25
- export declare const graphifyGodNodesTool: MCPTool;
26
- /**
27
- * Get full details for a specific node.
28
- */
29
- export declare const graphifyGetNodeTool: MCPTool;
30
- /**
31
- * Find shortest path between two concepts.
32
- */
33
- export declare const graphifyShortestPathTool: MCPTool;
34
- /**
35
- * Get all nodes in a community (cluster of related components).
36
- */
37
- export declare const graphifyGetCommunityTool: MCPTool;
38
- /**
39
- * Get graph statistics: node/edge counts, communities, confidence breakdown.
40
- */
41
- export declare const graphifyStatsTool: MCPTool;
42
- /**
43
- * Find surprising cross-community connections (architectural insights).
44
- */
45
- export declare const graphifySurprisesTool: MCPTool;
46
- /**
47
- * Generate or open the interactive HTML visualization of the knowledge graph.
48
- */
49
- export declare const graphifyVisualizeTool: MCPTool;
50
- /**
51
- * Start a background file watcher that rebuilds the knowledge graph + HTML
52
- * whenever source files change (debounced 2 s).
53
- */
54
- export declare const graphifyWatchTool: MCPTool;
55
- /**
56
- * Stop the background graph watcher started by graphify_watch.
57
- */
58
- export declare const graphifyWatchStopTool: MCPTool;
59
- /**
60
- * Read the GRAPH_REPORT.md generated during the last build.
61
- */
62
- export declare const graphifyReportTool: MCPTool;
63
- /**
64
- * Suggest questions the knowledge graph can answer about the codebase.
65
- */
66
- export declare const graphifySuggestTool: MCPTool;
67
- /**
68
- * Run a corpus health check on the project files.
4
+ * All graphify_* tools are deprecated. They proxy to monograph_* tools.
5
+ * Will be removed in next major release.
69
6
  */
70
- export declare const graphifyHealthTool: MCPTool;
7
+ import type { MCPTool } from './types.js';
71
8
  export declare const graphifyTools: MCPTool[];
72
9
  export default graphifyTools;
73
10
  //# sourceMappingURL=graphify-tools.d.ts.map