coverme-security-scanner 3.3.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.
@@ -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,12 +305,22 @@ 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
- Save the JSON to `.coverme/scan.json` in the project root, then generate the PDF:
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
- npx coverme-security-scanner .coverme/scan.json security-assessment-$(date +%Y-%m-%d).pdf && open security-assessment-$(date +%Y-%m-%d).pdf
323
+ coverme .coverme/scan.json security-assessment-$(date +%Y-%m-%d).pdf && open security-assessment-$(date +%Y-%m-%d).pdf
304
324
  ```
305
325
 
306
326
  **IMPORTANT:** You MUST run this command to generate and open the PDF. Do not skip this step.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coverme-security-scanner",
3
- "version": "3.3.0",
3
+ "version": "3.6.0",
4
4
  "description": "AI-powered security assessment reports with beautiful PDF output",
5
5
  "type": "module",
6
6
  "bin": {