acdev 1.1.0 → 1.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acdev",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Local CLI + web UI for running AI agents on GitHub issues via git worktrees",
5
5
  "type": "module",
6
6
  "bin": {
package/public/app.js CHANGED
@@ -1579,6 +1579,24 @@ function formatLogEvent(event) {
1579
1579
  };
1580
1580
  }
1581
1581
 
1582
+ if (event.type === 'warn') {
1583
+ return {
1584
+ kind: 'warn',
1585
+ label: 'Warning',
1586
+ text: String(event.payload || 'Warning'),
1587
+ raw,
1588
+ };
1589
+ }
1590
+
1591
+ if (event.type === 'info') {
1592
+ return {
1593
+ kind: 'status',
1594
+ label: 'Info',
1595
+ text: String(event.payload || ''),
1596
+ raw,
1597
+ };
1598
+ }
1599
+
1582
1600
  if (event.type === 'agent_event') {
1583
1601
  const msg = event.payload;
1584
1602
  if (msg && typeof msg === 'object') {
@@ -2849,6 +2867,7 @@ function renderReview(jobs) {
2849
2867
  if (els.reviewPrStatusNotes) els.reviewPrStatusNotes.innerHTML = '';
2850
2868
  }
2851
2869
  els.reviewTerminalSection.classList.toggle('hidden', !isTerminal);
2870
+ const prMeta = resolvePrMeta(job);
2852
2871
  if (document.activeElement !== els.prTitle && document.activeElement !== els.prBody) {
2853
2872
  els.prTitle.value = prMeta.prTitle;
2854
2873
  els.prBody.value = prMeta.prBody;
package/public/styles.css CHANGED
@@ -1444,6 +1444,13 @@ a { color: var(--primary); text-underline-offset: 3px; }
1444
1444
  .log-line.is-error .log-kind,
1445
1445
  .log-line.is-error .log-msg { color: var(--accent-800); }
1446
1446
 
1447
+ .log-line.is-warn {
1448
+ border-left-color: var(--amber);
1449
+ background: var(--amber-100);
1450
+ }
1451
+ .log-line.is-warn .log-kind,
1452
+ .log-line.is-warn .log-msg { color: var(--amber-800); }
1453
+
1447
1454
  .log-raw { margin-top: 4px; }
1448
1455
 
1449
1456
  .log-raw > summary {