managedcode

254 mods across 6 repositories, 601 stars between them.

mcaf-devex

169

managedcode/dotPilot

Skill Claude CodeCodex

Improve developer experience for multi-component solutions: onboarding, F5 contract, cross-platform tasks, local inner loop, and reproducible setup. Use when the repo is hard to run, debug, test, or onboard into.

23 4mo ago A 49 tokens copy · 95% MIT

mcaf-documentation

170

managedcode/dotPilot

Skill Claude CodeCodex

Create or refine durable engineering documentation: docs structure, navigation, source-of-truth placement, and writing quality. Use when a repo’s docs are missing, stale, duplicated, or hard to navigate, or when adding new durable engineering guidance.

23 4mo ago A 53 tokens copy · 92% MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use a repo-root .editorconfig to configure free .NET analyzer and style rules. Use when a .NET repo needs rule severity, code-style options, section layout, or analyzer ownership made explicit. Nested .editorconfig files are allowed when they serve a clear subtree-specific purpose.

23 4mo ago A 66 tokens copy · 98% MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free ArchUnitNET library for architecture rules in .NET tests. Use when a repo needs richer architecture assertions than lightweight fluent rule libraries usually provide.

23 4mo ago A 44 tokens copy · 88% MIT

mcaf-dotnet-cloc

173

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free cloc tool for line-count, language-mix, and diff statistics in .NET repositories. Use when a repo needs C# and solution footprint metrics, branch-to-branch LOC comparison, or repeatable code-size reporting in local workflows and CI.

23 4mo ago B 64 tokens original MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use the free built-in .NET SDK analyzers and analysis levels. Use when a .NET repo needs first-party code analysis, EnableNETAnalyzers, AnalysisLevel, or warning policy wired into build and CI.

23 4mo ago A 52 tokens original MIT

mcaf-dotnet-codeql

175

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source CodeQL ecosystem for .NET security analysis. Use when a repo needs CodeQL query packs, CLI-based analysis on open source codebases, or GitHub Action setup with explicit licensing caveats for private repositories.

23 4mo ago A 53 tokens original MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use free built-in .NET maintainability analyzers and code metrics configuration to find overly complex methods and coupled code. Use when a repo needs cyclomatic complexity checks, maintainability thresholds, or complexity-driven refactoring gates.

23 4mo ago A 52 tokens original MIT

mcaf-dotnet-coverlet

177

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free coverlet toolchain for .NET code coverage. Use when a repo needs line and branch coverage, collector versus MSBuild driver selection, or CI-safe coverage commands.

23 4mo ago A 47 tokens original MIT

mcaf-dotnet-csharpier

178

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free CSharpier formatter for C# and XML. Use when a .NET repo intentionally wants one opinionated formatter instead of a highly configurable dotnet format-driven style model.

23 4mo ago A 53 tokens copy · 97% MIT

mcaf-dotnet-features

179

managedcode/dotPilot

Skill Claude CodeCodex

Write modern, version-aware C# for .NET repositories. Use when choosing language features across C# versions, especially C# 13 and C# 14, while staying compatible with the repo's target framework and LangVersion.

23 4mo ago A 54 tokens copy · 95% MIT

mcaf-dotnet-format

180

managedcode/dotPilot

Skill Claude CodeCodex

Use the free first-party dotnet format CLI for .NET formatting and analyzer fixes. Use when a .NET repo needs formatting commands, --verify-no-changes CI checks, or .editorconfig-driven code style enforcement.

23 4mo ago A 57 tokens copy · 88% MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free Meziantou.Analyzer package for design, usage, security, performance, and style rules in .NET. Use when a repo wants broader analyzer coverage with a single NuGet package.

23 4mo ago A 56 tokens copy · 91% MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free NetArchTest.Rules library for architecture rules in .NET unit tests. Use when a repo wants lightweight, fluent architecture assertions for namespaces, dependencies, or layering.

23 4mo ago A 48 tokens original MIT

mcaf-dotnet-profiling

183

managedcode/dotPilot

Skill Claude CodeCodex

Use the free official .NET diagnostics CLI tools for profiling and runtime investigation in .NET repositories. Use when a repo needs CPU tracing, live counters, GC and allocation investigation, exception or contention tracing, heap snapshots, or startup diagnostics without GUI-only tooling.

23 4mo ago A 59 tokens original MIT

managedcode/dotPilot

Skill Claude CodeCodex

Set up or refine open-source .NET code-quality gates for CI: formatting, .editorconfig, SDK analyzers, third-party analyzers, coverage, mutation testing, architecture tests, and security scanning. Use when a .NET repo needs an explicit quality stack in AGENTS.md, docs, or pipeline YAML.

23 4mo ago A 71 tokens copy · 91% MIT

mcaf-dotnet-quickdup

185

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free QuickDup clone detector for .NET repositories. Use when a repo needs duplicate C# code discovery, structural clone detection, DRY refactoring candidates, or repeatable duplication scans in local workflows and CI.

23 4mo ago C 56 tokens original MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free ReportGenerator tool for turning .NET coverage outputs into HTML, Markdown, Cobertura, badges, and merged reports. Use when raw coverage files are not readable enough for CI or human review.

23 4mo ago A 52 tokens original MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use the free official JetBrains ReSharper Command Line Tools for .NET repositories. Use when a repo wants powerful jb inspectcode inspections, jb cleanupcode cleanup profiles, solution-level .DotSettings enforcement, or a stronger CLI quality gate for C# than the default SDK analyzers alone.

23 4mo ago A 73 tokens original MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free Roslynator analyzer packages and optional CLI for .NET. Use when a repo wants broad C# static analysis, auto-fix flows, dead-code detection, optional CLI checks, or extra rules beyond the SDK analyzers.

23 4mo ago A 61 tokens copy · 91% MIT

mcaf-dotnet-stryker

189

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free Stryker.NET mutation testing tool for .NET. Use when a repo needs to measure whether tests actually catch faults, especially in critical libraries or domains.

23 4mo ago A 46 tokens original MIT

managedcode/dotPilot

Skill Claude CodeCodex

Use the open-source free StyleCop.Analyzers package for naming, layout, documentation, and style rules in .NET projects. Use when a repo wants stricter style conventions than the SDK analyzers alone provide.

23 4mo ago A 55 tokens copy · 94% MIT

mcaf-dotnet-tunit

191

managedcode/dotPilot

Skill Claude CodeCodex

Write, run, or repair .NET tests that use TUnit. Use when a repo uses TUnit, [Test], [Arguments], source-generated test projects, or Microsoft.Testing.Platform-based execution.

23 4mo ago A 51 tokens copy · 88% MIT

mcaf-dotnet

192

managedcode/dotPilot

Skill Claude CodeCodex

Primary entry skill for C# and .NET tasks. Detect the repo's language version, test runner, quality stack, and architecture rules; route to the right .NET subskills; and run the repo-defined post-change quality pass after any code change. Use when the user asks to implement, debug, review, or refactor .NET code, or…

23 4mo ago A 87 tokens original MIT