UNPKG

chittycan

Version:

Your completely autonomous network that grows with you - DNA ownership platform with encrypted vaults, PDX portability, and ChittyFoundation governance

44 lines 1.09 kB
/** * Usage Analytics Dashboard * * Rich CLI dashboard showing: * - Productivity patterns * - Time saved metrics * - Growth over time * - CLI expertise levels * - Workflow efficiency */ export interface AnalyticsSummary { totalCommands: number; uniqueCLIs: number; timeSaved: number; avgCommandsPerDay: number; productivityScore: number; topCLI: string; growthRate: number; streakDays: number; expertiseLevels: Record<string, ExpertiseLevel>; } export interface ExpertiseLevel { cli: string; level: "beginner" | "intermediate" | "advanced" | "expert"; commandCount: number; uniquePatterns: number; lastUsed: string; } export interface TimePattern { hour: number; commandCount: number; topCLI: string; } export interface ProductivityInsight { type: "positive" | "suggestion" | "achievement"; title: string; message: string; metric?: string; } /** * Show comprehensive analytics dashboard */ export declare function showAnalyticsDashboard(): void; //# sourceMappingURL=analytics-dashboard.d.ts.map