monomind 1.18.10 → 1.18.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 +1 -1
- package/packages/@monomind/cli/dist/src/agents/registry-builder.js +1 -1
- package/packages/@monomind/cli/dist/src/commands/doctor-project-checks.js +2 -3
- package/packages/@monomind/cli/dist/src/commands/security-misc.js +0 -1
- package/packages/@monomind/cli/dist/src/mcp-tools/security-tools.js +0 -1
- package/packages/@monomind/cli/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monomind",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.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",
|
|
@@ -34,7 +34,7 @@ function collectMdFiles(root, base = root) {
|
|
|
34
34
|
continue;
|
|
35
35
|
results.push(...collectMdFiles(full, base));
|
|
36
36
|
}
|
|
37
|
-
else if (stat.isFile() && extname(entry) === '.md') {
|
|
37
|
+
else if (stat.isFile() && extname(entry) === '.md' && !entry.startsWith('._')) {
|
|
38
38
|
results.push(full);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -456,9 +456,8 @@ export async function checkMemoryProficiency() {
|
|
|
456
456
|
if (stats.totalDecisions === 0) {
|
|
457
457
|
return {
|
|
458
458
|
name: 'Memory Proficiency',
|
|
459
|
-
status: '
|
|
460
|
-
message: '
|
|
461
|
-
fix: 'Complete tasks with pre-task/post-task hooks enabled',
|
|
459
|
+
status: 'pass',
|
|
460
|
+
message: 'AutoMem active — no decisions recorded yet (builds up over sessions)',
|
|
462
461
|
};
|
|
463
462
|
}
|
|
464
463
|
const successPct = Math.round(stats.successRate * 100);
|
|
@@ -133,7 +133,6 @@ export const defendCommand = {
|
|
|
133
133
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
134
134
|
let createMonoDefence;
|
|
135
135
|
try {
|
|
136
|
-
// @ts-expect-error — optional peer dep resolved at runtime
|
|
137
136
|
const aidefence = await import('monofence-ai');
|
|
138
137
|
createMonoDefence = aidefence.createMonoDefence;
|
|
139
138
|
}
|
|
@@ -393,7 +393,6 @@ const monofenceIsSafeTool = {
|
|
|
393
393
|
}
|
|
394
394
|
try {
|
|
395
395
|
await getMonoFence(); // triggers auto-install if package is missing
|
|
396
|
-
// @ts-expect-error — optional peer dep resolved at runtime
|
|
397
396
|
const { isSafe } = await import('monofence-ai');
|
|
398
397
|
const safe = isSafe(input);
|
|
399
398
|
return {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monoes/monomindcli",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.11",
|
|
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",
|