@lark-apaas/openclaw-scripts-diagnose-cli 0.1.10-alpha.0 → 0.1.10-alpha.1
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 +5 -5
- 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.10-alpha.
|
|
55
|
+
return "0.1.10-alpha.1";
|
|
56
56
|
}
|
|
57
57
|
//#endregion
|
|
58
58
|
//#region src/rule-engine/base.ts
|
|
@@ -1538,9 +1538,9 @@ function collectExistingAgentsMdPaths(ctx) {
|
|
|
1538
1538
|
//#endregion
|
|
1539
1539
|
//#region src/rules/agents-md-service-commands.ts
|
|
1540
1540
|
const SERVICE_COMMAND_REPLACEMENTS = [
|
|
1541
|
-
["`sh scripts/start.sh`", "`
|
|
1542
|
-
["`sh scripts/restart.sh`", "`
|
|
1543
|
-
["`sh scripts/stop.sh`", "`
|
|
1541
|
+
["`sh scripts/start.sh`", "`bash /opt/force/bin/openclaw_scripts/start.sh`"],
|
|
1542
|
+
["`sh scripts/restart.sh`", "`bash /opt/force/bin/openclaw_scripts/restart.sh`"],
|
|
1543
|
+
["`sh scripts/stop.sh`", "`bash /opt/force/bin/openclaw_scripts/stop.sh`"]
|
|
1544
1544
|
];
|
|
1545
1545
|
let AgentsMdServiceCommandsRule = class AgentsMdServiceCommandsRule extends DiagnoseRule {
|
|
1546
1546
|
validate(ctx) {
|
|
@@ -10002,7 +10002,7 @@ async function reportCliRun(opts) {
|
|
|
10002
10002
|
//#region src/help.ts
|
|
10003
10003
|
const BIN = "mclaw-diagnose";
|
|
10004
10004
|
function versionBanner() {
|
|
10005
|
-
return `v0.1.10-alpha.
|
|
10005
|
+
return `v0.1.10-alpha.1`;
|
|
10006
10006
|
}
|
|
10007
10007
|
const COMMANDS = [
|
|
10008
10008
|
{
|
package/package.json
CHANGED