coverme-security-scanner 3.2.0 → 3.3.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 +8 -4
- package/package.json +1 -1
package/commands/coverme.md
CHANGED
|
@@ -297,12 +297,14 @@ After all agents complete, compile their findings into a JSON file with this enh
|
|
|
297
297
|
|
|
298
298
|
### Step 5: Generate PDF
|
|
299
299
|
|
|
300
|
-
Save the JSON to
|
|
300
|
+
Save the JSON to `.coverme/scan.json` in the project root, then generate the PDF:
|
|
301
301
|
|
|
302
302
|
```bash
|
|
303
|
-
npx coverme-
|
|
303
|
+
npx coverme-security-scanner .coverme/scan.json security-assessment-$(date +%Y-%m-%d).pdf && open security-assessment-$(date +%Y-%m-%d).pdf
|
|
304
304
|
```
|
|
305
305
|
|
|
306
|
+
**IMPORTANT:** You MUST run this command to generate and open the PDF. Do not skip this step.
|
|
307
|
+
|
|
306
308
|
### Quality Checklist
|
|
307
309
|
|
|
308
310
|
Before generating the PDF, verify:
|
|
@@ -318,9 +320,11 @@ Before generating the PDF, verify:
|
|
|
318
320
|
### Output
|
|
319
321
|
|
|
320
322
|
The final deliverable is:
|
|
321
|
-
1.
|
|
322
|
-
2. `security-assessment-YYYY-MM-DD.pdf` - Professional PDF report
|
|
323
|
+
1. `.coverme/scan.json` - Enhanced findings data with attack chains
|
|
324
|
+
2. `security-assessment-YYYY-MM-DD.pdf` - Professional PDF report (auto-opened)
|
|
323
325
|
|
|
324
326
|
---
|
|
325
327
|
|
|
326
328
|
Now begin the security assessment. Launch all 7 agents in parallel.
|
|
329
|
+
|
|
330
|
+
**CRITICAL REMINDER:** After completing the scan and saving scan.json, you MUST run the PDF generation command in Step 5. The assessment is NOT complete until the PDF is generated and opened.
|