@yemi33/minions 0.1.105 → 0.1.107

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,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.107 (2026-04-01)
4
+
5
+ ### Dashboard
6
+ - dashboard/styles.css
7
+
8
+ ## 0.1.106 (2026-04-01)
9
+
10
+ ### Engine
11
+ - engine/consolidation.js
12
+
13
+ ### Other
14
+ - prd/_test-idempotency.json.bak
15
+
3
16
  ## 0.1.105 (2026-04-01)
4
17
 
5
18
  ### Dashboard
@@ -188,7 +188,7 @@
188
188
  .prd-item-priority.low { background: rgba(139,148,158,0.15); color: var(--muted); }
189
189
  .prd-project-badge { font-size: var(--text-xs); padding: var(--space-1) 5px; border-radius: var(--radius-md); background: rgba(56,139,253,0.12); color: var(--blue); border: 1px solid rgba(56,139,253,0.25); white-space: nowrap; }
190
190
 
191
- .notes-preview { max-height: 400px; overflow-y: auto; font-size: var(--text-md); line-height: 1.6; color: var(--muted); font-family: Consolas, monospace; white-space: pre-wrap; word-wrap: break-word; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-6) var(--space-7); cursor: pointer; transition: border-color var(--transition-base); }
191
+ .notes-preview { max-height: 400px; overflow-y: auto; font-size: var(--text-md); line-height: 1.6; color: var(--muted); font-family: 'Segoe UI', system-ui, sans-serif; white-space: normal; word-wrap: break-word; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-6) var(--space-7); cursor: pointer; transition: border-color var(--transition-base); }
192
192
  .notes-preview:hover { border-color: var(--blue); }
193
193
  .inbox-item { background: var(--surface2); border: 1px solid var(--border); border-left: 3px solid var(--purple); border-radius: var(--radius-sm); padding: var(--space-5) var(--space-6); cursor: pointer; }
194
194
  .inbox-item:hover { border-color: var(--blue); border-left-color: var(--blue); }
@@ -134,6 +134,7 @@ function consolidateWithLLM(items, existingNotes, files, config) {
134
134
  return;
135
135
  }
136
136
 
137
+
137
138
  const kbPaths = items.map(item => {
138
139
  const cat = classifyInboxItem(item.name, item.content);
139
140
  const agentMatch = item.name.match(/^(\w+)-/);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.105",
3
+ "version": "0.1.107",
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"