refactor: remove ~70 low-value comments across 13 files

- Remove empty section markers (// === ... ===, // --- ... ---) that duplicate JSDoc or function names
- Remove "what" comments that restate the next line of code (e.g. // Save to disk, // Check for retryable patterns)
- Remove file-level descriptions that restate the filename (e.g. // Pure functions for formatting console output)
- Fix "Added by client" comment referencing implementation history → "Used for audit correlation"
- Preserve all WHY comments: error classification groups, billing/session limit explanations, ESM interop, exactOptionalPropertyTypes, mutex reasoning
This commit is contained in:
ajmallesh
2026-02-16 18:08:11 -08:00
parent b208949345
commit 16de74e0be
13 changed files with 3 additions and 100 deletions
-6
View File
@@ -15,7 +15,6 @@ import {
matchesBillingTextPattern,
} from '../utils/billing-detection.js';
// Custom error class for pentest operations
export class PentestError extends Error {
override name = 'PentestError' as const;
type: PentestErrorType;
@@ -43,8 +42,6 @@ export class PentestError extends Error {
}
}
// Handle tool execution errors
// Handle prompt loading errors
export function handlePromptError(
promptName: string,
error: Error
@@ -60,7 +57,6 @@ export function handlePromptError(
};
}
// Patterns that indicate retryable errors
const RETRYABLE_PATTERNS = [
// Network and connection errors
'network',
@@ -104,12 +100,10 @@ const NON_RETRYABLE_PATTERNS = [
export function isRetryableError(error: Error): boolean {
const message = error.message.toLowerCase();
// Check for explicit non-retryable patterns first
if (NON_RETRYABLE_PATTERNS.some((pattern) => message.includes(pattern))) {
return false;
}
// Check for retryable patterns
return RETRYABLE_PATTERNS.some((pattern) => message.includes(pattern));
}