@axiomatic-labs/claudeflow 2.13.80 → 2.13.81

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.
Files changed (2) hide show
  1. package/lib/panel.js +10 -0
  2. package/package.json +1 -1
package/lib/panel.js CHANGED
@@ -1037,6 +1037,16 @@ function severityFor(id) {
1037
1037
  if (s.observer.servers && s.observer.servers.some((sr) => sr.status === 'unhealthy' || sr.status === 'exited')) return 'warn';
1038
1038
  return 'ok';
1039
1039
  }
1040
+ case 'validators': {
1041
+ if (!s.validators || !s.validators.available) return 'info';
1042
+ // Block > error > pass > skip. Block is the actionable state — the
1043
+ // hook actually halted the agent. Surface it the same way Observer
1044
+ // surfaces unresolved incidents (warn = amber dot in the nav).
1045
+ if (s.validators.stats && s.validators.stats.block > 0) return 'warn';
1046
+ if (s.validators.stats && s.validators.stats.error > 0) return 'warn';
1047
+ if (s.validators.stats && s.validators.stats.pass > 0) return 'ok';
1048
+ return 'info';
1049
+ }
1040
1050
  case 'setupContext': return !s.setupContext.exists ? 'err' : (s.setupContext.toolingComplete ? 'ok' : 'warn');
1041
1051
  case 'activeRun': return s.activeRun.active ? 'info' : 'info';
1042
1052
  case 'doctor': return s.doctor.issueCount > 0 ? 'warn' : 'ok';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiomatic-labs/claudeflow",
3
- "version": "2.13.80",
3
+ "version": "2.13.81",
4
4
  "description": "Claudeflow — AI-powered development toolkit for Claude Code. Skills, agents, hooks, and quality gates that ship production apps.",
5
5
  "bin": {
6
6
  "claudeflow": "./bin/cli.js"