@atolis-hq/wake 0.2.23 → 0.2.25

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.
@@ -48,7 +48,7 @@ export const indexHtml = `<!DOCTYPE html>
48
48
  nav button:hover { color: #fff; }
49
49
  nav button.active { color: var(--accent-light); border-bottom-color: var(--accent); }
50
50
  main { padding: 1rem; }
51
- .columns { display: grid; grid-template-columns: repeat(6, minmax(180px, 1fr)); gap: 0.6rem; overflow-x: auto; }
51
+ .columns { display: grid; grid-template-columns: repeat(5, minmax(180px, 1fr)); gap: 0.6rem; overflow-x: auto; }
52
52
  .col { background: #1a1d23; border-radius: 10px; padding: 0.5rem; min-height: 200px; }
53
53
  .col h2 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: #9aa2ad; margin: 0.2rem 0.4rem 0.5rem; }
54
54
  .card { background: #22262e; border: 1px solid #2c313a; border-radius: 8px; padding: 0.5rem; margin-bottom: 0.5rem; cursor: pointer; font-size: 0.8rem; transition: border-color 0.12s ease; }
@@ -140,7 +140,7 @@ export const indexHtml = `<!DOCTYPE html>
140
140
  </div>
141
141
  <script>
142
142
  const API = '/api/v1';
143
- const CONDITIONS = ['needs-human', 'active', 'ready', 'waiting', 'stalled', 'finished'];
143
+ const CONDITIONS = ['ready', 'active', 'needs-human', 'error', 'finished'];
144
144
  let currentView = 'board';
145
145
  let analyticsWindow = '7d';
146
146
  let analyticsMetric = 'runs-over-time';
@@ -63,10 +63,10 @@ function deriveCondition(item, lastRun, config) {
63
63
  const workflow = workflowForProjection(item, config);
64
64
  const hasRoute = config.stages[stage] !== undefined || workflow?.stages[stage] !== undefined;
65
65
  if (!hasRoute) {
66
- return { condition: 'stalled', reason: `no route configured for stage "${stage}"` };
66
+ return { condition: 'error', reason: `no route configured for stage "${stage}"` };
67
67
  }
68
68
  if (lastRun?.sentinel === 'FAILED') {
69
- return { condition: 'waiting', reason: 'last run failed; awaiting operator/retry policy' };
69
+ return { condition: 'error', reason: 'last run failed; awaiting operator/retry policy' };
70
70
  }
71
71
  return { condition: 'ready', reason: 'has a route and no blocking condition' };
72
72
  }
@@ -139,8 +139,7 @@ export async function buildStatus(input) {
139
139
  'needs-human': 0,
140
140
  active: 0,
141
141
  ready: 0,
142
- waiting: 0,
143
- stalled: 0,
142
+ error: 0,
144
143
  finished: 0,
145
144
  };
146
145
  for (const card of board) {
@@ -124,4 +124,4 @@ export function resolveWakeVersion(options = {}) {
124
124
  }
125
125
  return '0.1.0-dev';
126
126
  }
127
- export const wakeVersion = "gff20ef3";
127
+ export const wakeVersion = "ged4cd7b";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atolis-hq/wake",
3
- "version": "0.2.23",
3
+ "version": "0.2.25",
4
4
  "description": "Local autonomous agent control plane for software development",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -22,7 +22,7 @@
22
22
  "LICENSE"
23
23
  ],
24
24
  "engines": {
25
- "node": ">=20"
25
+ "node": ">=24"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
@@ -54,13 +54,13 @@
54
54
  },
55
55
  "devDependencies": {
56
56
  "@eslint/js": "^10.0.1",
57
- "@types/node": "^24.3.0",
58
- "eslint": "^10.7.0",
57
+ "@types/node": "^24.0.0",
58
+ "eslint": "^10.8.0",
59
59
  "globals": "^17.7.0",
60
- "prettier": "^3.9.5",
61
- "tsx": "^4.20.5",
62
- "typescript": "^5.9.2",
63
- "typescript-eslint": "^8.64.0",
64
- "vitest": "^3.2.4"
60
+ "prettier": "^3.9.6",
61
+ "tsx": "^4.23.1",
62
+ "typescript": "^6.0.3",
63
+ "typescript-eslint": "^8.65.0",
64
+ "vitest": "^4.1.10"
65
65
  }
66
66
  }