Skip to content

Commit 24f64af

Browse files
adversa-aiclaude
andcommitted
docs: update for @adversa/secureclaw npm publish and 56 audit checks
- Rename npm package from @openclaw/secureclaw to @adversa/secureclaw - Update audit check count from 51 to 56 across all docs - Add npm install option (Option B) to both READMEs - Add npm badge to secureclaw/README.md - Fix broken TOC anchor (#9-the-12-agent-rules → #9-the-15-agent-rules) - Fix CHANGELOG v2.2.0 check count (55 → 56) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent cb1d01e commit 24f64af

File tree

5 files changed

+30
-14
lines changed

5 files changed

+30
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Seven-framework coverage. Every audit check tagged with MAESTRO layer and NIST a
1212
### Audit Finding Schema Changes
1313

1414
- `AuditFinding` type gains two optional fields: `maestroLayer` (L1-L7) and `nistCategory` (evasion/poisoning/privacy/misuse).
15-
- All 55 existing audit checks tagged with appropriate MAESTRO layer and NIST attack type.
15+
- All 56 audit checks tagged with appropriate MAESTRO layer and NIST attack type.
1616
- New `MaestroLayer` and `NistAttackType` type aliases exported from types.ts.
1717

1818
### New Audit Check

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Audit, Hardening and Runtine Security for Openclaw.
66

77
Developed by [Adversa AI](https://adversa.ai) -- Agentic AI Security and Red Teaming Pioneers.
88

9-
51 audit checks. 15 behavioral rules. 9 scripts. 4 pattern databases. 7 security frameworks mapped.
9+
56 audit checks. 15 behavioral rules. 9 scripts. 4 pattern databases. 7 security frameworks mapped.
1010

1111
10/10 OWASP ASI | 10/14 MITRE ATLAS | 4/4 MITRE OpenClaw Cases | 3/3 CoSAI Principles | CSA Singapore | 6/7 CSA MAESTRO Layers | 4/4 NIST AI 100-2 GenAI Types
1212

@@ -89,7 +89,7 @@ SecureClaw has two independently useful components:
8989

9090
### The Plugin (TypeScript)
9191

92-
A full OpenClaw plugin with 51 audit checks, 5 hardening modules, 3 background monitors, and CLI integration. Requires Node.js 18+ and installs via `openclaw plugins install`.
92+
A full OpenClaw plugin with 56 audit checks, 5 hardening modules, 3 background monitors, and CLI integration. Requires Node.js 18+ and installs via `openclaw plugins install`. Available on npm as [`@adversa/secureclaw`](https://www.npmjs.com/package/@adversa/secureclaw).
9393

9494
### The Skill (Bash + JSON)
9595

@@ -151,9 +151,16 @@ bash secureclaw/secureclaw/skill/scripts/install.sh
151151

152152
This installs the 15 behavioral rules, 9 scripts, and 4 pattern databases to your agent's skills directory. If a workspace directory exists (`~/.openclaw/workspace/`), the installer also copies the skill there and registers it in `AGENTS.md` and `TOOLS.md` for automatic agent discovery.
153153

154-
### Option B: Plugin from source
154+
### Option B: Plugin from npm
155155

156-
For the full TypeScript plugin with 51 audit checks, background monitors, and CLI integration:
156+
For the full TypeScript plugin with 56 audit checks, background monitors, and CLI integration:
157+
158+
```sh
159+
npm install @adversa/secureclaw
160+
npx openclaw plugins install -l node_modules/@adversa/secureclaw
161+
```
162+
163+
### Option C: Plugin from source
157164

158165
```sh
159166
git clone https://github.com/adversa-ai/secureclaw.git
@@ -940,7 +947,7 @@ No. All audits, hardening, integrity checks, privacy checks, and supply chain sc
940947

941948
**Can I use the skill without the plugin?**
942949

943-
Yes. The skill (bash scripts + JSON configs + SKILL.md) is fully standalone. The plugin adds 51 audit checks, background monitoring, CLI integration, and a scoring system, but everything in the `skill/` directory works independently.
950+
Yes. The skill (bash scripts + JSON configs + SKILL.md) is fully standalone. The plugin adds 56 audit checks, background monitoring, CLI integration, and a scoring system, but everything in the `skill/` directory works independently.
944951

945952
**Can I use the plugin without the skill?**
946953

secureclaw/README.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ Automated security hardening for [OpenClaw](https://openclaw.ai) AI agents.
44

55
Developed by [Adversa AI](https://adversa.ai) -- Agentic AI Security and Red Teaming Pioneers.
66

7-
51 audit checks. 15 behavioral rules. 9 scripts. 4 pattern databases. 7 security frameworks mapped.
7+
56 audit checks. 15 behavioral rules. 9 scripts. 4 pattern databases. 7 security frameworks mapped.
8+
9+
[![npm](https://img.shields.io/npm/v/@adversa/secureclaw)](https://www.npmjs.com/package/@adversa/secureclaw)
810

911
10/10 OWASP ASI | 10/14 MITRE ATLAS | 4/4 MITRE OpenClaw Cases | 3/3 CoSAI Principles | CSA Singapore | 6/7 CSA MAESTRO Layers | 4/4 NIST AI 100-2 GenAI Types
1012

@@ -45,7 +47,7 @@ flowchart LR
4547
6. [Automated Hardening](#6-automated-hardening)
4648
7. [Scripts Reference](#7-scripts-reference)
4749
8. [Pattern Databases](#8-pattern-databases)
48-
9. [The 15 Agent Rules](#9-the-12-agent-rules)
50+
9. [The 15 Agent Rules](#9-the-15-agent-rules)
4951
10. [OWASP ASI Coverage Map](#10-owasp-asi-coverage-map)
5052
11. [Plugin CLI Reference](#11-plugin-cli-reference)
5153
12. [Configuration](#12-configuration)
@@ -140,9 +142,16 @@ bash secureclaw/secureclaw/skill/scripts/install.sh
140142

141143
This installs the 15 behavioral rules, 9 scripts, and 4 pattern databases to your agent's skills directory. If a workspace directory exists (`~/.openclaw/workspace/`), the installer also copies the skill there and registers it in `AGENTS.md` and `TOOLS.md` for automatic agent discovery.
142144

143-
### Option B: Plugin from source
145+
### Option B: Plugin from npm
146+
147+
For the full TypeScript plugin with 56 audit checks, background monitors, and CLI integration:
148+
149+
```sh
150+
npm install @adversa/secureclaw
151+
npx openclaw plugins install -l node_modules/@adversa/secureclaw
152+
```
144153

145-
For the full TypeScript plugin with 51 audit checks, background monitors, and CLI integration:
154+
### Option C: Plugin from source
146155

147156
```sh
148157
git clone https://github.com/adversa-ai/secureclaw.git
@@ -869,7 +878,7 @@ No. All audits, hardening, integrity checks, privacy checks, and supply chain sc
869878

870879
**Can I use the skill without the plugin?**
871880

872-
Yes. The skill (bash scripts + JSON configs + SKILL.md) is fully standalone. The plugin adds 51 audit checks, background monitoring, CLI integration, and a scoring system, but everything in the `skill/` directory works independently.
881+
Yes. The skill (bash scripts + JSON configs + SKILL.md) is fully standalone. The plugin adds 56 audit checks, background monitoring, CLI integration, and a scoring system, but everything in the `skill/` directory works independently.
873882

874883
**Can I use the plugin without the skill?**
875884

secureclaw/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

secureclaw/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@openclaw/secureclaw",
2+
"name": "@adversa/secureclaw",
33
"version": "2.2.0",
44
"description": "Automated security hardening plugin for OpenClaw",
55
"main": "dist/index.js",

0 commit comments

Comments
 (0)