@yemi33/minions 0.1.865 → 0.1.866

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.865 (2026-04-11)
3
+ ## 0.1.866 (2026-04-11)
4
4
 
5
5
  ### Features
6
6
  - optimistic running state on pipeline Run Now click
@@ -16,6 +16,9 @@
16
16
  - pipeline modal now auto-updates on all action buttons
17
17
  - pipeline modal buttons stuck on loading state after success
18
18
 
19
+ ### Other
20
+ - revert: restore expand bar hide on clear/fresh session
21
+
19
22
  ## 0.1.854 (2026-04-11)
20
23
 
21
24
  ### Features
@@ -122,7 +122,7 @@ function _initQaSession() {
122
122
  var wrap = document.getElementById('modal-qa-thread-wrap');
123
123
  var expandBar = document.getElementById('qa-expand-bar');
124
124
  if (wrap) wrap.style.display = 'none';
125
- if (expandBar) expandBar.style.display = '';
125
+ if (expandBar) expandBar.style.display = 'none';
126
126
  }
127
127
  }
128
128
 
@@ -134,7 +134,7 @@ function clearQaConversation() {
134
134
  var wrap = document.getElementById('modal-qa-thread-wrap');
135
135
  var expandBar = document.getElementById('qa-expand-bar');
136
136
  if (wrap) wrap.style.display = 'none';
137
- if (expandBar) expandBar.style.display = '';
137
+ if (expandBar) expandBar.style.display = 'none';
138
138
  if (_qaSessionKey) _qaSessions.delete(_qaSessionKey);
139
139
  }
140
140
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.865",
3
+ "version": "0.1.866",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"