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 +3 -3
- package/cli.js +1 -1
- package/lib/harden.js +1 -1
- package/lib/scan.js +1 -1
- package/package.json +1 -1
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.
|
|
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.
|
|
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.
|
|
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
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.
|
|
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