@yemi33/minions 0.1.311 → 0.1.312
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
|
@@ -40,7 +40,7 @@ function wiRow(item) {
|
|
|
40
40
|
: '<span style="color:var(--muted)">—</span>';
|
|
41
41
|
return '<tr style="cursor:pointer" onclick="openWorkItemDetail(\'' + escHtml(item.id) + '\')">' +
|
|
42
42
|
'<td><span class="pr-id">' + escHtml(item.id || '') + '</span></td>' +
|
|
43
|
-
'<td style="max-width:220px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap" title="' + escHtml(item.
|
|
43
|
+
'<td style="max-width:220px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap" title="' + escHtml((item.title || '').slice(0, 200)) + '">' + escHtml(item.title || '') + '</td>' +
|
|
44
44
|
'<td><span style="font-size:10px;color:var(--muted)">' + escHtml(item._source || '') + '</span>' +
|
|
45
45
|
(item.scope === 'fan-out' ? ' <span class="pr-badge ' + (item.status === 'done' || item.status === 'failed' ? 'draft' : 'building') + '" style="font-size:8px">fan-out</span>' : '') + '</td>' +
|
|
46
46
|
'<td>' + typeBadge(item.type) + '</td>' +
|
|
@@ -423,7 +423,7 @@ function openWorkItemDetail(id) {
|
|
|
423
423
|
'<span class="dispatch-type ' + (item.type || 'implement') + '">' + escHtml(item.type || 'implement') + '</span>' +
|
|
424
424
|
'<span class="prd-item-priority ' + (item.priority || '') + '">' + escHtml(item.priority || 'medium') + '</span>' +
|
|
425
425
|
'</div>';
|
|
426
|
-
html += field('Description', '<div style="font-size:12px">' + renderMd(item.description || item.title || '—') + '</div>');
|
|
426
|
+
html += field('Description', '<div style="font-size:12px">' + renderMd((item.description || item.title || '—').slice(0, 3000)) + '</div>');
|
|
427
427
|
html += field('Agent', escHtml(item.dispatched_to || item.agent || 'Auto'));
|
|
428
428
|
html += field('Source', escHtml(item._source || 'central'));
|
|
429
429
|
if (item.created) html += field('Created', escHtml(new Date(item.created).toLocaleString()));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.312",
|
|
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"
|