monomind 1.11.10 → 1.11.11
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monomind",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.11",
|
|
4
4
|
"description": "Monomind - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -11,19 +11,32 @@ const DEFAULT_CONFIG = {
|
|
|
11
11
|
checkIntervalHours: 24,
|
|
12
12
|
autoUpdate: {
|
|
13
13
|
patch: true,
|
|
14
|
-
minor:
|
|
14
|
+
minor: true,
|
|
15
15
|
major: false,
|
|
16
16
|
},
|
|
17
17
|
priority: {
|
|
18
|
-
'
|
|
19
|
-
'@
|
|
18
|
+
'monofence-ai': 'critical',
|
|
19
|
+
'@monoes/monomindcli': 'high',
|
|
20
|
+
'monomind': 'high',
|
|
21
|
+
'@monoes/monograph': 'normal',
|
|
22
|
+
'@monoes/memory': 'normal',
|
|
23
|
+
'@monoes/monodesign': 'low',
|
|
20
24
|
},
|
|
21
25
|
exclude: [],
|
|
22
26
|
};
|
|
23
|
-
//
|
|
27
|
+
// All monomind-ecosystem packages to check for updates.
|
|
28
|
+
// getInstalledVersion() returns null for uninstalled packages — they are silently skipped.
|
|
24
29
|
const MONOMIND_PACKAGES = [
|
|
25
30
|
'monomind',
|
|
26
|
-
'@
|
|
31
|
+
'@monoes/monomindcli',
|
|
32
|
+
'monofence-ai',
|
|
33
|
+
'@monoes/monograph',
|
|
34
|
+
'@monoes/memory',
|
|
35
|
+
'@monoes/monodesign',
|
|
36
|
+
'@monomind/guidance',
|
|
37
|
+
'@monomind/hooks',
|
|
38
|
+
'@monomind/mcp',
|
|
39
|
+
'@monomind/routing',
|
|
27
40
|
];
|
|
28
41
|
// npm package name regex — covers plain names and @scope/name forms.
|
|
29
42
|
// Validates before using the name in URLs or filesystem paths.
|
|
@@ -3,19 +3,28 @@
|
|
|
3
3
|
* Ensures updates don't break the ecosystem
|
|
4
4
|
*/
|
|
5
5
|
import * as semver from 'semver';
|
|
6
|
-
// Known compatibility matrix between
|
|
6
|
+
// Known compatibility matrix between monomind packages
|
|
7
7
|
const COMPATIBILITY_MATRIX = {
|
|
8
|
-
'@
|
|
9
|
-
'
|
|
8
|
+
'@monoes/monomindcli': {
|
|
9
|
+
'monofence-ai': { minVersion: '1.0.0' },
|
|
10
|
+
},
|
|
11
|
+
'monomind': {
|
|
12
|
+
'@monoes/monomindcli': { minVersion: '1.11.0' },
|
|
10
13
|
},
|
|
11
14
|
};
|
|
12
15
|
// Known breaking changes by version
|
|
13
16
|
const BREAKING_CHANGES = {
|
|
14
|
-
'
|
|
15
|
-
'
|
|
17
|
+
'monomind': {
|
|
18
|
+
'2.0.0': [
|
|
19
|
+
'CLI commands renamed from monomind:* to mastermind:*',
|
|
16
20
|
'Memory API changed from key-value to vector-based',
|
|
17
|
-
'Hooks system
|
|
21
|
+
'Hooks system redesigned with 17 hook types',
|
|
22
|
+
],
|
|
23
|
+
},
|
|
24
|
+
'@monoes/monomindcli': {
|
|
25
|
+
'2.0.0': [
|
|
18
26
|
'Agent spawning now requires type parameter',
|
|
27
|
+
'Swarm topology options changed',
|
|
19
28
|
],
|
|
20
29
|
},
|
|
21
30
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monoes/monomindcli",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.10",
|
|
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",
|