Stack traces may contain sensitive information such as file paths, environment variables, or internal implementation details. Consider sanitizing the stack trace or adding a warning about potential sensitive information exposure in verbose mode.
if (error instanceof Error && error.stack && verbose) {
console.error(chalk.yellow('[WARNING] Stack trace may contain sensitive information (file paths, internal details).'));
Originally posted by @Copilot in #48 (comment)