clawarmor 3.5.0 → 3.5.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/README.md CHANGED
@@ -52,7 +52,7 @@ ClawArmor sits at the foundation and orchestrates the layers above it:
52
52
  | `audit` | Score your OpenClaw config (0–100), live gateway probes, plain-English verdict |
53
53
  | `scan` | Scan all installed skill files for malicious code and SKILL.md instructions |
54
54
  | `scan --json` | Machine-readable scan output — pipe to CI, scripts, or dashboards |
55
- | `scan --report` | Write structured JSON + Markdown reports after scanning (v3.5.0) |
55
+ | `scan --report` | Write structured JSON + Markdown reports after scanning (v3.5.1) |
56
56
  | `prescan <skill>` | Pre-scan a skill before installing — blocks on CRITICAL findings |
57
57
  | `skill verify <name>` | Deep-verify a specific installed skill — checks SKILL.md + all referenced scripts |
58
58
  | `fix` | Auto-apply safe fixes (--dry-run to preview, --apply to run) |
@@ -165,7 +165,7 @@ clawarmor harden --auto --report
165
165
 
166
166
  Report structure includes: version, timestamp, OS/OpenClaw info, summary counts (hardened/skipped/already-good), and per-check action details with before/after values.
167
167
 
168
- **Scan reports** (v3.5.0) — Export a structured report after scanning skills:
168
+ **Scan reports** (v3.5.1) — Export a structured report after scanning skills:
169
169
 
170
170
  ```bash
171
171
  # Write JSON + Markdown reports (e.g. ~/.openclaw/clawarmor-scan-report-2025-03-08.json + .md)
@@ -179,7 +179,7 @@ Two files are always written together:
179
179
  Example JSON structure:
180
180
  ```json
181
181
  {
182
- "version": "3.5.0",
182
+ "version": "3.5.1",
183
183
  "timestamp": "2025-03-08T12:00:00.000Z",
184
184
  "system": { "hostname": "myhost", "platform": "darwin", "node_version": "v20.0.0", "openclaw_version": "1.2.0" },
185
185
  "verdict": "PASS",
package/cli.js CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  import { paint } from './lib/output/colors.js';
5
5
 
6
- const VERSION = '3.5.0';
6
+ const VERSION = '3.5.1';
7
7
  const GATEWAY_PORT_DEFAULT = 18789;
8
8
 
9
9
  function isLocalhost(host) {
package/lib/harden.js CHANGED
@@ -25,7 +25,7 @@ const HISTORY_FILE = join(CLAWARMOR_DIR, 'history.json');
25
25
  const CLI_PATH = new URL('../cli.js', import.meta.url).pathname;
26
26
  const SEP = paint.dim('─'.repeat(52));
27
27
 
28
- const VERSION = '3.4.0';
28
+ const VERSION = '3.5.1';
29
29
 
30
30
  // ── Impact levels ─────────────────────────────────────────────────────────────
31
31
  // SAFE: No functionality impact. Pure security improvement.
package/lib/scan.js CHANGED
@@ -10,7 +10,7 @@ import { append as auditLogAppend } from './audit-log.js';
10
10
 
11
11
  const SEP = paint.dim('─'.repeat(52));
12
12
  const HOME = homedir();
13
- const VERSION = '3.5.0';
13
+ const VERSION = '3.5.1';
14
14
 
15
15
  function short(p) { return p.replace(HOME,'~'); }
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawarmor",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "description": "Security armor for OpenClaw agents \u2014 audit, scan, monitor",
5
5
  "bin": {
6
6
  "clawarmor": "cli.js"