coverme-security-scanner
v3.7.7
Published
AI-powered security assessment reports with beautiful PDF output
Maintainers
Readme
coverme-cli
AI-powered security assessment reports with beautiful PDF output.
Installation
npm install -g coverme-cliUsage
With Claude Code (Recommended)
- Install the slash command:
coverme-install --global- Open Claude Code in your project:
cd your-project
claude- Run the security assessment:
/covermeClaude will:
- Launch 6 parallel security agents
- Analyze your entire codebase
- Generate a JSON report
- Create a professional PDF
Manual Usage
Generate PDF from a JSON report:
coverme report.json output.pdfReport Schema
interface SecurityReport {
project: string;
date: string;
branch?: string;
scope?: string;
summary: {
critical: number;
high: number;
medium: number;
low: number;
total: number;
};
overallRiskLevel: 'critical' | 'high' | 'medium' | 'low';
executiveSummary: string;
findings: Finding[];
threatModel?: ThreatModelEntry[];
positiveObservations?: { title: string; description: string }[];
remediation?: { p0?: Item[]; p1?: Item[]; p2?: Item[]; p3?: Item[] };
}See src/pdf/types.ts for the complete schema.
Design
Minimal, elegant styling inspired by Stripe, Notion, and Airtable:
- Soft, muted severity colors
- Clean typography
- Professional table layouts
- Subtle borders and spacing
License
MIT
