cclaw-cli 0.48.23 → 0.48.24
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/dist/doctor-registry.js +16 -1
- package/package.json +1 -1
package/dist/doctor-registry.js
CHANGED
|
@@ -85,7 +85,7 @@ const RULES = [
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
|
-
test: /^(meta_skill:|protocol:|stage_skill:|context_mode
|
|
88
|
+
test: /^(meta_skill:|protocol:|stage_skill:|context_mode:)/,
|
|
89
89
|
metadata: {
|
|
90
90
|
severity: "error",
|
|
91
91
|
summary: "Routing skill and protocol integrity check.",
|
|
@@ -93,6 +93,21 @@ const RULES = [
|
|
|
93
93
|
docRef: ref("harness-and-routing.md")
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
+
{
|
|
97
|
+
// `reference:*` checks (flow-map.md and similar overview documents)
|
|
98
|
+
// are useful to detect drift from the generated baseline, but they
|
|
99
|
+
// document the surface rather than gate it. A missing section here
|
|
100
|
+
// means the map is out of date, not that a runtime contract is
|
|
101
|
+
// broken — so they report as a warning instead of hard-failing
|
|
102
|
+
// doctor / CI. `cclaw sync` rewrites the file.
|
|
103
|
+
test: /^reference:/,
|
|
104
|
+
metadata: {
|
|
105
|
+
severity: "warning",
|
|
106
|
+
summary: "Reference/overview doc integrity (non-blocking).",
|
|
107
|
+
fix: "Run `cclaw sync` to regenerate the reference doc from the canonical source.",
|
|
108
|
+
docRef: ref("harness-and-routing.md")
|
|
109
|
+
}
|
|
110
|
+
},
|
|
96
111
|
{
|
|
97
112
|
test: /^delegation:/,
|
|
98
113
|
metadata: {
|