coverme-security-scanner 3.4.0 → 3.6.0
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/commands/coverme.md +22 -2
- package/package.json +1 -1
package/commands/coverme.md
CHANGED
|
@@ -6,6 +6,16 @@ Run a comprehensive security assessment on this codebase and generate a professi
|
|
|
6
6
|
|
|
7
7
|
You are a senior security architect and penetration tester performing a pre-production security audit. Run 7 parallel security agents to analyze this codebase comprehensively.
|
|
8
8
|
|
|
9
|
+
### Step 0: Setup (Run First!)
|
|
10
|
+
|
|
11
|
+
Before starting the scan, create the output directory:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
mkdir -p .coverme
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
This prevents errors when saving the scan results.
|
|
18
|
+
|
|
9
19
|
### Step 1: Launch Parallel Agents
|
|
10
20
|
|
|
11
21
|
Launch these 7 agents simultaneously using the Task tool:
|
|
@@ -295,10 +305,20 @@ After all agents complete, compile their findings into a JSON file with this enh
|
|
|
295
305
|
}
|
|
296
306
|
```
|
|
297
307
|
|
|
298
|
-
### Step 5: Generate PDF
|
|
308
|
+
### Step 5: Save and Generate PDF
|
|
309
|
+
|
|
310
|
+
**IMPORTANT: Write the JSON using the Write tool, NOT bash heredoc.**
|
|
311
|
+
|
|
312
|
+
1. **Create the output directory first:**
|
|
313
|
+
```bash
|
|
314
|
+
mkdir -p .coverme
|
|
315
|
+
```
|
|
299
316
|
|
|
300
|
-
|
|
317
|
+
2. **Use the Write tool to save `.coverme/scan.json`** with ALL findings from the agents.
|
|
318
|
+
Include everything: all codeEvidence, exploitability, blastRadius, businessImpact.
|
|
319
|
+
The more detail, the better the report.
|
|
301
320
|
|
|
321
|
+
3. **Generate the PDF:**
|
|
302
322
|
```bash
|
|
303
323
|
coverme .coverme/scan.json security-assessment-$(date +%Y-%m-%d).pdf && open security-assessment-$(date +%Y-%m-%d).pdf
|
|
304
324
|
```
|