CRITICAL CHECKPOINT - DO NOT PUSH TO GITHUB Recovery Status: - Successfully recovered brainy.ts from compiled JavaScript - All core v3.0 API methods functional (add, get, update, delete, relate, find, etc.) - Neural subsystem intact (562KB embedded patterns, NLP working) - Augmentation pipeline operational (20+ augmentations) - HNSW clustering system complete - Triple Intelligence compiled (needs constructor fix) - Test suite validates functionality Changes preserved: - 898 files with changes from last 3 days - 144,475 insertions - All augmentation improvements - All test coverage enhancements - Complete v3.0 feature set This is a LOCAL checkpoint only - contains recovered work after corruption incident. Created backup in .backups/brainy-full-20250910-151314.tar.gz Branch: recovery-checkpoint-20250910-151433 Date: Wed Sep 10 03:18:04 PM PDT 2025
57 lines
1.9 KiB
TypeScript
57 lines
1.9 KiB
TypeScript
/**
|
|
* Universal Display Augmentation - Clean Display
|
|
*
|
|
* Simple, clean display without icons - focusing on AI-powered
|
|
* titles, descriptions, and smart formatting that matches
|
|
* Soulcraft's minimal aesthetic
|
|
*/
|
|
/**
|
|
* No icon mappings - clean, minimal approach
|
|
* The real value is in AI-generated titles and enhanced descriptions,
|
|
* not visual clutter that doesn't align with professional aesthetics
|
|
*/
|
|
export declare const NOUN_TYPE_ICONS: Record<string, string>;
|
|
/**
|
|
* No icon mappings for verbs either - focus on clear relationship descriptions
|
|
* Human-readable relationship text is more valuable than symbolic representations
|
|
*/
|
|
export declare const VERB_TYPE_ICONS: Record<string, string>;
|
|
/**
|
|
* Get icon for a noun type (returns empty string for clean display)
|
|
* @param type The noun type
|
|
* @returns Empty string (no icons)
|
|
*/
|
|
export declare function getNounIcon(type: string): string;
|
|
/**
|
|
* Get icon for a verb type (returns empty string for clean display)
|
|
* @param type The verb type
|
|
* @returns Empty string (no icons)
|
|
*/
|
|
export declare function getVerbIcon(type: string): string;
|
|
/**
|
|
* Get coverage statistics (for backwards compatibility)
|
|
* @returns Coverage info showing clean approach
|
|
*/
|
|
export declare function getIconCoverage(): {
|
|
nounTypes: {
|
|
total: string;
|
|
covered: string;
|
|
};
|
|
verbTypes: {
|
|
total: string;
|
|
covered: string;
|
|
};
|
|
};
|
|
/**
|
|
* Check if an icon exists for a type (always false for clean display)
|
|
* @param type The type to check
|
|
* @param entityType Whether it's a noun or verb
|
|
* @returns Always false (no icons)
|
|
*/
|
|
export declare function hasIcon(type: string, entityType?: 'noun' | 'verb'): boolean;
|
|
/**
|
|
* Get fallback icon (returns empty string for clean display)
|
|
* @param entityType The entity type
|
|
* @returns Empty string (no fallback icons)
|
|
*/
|
|
export declare function getFallbackIcon(entityType?: 'noun' | 'verb'): string;
|