You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add new entities and relationships to enhance documentation on design patterns and concepts; improve clarity on runtime validation and project structure standards
Copy file name to clipboardExpand all lines: copilot/memory.jsonl
+24-4Lines changed: 24 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -132,6 +132,15 @@
132
132
{"type":"entity","name":"Documentation Guidelines","entityType":"Documentation","observations":["Located at .github/copilot/docs/documentation-guidelines.md","Outlines standards for creating and maintaining documentation","Includes formatting recommendations for different file types","Emphasizes conciseness, accuracy and keeping docs up-to-date"]}
133
133
{"type":"entity","name":"Language-Specific Guidelines","entityType":"Documentation","observations":["Located at .github/copilot/docs/language-specific-guidelines.md","Contains specific guidance for .NET/C# development","Includes tools and commands for formatting and testing","Provides markdown-specific recommendations"]}
134
134
{"type":"entity","name":"Project Documentation","entityType":"Category","observations":["Represents a collection of document types related to project structure and organization","Includes README.md, DESCRIPTION.md, and other standard documentation files","Found consistently across ktsu-dev repositories","Provides high-level overview of project purpose and features"]}
135
+
{"type":"entity","name":"Runtime Validation","entityType":"Concept","observations":["A concept in software development where validation occurs during program execution","Complements compile-time checks by handling conditions that can't be verified statically","Used in ktsu.dev libraries like StrongPaths to validate runtime conditions","Provides immediate feedback when invalid operations are attempted","Less preferable than compile-time validation but necessary in some scenarios"]}
136
+
{"type":"entity","name":"Singleton Pattern","entityType":"Pattern","observations":["Software design pattern that restricts instantiation of a class to a single instance","Provides a global point of access to that instance","Implemented in AppDataStorage for centralized configuration management","Often used for resource managers, caches, and connection pools","Can be implemented with lazy initialization or eager initialization"]}
137
+
{"type":"entity","name":"SOLID Principles","entityType":"Pattern","observations":["Set of five design principles for object-oriented programming","S: Single Responsibility Principle - a class should have only one reason to change","O: Open-Closed Principle - entities should be open for extension but closed for modification","L: Liskov Substitution Principle - objects should be replaceable with instances of their subtypes","I: Interface Segregation Principle - many client-specific interfaces better than one general-purpose interface","D: Dependency Inversion Principle - depend on abstractions, not concretions","Evident in ktsu.dev libraries through focused, single-purpose design"]}
138
+
{"type":"entity","name":"ImGui Ecosystem","entityType":"Code Structure","observations":["Collection of libraries providing a comprehensive ImGui development environment","Built on Dear ImGui and ImGui.NET foundations","Follows a layered architecture pattern with clear separation of concerns","Includes base application framework, styling, widgets, and dialog components","Designed for rapid development of cross-platform GUI applications","Emphasizes a consistent look and feel across applications"]}
139
+
{"type":"entity","name":"Type-Safe Path Operations","entityType":"Feature","observations":["Core capability in StrongPaths library","Allows combining paths with guaranteed type-safety","Provides operations like path joining, relative path creation, and component extraction","Creates appropriate result types based on operation inputs","Prevents common path manipulation errors at compile time","Uses operator overloading for intuitive syntax (e.g., '/' for path combination)"]}
140
+
{"type":"entity","name":"Project Structure Standards","entityType":"Pattern","observations":["Consistent approach to organizing .NET projects across ktsu.dev repositories","Includes standard documentation files (README, LICENSE, etc.)","Uses shared build configuration through Directory.Build.props","Separates main library and test projects","Follows standard naming conventions","Ensures consistent developer experience across repositories"]}
141
+
{"type":"entity","name":"Strong Typing Principles","entityType":"Concept","observations":["Core design philosophy emphasizing the use of rich types over primitive types","Focuses on catching errors at compile time rather than runtime","Creates domain-specific types that represent meaningful concepts","Uses the type system to prevent impossible states","Makes code more self-documenting through expressive types","Central to ktsu.dev's Semantic Clarity approach"]}
142
+
{"type":"entity","name":"Path Type Hierarchy","entityType":"Code Structure","observations":["Organization of path types in the StrongPaths library","Uses abstract base classes for common functionality","Concrete types represent specific path variants (file vs directory, absolute vs relative)","Enforces proper type constraints through the class hierarchy","Enables polymorphic operations on compatible path types","Provides specialized functionality based on path type characteristics"]}
143
+
{"type":"entity","name":"NuGet Distribution Strategy","entityType":"Pattern","observations":["Approach for packaging and distributing ktsu.dev libraries","Uses consistent naming pattern with 'ktsu.' prefix","Focuses on small, focused packages with minimal dependencies","Maintains semantic versioning for reliability","Includes comprehensive package metadata","Ensures proper documentation is available via package README"]}
0 commit comments