@lark-apaas/openclaw-scripts-diagnose-cli 0.1.15-alpha.10 → 0.1.15-alpha.11
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/index.cjs +3 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -52,7 +52,7 @@ node_assert = __toESM(node_assert);
|
|
|
52
52
|
* it terse and parseable.
|
|
53
53
|
*/
|
|
54
54
|
function getVersion() {
|
|
55
|
-
return "0.1.15-alpha.
|
|
55
|
+
return "0.1.15-alpha.11";
|
|
56
56
|
}
|
|
57
57
|
//#endregion
|
|
58
58
|
//#region src/rule-engine/base.ts
|
|
@@ -1792,6 +1792,7 @@ let ToolsAllowAlsoAllowConflictRule = class ToolsAllowAlsoAllowConflictRule exte
|
|
|
1792
1792
|
validate(ctx) {
|
|
1793
1793
|
const conflicts = [];
|
|
1794
1794
|
visitAllScopes(ctx.config, (scope, label) => {
|
|
1795
|
+
console.error(`[tools_allow_also_allow_conflict] scope=${label} hasConflict=${hasConflict(scope)} allow=${JSON.stringify(scope.allow)?.slice(0, 40)} alsoAllow=${JSON.stringify(scope.alsoAllow)?.slice(0, 40)}`);
|
|
1795
1796
|
if (hasConflict(scope)) conflicts.push(label);
|
|
1796
1797
|
});
|
|
1797
1798
|
if (conflicts.length === 0) return { pass: true };
|
|
@@ -10692,7 +10693,7 @@ async function reportCliRun(opts) {
|
|
|
10692
10693
|
//#region src/help.ts
|
|
10693
10694
|
const BIN = "mclaw-diagnose";
|
|
10694
10695
|
function versionBanner() {
|
|
10695
|
-
return `v0.1.15-alpha.
|
|
10696
|
+
return `v0.1.15-alpha.11`;
|
|
10696
10697
|
}
|
|
10697
10698
|
const COMMANDS = [
|
|
10698
10699
|
{
|
package/package.json
CHANGED