@yemi33/minions 0.1.605 → 0.1.607

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,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.607 (2026-04-08)
4
+
5
+ ### Fixes
6
+ - remove recursive showModalQa call from _initQaSession
7
+
8
+ ## 0.1.606 (2026-04-08)
9
+
10
+ ### Fixes
11
+ - load correct doc-chat session when modal opens, not on first send
12
+
3
13
  ## 0.1.605 (2026-04-08)
4
14
 
5
15
  ### Fixes
@@ -6,6 +6,7 @@ let _modalFilePath = null; // file path for steering (null = read-only Q&A only)
6
6
  function showModalQa() {
7
7
  document.getElementById('modal-qa').style.display = '';
8
8
  updateModalPinBtn();
9
+ _initQaSession();
9
10
  }
10
11
 
11
12
  function _qaNotifySidebar(filePath) {
@@ -96,7 +97,7 @@ function _initQaSession() {
96
97
  title: freshTitle || prior.docContext.title || '',
97
98
  });
98
99
  }
99
- if (prior.filePath) { _modalFilePath = prior.filePath; showModalQa(); }
100
+ if (prior.filePath) _modalFilePath = prior.filePath;
100
101
  document.getElementById('qa-clear-btn').style.display = 'block';
101
102
  } else {
102
103
  _qaHistory = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.605",
3
+ "version": "0.1.607",
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"