What is csharp-type-design-performance?
Design .NET types for performance. Seal classes, use readonly structs, prefer static pure functions, avoid premature enumeration, and choose the right collection types. Source: foxminchan/bookworm.
Design .NET types for performance. Seal classes, use readonly structs, prefer static pure functions, avoid premature enumeration, and choose the right collection types.
Quickly install csharp-type-design-performance AI skill to your development environment via command line
Source: foxminchan/bookworm.
Sealing classes enables JIT devirtualization and communicates API intent.
Structs should be readonly when immutable. This prevents defensive copies.
| Small (≤16 bytes typically) | Larger objects | | Short-lived | Long-lived | | Frequently allocated | Shared references needed | | Value semantics required | Identity semantics required | | Immutable | Mutable state |
Design .NET types for performance. Seal classes, use readonly structs, prefer static pure functions, avoid premature enumeration, and choose the right collection types. Source: foxminchan/bookworm.
Stable fields and commands for AI/search citations.
npx skills add https://github.com/foxminchan/bookworm --skill csharp-type-design-performanceDesign .NET types for performance. Seal classes, use readonly structs, prefer static pure functions, avoid premature enumeration, and choose the right collection types. Source: foxminchan/bookworm.
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/foxminchan/bookworm --skill csharp-type-design-performance Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw
https://github.com/foxminchan/bookworm