ComeOnOliver

60 mods across 1 repository, 63 stars between them.

ComeOnOliver/skillshub

Skill Claude CodeCodex

Diagnose and fix .NET HTTPS dev certificate trust issues on Linux. Covers the full certificate lifecycle from generation to system CA bundle inclusion, with distro-specific guidance for Ubuntu, Fedora, Arch, and WSL2.

63 2mo ago D 50 tokens copy · 100% MIT

efcore-patterns

26

ComeOnOliver/skillshub

Skill Claude CodeCodex

Entity Framework Core best practices including NoTracking by default, query splitting for navigation collections, migration management, dedicated migration services, and common pitfalls to avoid.

63 2mo ago A 35 tokens copy · 100% MIT

ilspy-decompile

27

ComeOnOliver/skillshub

Skill Claude CodeCodex

Understand implementation details of .NET code by decompiling assemblies. Use when you want to see how a .NET API works internally, inspect NuGet package source, view framework implementation, or understand compiled .NET binaries.

63 2mo ago A 49 tokens copy · 100% MIT

dotnet-local-tools

28

ComeOnOliver/skillshub

Skill Claude CodeCodex

Managing local .NET tools with dotnet-tools.json for consistent tooling across development environments and CI/CD pipelines.

63 2mo ago A 26 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Workflow for publishing skills and agents to the dotnet-skills Claude Code marketplace. Covers adding new content, updating plugin.json, validation, and release tagging.

63 2mo ago A 36 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Microsoft.Extensions.Options patterns including IValidateOptions, strongly-typed settings, validation on startup, and the Options pattern for clean configuration management.

63 2mo ago A 34 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Organize DI registrations using IServiceCollection extension methods. Group related services into composable Add methods for clean Program.cs and reusable configuration in tests.

63 2mo ago A 35 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Build responsive email templates using MJML markup language. Compiles to cross-client HTML that works in Outlook, Gmail, and Apple Mail. Includes template renderer, layout patterns, and variable substitution.

63 2mo ago A 44 tokens copy · 100% MIT

package-management

33

ComeOnOliver/skillshub

Skill Claude CodeCodex

Manage NuGet packages using Central Package Management (CPM) and dotnet CLI commands. Never edit XML directly - use dotnet add/remove/list commands. Use shared version variables for related packages.

63 2mo ago A 42 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Write UI tests for Blazor applications (Server or WebAssembly) using Playwright. Covers navigation, interaction, authentication, selectors, and common Blazor-specific patterns.

63 2mo ago A 39 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Cache Playwright browser binaries in CI/CD pipelines (GitHub Actions, Azure DevOps) to avoid 1-2 minute download overhead on every build.

63 2mo ago A 37 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Modern .NET project structure including .slnx solution format, Directory.Build.props, central package management, SourceLink, version management with RELEASENOTES.md, and SDK pinning with global.json.

63 2mo ago A 46 tokens copy · 100% MIT

serialization

37

ComeOnOliver/skillshub

Skill Claude CodeCodex

Choose the right serialization format for .NET applications. Prefer schema-based formats (Protobuf, MessagePack) over reflection-based (Newtonsoft.Json). Use System.Text.Json with AOT source generators for JSON scenarios.

63 2mo ago A 44 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Create and maintain AGENTS.md / CLAUDE.md snippet indexes that route tasks to the correct dotnet-skills skills and agents (including compressed Vercel-style indexes).

63 2mo ago A 40 tokens copy · 100% MIT

dotnet-slopwatch

39

ComeOnOliver/skillshub

Skill Claude CodeCodex

Use Slopwatch to detect LLM reward hacking in .NET code changes. Run after every code modification to catch disabled tests, suppressed warnings, empty catch blocks, and other shortcuts that mask real problems.

63 2mo ago A 47 tokens copy · 100% MIT

snapshot-testing

40

ComeOnOliver/skillshub

Skill Claude CodeCodex

Use Verify for snapshot testing in .NET. Approve API surfaces, HTTP responses, rendered emails, and serialized outputs. Detect unintended changes through human-reviewed baseline files.

63 2mo ago A 36 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Write integration tests using TestContainers for .NET with xUnit. Covers infrastructure testing with real databases, message queues, and caches in Docker containers instead of mocks.

63 2mo ago A 38 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Snapshot test email templates using Verify to catch regressions. Validates rendered HTML output matches approved baseline. Works with MJML templates and any email renderer.

63 2mo ago A 36 tokens copy · 100% MIT

obs-memory

43

ComeOnOliver/skillshub

Skill Claude CodeCodex

Persistent Obsidian-based memory for coding agents. Use at session start to orient from a knowledge vault, during work to look up architecture/component/pattern notes, and when discoveries are made to write them back. Activate when the user mentions obsidian memory, obsidian vault, obsidian notes, or /obs commands.…

63 2mo ago A 86 tokens original MIT

swift-concurrency

44

ComeOnOliver/skillshub

Skill Claude CodeCodex

Diagnose data races, convert callback-based code to async/await, implement actor isolation patterns, resolve Sendable conformance issues, and guide Swift 6 migration. Use when developers mention: (1) Swift Concurrency, async/await, actors, or tasks, (2) "use Swift Concurrency" or "modern concurrency patterns", (3)…

63 2mo ago A 158 tokens copy · 86% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Expert guidance for Swift Testing: test structure, #expect/#require macros, traits and tags, parameterized tests, test plans, parallel execution, async waiting patterns, and XCTest migration. Use when writing new Swift tests, modernizing XCTest suites, debugging flaky tests, or improving test quality and…

63 2mo ago A 73 tokens copy · 100% MIT

ComeOnOliver/skillshub

Skill Claude CodeCodex

Write, review, or improve SwiftUI code following best practices for state management, view composition, performance, macOS-specific APIs, and iOS 26+ Liquid Glass adoption. Use when building new SwiftUI features, refactoring existing views, reviewing code quality, or adopting modern SwiftUI patterns.

63 2mo ago A 67 tokens original MIT

update-swiftui-apis

47

ComeOnOliver/skillshub

Skill Claude CodeCodex

Scan Apple's SwiftUI documentation for deprecated APIs and update the SwiftUI Expert Skill with modern replacements. Use when asked to "update latest APIs", "refresh deprecated SwiftUI APIs", "check for new SwiftUI deprecations", "scan for API changes", or after a new iOS/Xcode release. Requires the Sosumi MCP to be…

63 2mo ago A 77 tokens copy · 95% MIT

architect

48

ComeOnOliver/skillshub

Skill Claude CodeCodex

Software architecture specialist for system design, scalability, and technical decision-making. Use PROACTIVELY when planning new features, refactoring large systems, or making architectural decisions.

63 2mo ago A 36 tokens original MIT