UNPKG

@bobmatnyc/ai-code-review

Version:

A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter

13 lines (12 loc) 437 B
/** * @fileoverview Helper function for stack summary formatting * * This module provides a helper function to format tech stack summaries * for project without depending on the full stackAwarePackageAnalyzer module. */ /** * Format a tech stack summary for a detected stack * @param stack The detected stack information * @returns A formatted markdown summary */ export declare function formatStackSummary(stack: any): string;