@yemi33/minions 0.1.483 → 0.1.484

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,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.483 (2026-04-07)
3
+ ## 0.1.484 (2026-04-07)
4
4
 
5
5
  ### Fixes
6
+ - toast renders HTML links and persists 15s for clickable content
6
7
  - harden bug filing — proper escaping, error handling, direct UI button
7
8
 
8
9
  ## 0.1.482 (2026-04-07)
@@ -11,11 +11,15 @@ function cmdUpdateProjectList(projects) {
11
11
  cmdProjects = (projects || []).map(p => ({ name: p.name, description: p.description || '' }));
12
12
  }
13
13
 
14
- function showToast(id, msg, ok) {
14
+ function showToast(id, msg, ok, durationMs) {
15
15
  const el = document.getElementById(id);
16
16
  el.className = 'cmd-toast ' + (ok ? 'success' : 'error');
17
- el.textContent = msg;
18
- setTimeout(() => { el.className = 'cmd-toast'; }, 4000);
17
+ if (msg.includes('<a ') || msg.includes('<strong>')) {
18
+ el.innerHTML = msg;
19
+ } else {
20
+ el.textContent = msg;
21
+ }
22
+ setTimeout(() => { el.className = 'cmd-toast'; }, durationMs || (msg.includes('<a ') ? 15000 : 4000));
19
23
  }
20
24
 
21
25
  function detectWorkItemType(text) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.483",
3
+ "version": "0.1.484",
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"