@yemi33/minions 0.1.596 → 0.1.597

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,10 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.596 (2026-04-08)
3
+ ## 0.1.597 (2026-04-08)
4
4
 
5
5
  ### Features
6
6
  - per-type max-turns configurable from settings page
7
7
 
8
+ ### Fixes
9
+ - filter test categories from LLM Call Performance tile
10
+
8
11
  ## 0.1.595 (2026-04-08)
9
12
 
10
13
  ### Features
@@ -102,7 +102,7 @@ function renderLlmPerf(metrics) {
102
102
  return;
103
103
  }
104
104
  let html = '<table class="pr-table"><thead><tr><th>Call Type</th><th>Calls</th><th>Total Time</th><th>Avg Time</th><th>Cost</th></tr></thead><tbody>';
105
- const entries = Object.entries(engine).sort((a, b) => (b[1].calls || 0) - (a[1].calls || 0));
105
+ const entries = Object.entries(engine).filter(([k]) => !k.startsWith('test')).sort((a, b) => (b[1].calls || 0) - (a[1].calls || 0));
106
106
  for (const [type, m] of entries) {
107
107
  const calls = m.calls || 0;
108
108
  const totalMs = m.totalDurationMs || 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.596",
3
+ "version": "0.1.597",
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"