monomind 1.10.43 → 1.10.45
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.45",
|
|
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,27 @@ 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
|
+
# Security scan results may expose vulnerability details
|
|
1457
|
+
security/
|
|
1458
|
+
# Temporary and machine-specific files
|
|
1459
|
+
*.tmp
|
|
1460
|
+
*.log
|
|
1461
|
+
daemon.pid
|
|
1462
|
+
# Never commit credentials or keys
|
|
1463
|
+
*.key
|
|
1464
|
+
*.token
|
|
1465
|
+
*.secret
|
|
1466
|
+
.env
|
|
1458
1467
|
`;
|
|
1459
1468
|
if (!fs.existsSync(gitignorePath) || options.force) {
|
|
1460
1469
|
atomicWriteFile(gitignorePath, gitignore);
|
|
1461
1470
|
result.created.files.push('.monomind/.gitignore');
|
|
1462
1471
|
}
|
|
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
1472
|
// Write CAPABILITIES.md with full system overview
|
|
1474
1473
|
await writeCapabilitiesDoc(targetDir, options, result);
|
|
1475
1474
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monoes/monomindcli",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.45",
|
|
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",
|