@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
29 lines • 689 B
TypeScript
/**
* Global instances for health monitoring
*/
/**
* Quick health check functions
*/
export declare const healthChecks: {
/**
* Quick health check - returns status only
*/
quick: () => Promise<"healthy" | "degraded" | "unhealthy">;
/**
* Full health check with details
*/
full: () => Promise<import("./types.js").HealthCheckResult>;
/**
* System metrics snapshot
*/
metrics: () => import("./types.js").SystemMetrics;
/**
* Check if system is ready
*/
ready: () => Promise<boolean>;
/**
* Check if system is alive (basic check)
*/
alive: () => boolean;
};
//# sourceMappingURL=instances.d.ts.map