@axiomatic-labs/claudeflow 2.13.85 → 2.13.86
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/lib/panel.js +7 -2
- package/package.json +1 -1
package/lib/panel.js
CHANGED
|
@@ -1038,7 +1038,7 @@ function severityFor(id) {
|
|
|
1038
1038
|
return 'ok';
|
|
1039
1039
|
}
|
|
1040
1040
|
case 'validators': {
|
|
1041
|
-
if (!s.validators
|
|
1041
|
+
if (!s.validators) return 'info';
|
|
1042
1042
|
// Compute the CURRENT state per (validator, scope) instead of the
|
|
1043
1043
|
// all-time tally. Runs are stored newest-first, so the first
|
|
1044
1044
|
// encounter of a given key is the latest run for that combo.
|
|
@@ -1054,7 +1054,12 @@ function severityFor(id) {
|
|
|
1054
1054
|
if (r.status === 'block' || r.status === 'error') currentlyFailing += 1;
|
|
1055
1055
|
}
|
|
1056
1056
|
if (currentlyFailing > 0) return 'warn';
|
|
1057
|
-
|
|
1057
|
+
// No failing combos — green. Includes "no runs yet" (cleared history
|
|
1058
|
+
// or hooks haven't fired) which is conceptually a passing state, not
|
|
1059
|
+
// a broken-system state. Pre-v2.13.86 this returned info (gray) when
|
|
1060
|
+
// there were 0 runs, which made an empty Validators look "unknown"
|
|
1061
|
+
// when it really meant "nothing to worry about".
|
|
1062
|
+
return 'ok';
|
|
1058
1063
|
}
|
|
1059
1064
|
case 'setupContext': return !s.setupContext.exists ? 'err' : (s.setupContext.toolingComplete ? 'ok' : 'warn');
|
|
1060
1065
|
case 'activeRun': return s.activeRun.active ? 'info' : 'info';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiomatic-labs/claudeflow",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.86",
|
|
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"
|