clawtool 0.1.2 → 0.1.3

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/planner.js CHANGED
@@ -12,7 +12,7 @@ function buildPlanSteps(findings) {
12
12
  const steps = [
13
13
  {
14
14
  type: 'read',
15
- description: 'Check current gateway status',
15
+ description: 'Checking gateway runtime status',
16
16
  command: 'openclaw gateway status 2>&1',
17
17
  risk: 'low',
18
18
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawtool",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Local-first OpenClaw diagnose and repair tool",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",
package/web/index.html CHANGED
@@ -257,7 +257,7 @@
257
257
  + '<span>' + (step.description || 'step') + '</span>'
258
258
  + '<span class="badge ' + typeBadge(step.type) + '">' + (step.type || 'read') + '</span>'
259
259
  + '</div>'
260
- + (step.command ? '<div class="mono" translate="no">' + step.command + '</div>' : '')
260
+ + (step.type !== 'read' && step.command ? '<div class="mono" translate="no">' + step.command + '</div>' : '')
261
261
  );
262
262
 
263
263
  if (step.type === 'fix') {