monomind 1.14.1 → 1.14.2

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.
@@ -112,3 +112,20 @@ Follow _protocol.md Brain Write Procedure for domain `ops`.
112
112
 
113
113
 
114
114
  Invoke `Skill("mastermind:_repeat")` now to execute the REPEAT POSTAMBLE. This is a required tool call — do not skip it.
115
+
116
+ After the REPEAT POSTAMBLE completes, if a loop was started or continued (LOOP_ID is set), write the org name into the loop state file so the dashboard can detect running status:
117
+ ```bash
118
+ if [ -n "${LOOP_ID:-}" ]; then
119
+ LOOP_FILE=".monomind/loops/${LOOP_ID}.json"
120
+ if [ -f "$LOOP_FILE" ]; then
121
+ python3 -c "
122
+ import json, sys
123
+ f = sys.argv[1]; org = sys.argv[2]
124
+ d = json.load(open(f))
125
+ if 'orgName' not in d:
126
+ d['orgName'] = org
127
+ open(f, 'w').write(json.dumps(d, indent=2))
128
+ " "$LOOP_FILE" "${org_name}" 2>/dev/null || true
129
+ fi
130
+ fi
131
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monomind",
3
- "version": "1.14.1",
3
+ "version": "1.14.2",
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",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monoes/monomindcli",
3
- "version": "1.14.1",
3
+ "version": "1.14.2",
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",