| AssemblyTools | Discovering and instantiating types that implement an interface from an assembly | Assembly, Activator, Type |
| BoolTools | Boolean to human-readable string conversions (Yes/No/Empty) | Boolean |
| CollectionTools | Collection extensions: materialization, single-item wrapping, deduplication, padding, concatenation | List, IEnumerable, IReadOnlyCollection |
| ContentTypes | MIME content type constants and file-extension-to-content-type mapping | MediaTypeNames |
| DateTimeTools | DateTime/DateTimeOffset formatting, range comparison, overlap detection, UTC-to-local | DateTime, DateTimeOffset, TimeZoneInfo |
| DecimalTools | Decimal normalization, rounding, monetary formatting, fractional-cent detection | Decimal, BigInteger, Math |
| DictionaryTools | Null-safe dictionary value lookups that return null/default instead of throwing | Dictionary |
| DoubleTools | Double rounding and monetary string formatting | Double, Math |
| DurationTools | NodaTime Duration to human-readable phrase representations | NodaTime Duration, Humanizer |
| EnumTools | Enum parsing from strings, value enumeration, English string conversion | Enum, Type |
| ExceptionHandlingTools | Retry-with-delay for flaky operations; call-every-method with first-exception rethrow | Thread, ExceptionDispatchInfo |
| ExceptionTools | Recursive traversal of the full inner-exception chain | Exception |
| HttpClientTools | HTTP requests with structured error handling, retry with exponential backoff, streaming request bodies | HttpClient, HttpContent, Task |
| IntTools | Repeat-action N times; large number formatting with k/M suffixes | Int32 |
| IterationTools | Processing large collections in configurable-size batches | IEnumerable, LINQ |
| LocalDateTools | NodaTime LocalDate formatting, range containment, overlap detection, calendar calculations | NodaTime LocalDate |
| LocalDateTimeTools | NodaTime LocalDateTime range containment and overlap detection | NodaTime LocalDateTime |
| LocalTimeTools | NodaTime LocalTime range containment, step sequences, formatting | NodaTime LocalTime |
| NetTools (Tewl) | DNS lookup, URL combination, HTML anchor generation, broken-link checking via HTTP HEAD | Dns, HttpWebRequest, HttpWebResponse |
| ObjectTools | Nullable value transformation; null-safe ToString | Object, Nullable |
| ProcessTools | External process execution with captured stdout/stderr and configurable timeout | Process, ProcessStartInfo |
| RandomTools | Cryptographic hex strings, random strings/letters, random element selection, coin flips | RandomNumberGenerator, Random |
| ReflectionTools | Property name extraction from lambda expressions; custom attribute retrieval | Expression, MemberInfo, Attribute |
| RegularExpressions | Common regex patterns (HTML tags); C-style block comment stripping | Regex |
| StreamTools | Stream position reset helpers for seekable streams | MemoryStream, FileStream |
| StringTools | Comprehensive string manipulation: casing, concatenation with delimiters, truncation, English list phrasing, URL slugs, search matching, Base64 | String, StringBuilder, Regex, CultureInfo |
| SynchronizationTools | Machine-wide exclusive access via named global mutex | Mutex |
| TimeSpanTools | TimeSpan formatting as hours:minutes strings and humanized phrases | TimeSpan, Humanizer |
| TimingTools | Execution duration measurement for sync and async functions | Stopwatch |
| XmlTools | XML serialization/deserialization via XmlSerializer; UTF-16 to UTF-8 conversion | XmlSerializer |