monomind 1.10.43 → 1.10.44
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.10.
|
|
3
|
+
"version": "1.10.44",
|
|
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",
|
|
@@ -1448,28 +1448,31 @@ mcp:
|
|
|
1448
1448
|
`;
|
|
1449
1449
|
atomicWriteFile(configPath, config);
|
|
1450
1450
|
result.created.files.push('.monomind/config.yaml');
|
|
1451
|
-
// Write .monomind/.gitignore —
|
|
1451
|
+
// Write .monomind/.gitignore — commit config/knowledge/metrics, exclude sensitive data
|
|
1452
1452
|
const gitignorePath = path.join(targetDir, '.monomind', '.gitignore');
|
|
1453
|
-
const gitignore = `# Monomind
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1453
|
+
const gitignore = `# Monomind — exclude files that may contain secrets or sensitive prompt data
|
|
1454
|
+
# Sessions contain conversation history (prompts, code snippets, user data)
|
|
1455
|
+
sessions/
|
|
1456
|
+
# Pending insights may contain raw prompt text
|
|
1457
|
+
data/pending-insights.jsonl
|
|
1458
|
+
# Routing feedback contains user prompt text
|
|
1459
|
+
routing-feedback.jsonl
|
|
1460
|
+
# Security scan results may expose vulnerability details
|
|
1461
|
+
security/
|
|
1462
|
+
# Temporary and machine-specific files
|
|
1463
|
+
*.tmp
|
|
1464
|
+
*.log
|
|
1465
|
+
daemon.pid
|
|
1466
|
+
# Never commit credentials or keys
|
|
1467
|
+
*.key
|
|
1468
|
+
*.token
|
|
1469
|
+
*.secret
|
|
1470
|
+
.env
|
|
1458
1471
|
`;
|
|
1459
1472
|
if (!fs.existsSync(gitignorePath) || options.force) {
|
|
1460
1473
|
atomicWriteFile(gitignorePath, gitignore);
|
|
1461
1474
|
result.created.files.push('.monomind/.gitignore');
|
|
1462
1475
|
}
|
|
1463
|
-
// Add .monomind/ to the project root .gitignore so git never tracks new files
|
|
1464
|
-
const rootGitignorePath = path.join(targetDir, '.gitignore');
|
|
1465
|
-
const monomindEntry = '\n# Monomind runtime data\n.monomind/\n!.monomind/.gitignore\n!.monomind/config.yaml\n!.monomind/CAPABILITIES.md\n';
|
|
1466
|
-
let rootGitignore = fs.existsSync(rootGitignorePath)
|
|
1467
|
-
? fs.readFileSync(rootGitignorePath, 'utf-8')
|
|
1468
|
-
: '';
|
|
1469
|
-
if (!rootGitignore.includes('.monomind/')) {
|
|
1470
|
-
atomicWriteFile(rootGitignorePath, rootGitignore + monomindEntry);
|
|
1471
|
-
result.created.files.push('.gitignore (added .monomind/ entry)');
|
|
1472
|
-
}
|
|
1473
1476
|
// Write CAPABILITIES.md with full system overview
|
|
1474
1477
|
await writeCapabilitiesDoc(targetDir, options, result);
|
|
1475
1478
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monoes/monomindcli",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.44",
|
|
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",
|