UNPKG

@nanocollective/nanocoder

Version:

A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter

13 lines 526 B
/** * Health scoring and recommendation logic */ import type { HealthCheck } from '../types.js'; /** * Calculate score based on status and value */ export declare function calculateScore(status: 'pass' | 'fail' | 'warn', value: number, warningThreshold: number, criticalThreshold: number): number; /** * Generate recommendations based on check results */ export declare function generateRecommendations(checks: HealthCheck[], status: 'healthy' | 'degraded' | 'unhealthy'): string[]; //# sourceMappingURL=scoring.d.ts.map