@atolis-hq/wake 0.2.42 → 0.2.43

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.
@@ -56,6 +56,7 @@ export const indexHtml = `<!DOCTYPE html>
56
56
  .card .title { font-weight: 600; margin-bottom: 0.25rem; }
57
57
  .card .meta { color: #9aa2ad; font-size: 0.72rem; }
58
58
  .chip { display: inline-block; background: #2c313a; border-radius: 4px; padding: 0.05rem 0.35rem; font-size: 0.68rem; margin-right: 0.2rem; }
59
+ .chip-label { background: transparent; border: 1px solid #3a4150; color: #9aa2ad; margin-bottom: 0.2rem; }
59
60
  table { border-collapse: collapse; width: 100%; font-size: 0.8rem; }
60
61
  th, td { text-align: left; padding: 0.35rem 0.5rem; border-bottom: 1px solid #2c313a; }
61
62
  th { color: #9aa2ad; font-weight: 600; }
@@ -264,6 +265,9 @@ async function renderBoard(context) {
264
265
  el('span', { class: 'chip', text: item.stage }),
265
266
  document.createTextNode(fmtMs(item.timeInStageMs) + ' in stage'),
266
267
  ]),
268
+ ...(item.labels && item.labels.length > 0
269
+ ? [el('div', { class: 'meta' }, item.labels.map((label) => el('span', { class: 'chip chip-label', text: label })))]
270
+ : []),
267
271
  el('div', { class: 'meta', text: item.lastRunSentinel ? 'last: ' + item.lastRunAction + ' → ' + item.lastRunSentinel : item.conditionReason }),
268
272
  ]));
269
273
  return el('div', { class: 'col' + (items.length === 0 ? ' col-empty' : '') }, [
@@ -91,6 +91,7 @@ export async function buildBoard(input) {
91
91
  title: item.issue.title,
92
92
  url: item.issue.url,
93
93
  stage: item.wake.stage,
94
+ labels: item.issue.labels,
94
95
  condition,
95
96
  conditionReason: reason,
96
97
  timeInStageMs: timeInStageMs(item, input.now),
@@ -124,4 +124,4 @@ export function resolveWakeVersion(options = {}) {
124
124
  }
125
125
  return '0.1.0-dev';
126
126
  }
127
- export const wakeVersion = "g09bbeb0";
127
+ export const wakeVersion = "g45197ea";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atolis-hq/wake",
3
- "version": "0.2.42",
3
+ "version": "0.2.43",
4
4
  "description": "Local autonomous agent control plane for software development",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {