@yemi33/minions 0.1.68 → 0.1.70
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 +10 -0
- package/dashboard/js/command-center.js +21 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -184,7 +184,7 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
184
184
|
const rendered = (data.text || '').replace(/\*\*(.+?)\*\*/g, '<strong>$1</strong>')
|
|
185
185
|
.replace(/`([^`]+)`/g, '<code style="background:var(--surface);padding:1px 4px;border-radius:3px;font-size:11px">$1</code>')
|
|
186
186
|
.replace(/\n/g, '<br>');
|
|
187
|
-
ccAddMessage('assistant', rendered + '<div style="font-size:9px;color:var(--muted);margin-top:
|
|
187
|
+
ccAddMessage('assistant', rendered + '<div style="font-size:9px;color:var(--muted);margin-top:6px;display:flex;justify-content:flex-end;padding-right:30px">' + ccElapsed + 's</div>');
|
|
188
188
|
|
|
189
189
|
// Execute actions
|
|
190
190
|
if (data.actions && data.actions.length > 0) {
|
|
@@ -195,7 +195,9 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
195
195
|
} catch (e) {
|
|
196
196
|
clearInterval(ccTimer);
|
|
197
197
|
thinking.remove();
|
|
198
|
-
|
|
198
|
+
const retryId = 'cc-retry-' + Date.now();
|
|
199
|
+
ccAddMessage('assistant', '<span style="color:var(--red)">Error: ' + escHtml(e.message) + '</span>' +
|
|
200
|
+
'<button id="' + retryId + '" onclick="ccRetryLast()" style="margin-top:6px;padding:4px 12px;background:var(--surface2);border:1px solid var(--border);border-radius:4px;color:var(--blue);cursor:pointer;font-size:11px">Retry</button>');
|
|
199
201
|
} finally {
|
|
200
202
|
_ccSending = false;
|
|
201
203
|
// Show notification badge on CC button if drawer is closed
|
|
@@ -203,6 +205,23 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
203
205
|
}
|
|
204
206
|
}
|
|
205
207
|
|
|
208
|
+
function ccRetryLast() {
|
|
209
|
+
// Find the last user message and resend it
|
|
210
|
+
const last = _ccMessages.filter(m => m.role === 'user').pop();
|
|
211
|
+
if (!last) return;
|
|
212
|
+
// Extract text from the HTML (strip tags)
|
|
213
|
+
const tmp = document.createElement('div');
|
|
214
|
+
tmp.innerHTML = last.html;
|
|
215
|
+
const text = tmp.textContent || tmp.innerText || '';
|
|
216
|
+
if (!text.trim()) return;
|
|
217
|
+
// Remove the error message (last assistant message)
|
|
218
|
+
const el = document.getElementById('cc-messages');
|
|
219
|
+
if (el?.lastElementChild) el.lastElementChild.remove();
|
|
220
|
+
_ccMessages = _ccMessages.slice(0, -1); // remove error from history
|
|
221
|
+
// Resend
|
|
222
|
+
_ccDoSend(text.trim());
|
|
223
|
+
}
|
|
224
|
+
|
|
206
225
|
async function ccExecuteAction(action) {
|
|
207
226
|
const msgs = document.getElementById('cc-messages');
|
|
208
227
|
const status = document.createElement('div');
|
package/package.json
CHANGED