Skip to main content
Jeden Skill in Manus ausführen
mit einem Klick
$pwd:
managedcode
GitHub creator profile

managedcode

Repository-level view of 308 collected skills across 10 GitHub repositories, including approximate occupation coverage.

skills collected
308
repositories
10
occupation fields
2
updated
2026-05-24
occupation focus
Major fields detected across this creator.
repository map

Where the skills live

Top repositories by collected skill count, with their share of this creator catalog and occupation spread.

#01
dotnet-skills
168 skills · 2026-05-24
SoftwareentwicklerSoftwarequalitätssicherungsanalysten und -testerWebentwicklerNetzwerk- und ComputersystemadministratorenProjektmanagementspezialistenDatenbankarchitekten
9 occupation categories · 100% classified
55%share
#02
MCPGateway
49 skills · 2026-04-18
SoftwareentwicklerSoftwarequalitätssicherungsanalysten und -testerInformationssicherheitsanalystenProjektmanagementspezialistenDatenwissenschaftlerWeb- und digitale Schnittstellendesigner
6 occupation categories · 100% classified
16%share
#03
PrompterOne
33 skills · 2026-04-19
SoftwareentwicklerSoftwarequalitätssicherungsanalysten und -testerWebentwicklerComputersystem- und IT-ManagerDatenwissenschaftlerProjektmanagementspezialisten
7 occupation categories · 100% classified
11%share
#04
Orleans.RateLimiting
21 skills · 2026-05-05
SoftwareentwicklerSoftwarequalitätssicherungsanalysten und -tester
2 occupation categories · 100% classified
6.8%share
#05
MCAF
18 skills · 2026-03-16
ComputersystemanalytikerSoftwareentwicklerNetzwerk- und ComputersystemadministratorenDatenwissenschaftlerInformationssicherheitsanalystenSoftwarequalitätssicherungsanalysten und -tester
8 occupation categories · 100% classified
5.8%share
#06
dotPilot
6 skills · 2026-03-16
SoftwareentwicklerComputersystem- und IT-ManagerNetzwerk- und ComputersystemadministratorenSoftwarequalitätssicherungsanalysten und -tester
4 occupation categories · 100% classified
1.9%share
#07
TPS
6 skills · 2026-05-14
Softwarequalitätssicherungsanalysten und -testerInformationssicherheitsanalystenNetzwerk- und ComputersystemadministratorenProjektmanagementspezialisten
4 occupation categories · 100% classified
1.9%share
#08
Storage
3 skills · 2026-03-13
ComputersystemanalytikerArchitekten (außer Landschafts- und Schiffbauarchitekten)Computernetzwerk-Architekten
3 occupation categories · 100% classified
1.0%share
Showing the top 8 repositories here; full repository list continues below.
repository explorer

Repositories and representative skills

#001
dotnet-skills
168 skills41531updated 2026-05-24
55% of creator
architecture
Softwareentwickler

Design or review .NET solution architecture across modular monoliths, clean architecture, vertical slices, microservices, DDD, CQRS, and cloud-native boundaries without over-engineering. USE FOR: .NET architecture choices; layer and domain boundary review; service decomposition; clean architecture, vertical slice, DDD, CQRS, and modular monolith decisions. DO NOT USE FOR: unrelated stacks; generic tasks that do not need this specific guidance. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made.

2026-05-24
dotnet-webapi
Softwareentwickler

Guides creation and modification of ASP.NET Core Web API endpoints with correct HTTP semantics, OpenAPI metadata, and error handling. USE FOR: adding new API endpoints (controllers or minimal APIs), wiring up OpenAPI/Swagger, creating .http test files, setting up global error handling middleware. DO NOT USE FOR: general C# coding style, EF Core data access or query optimization (use optimizing-ef-core-queries), frontend/Blazor work, gRPC services, or SignalR hubs.

2026-05-23
assertion-quality
Softwarequalitätssicherungsanalysten und -tester

Analyzes the variety and depth of assertions across .NET test suites. Use when the user asks to evaluate assertion quality, find shallow testing, identify assertion-free tests (no assertions or only trivial ones like Assert.IsNotNull), flag self-referential or tautological assertions (output equals input on identity/round-trip operations), measure assertion coverage diversity, or audit whether tests verify different facets of correctness. Produces metrics and actionable recommendations. Works with MSTest, xUnit, NUnit, TUnit. DO NOT USE FOR: writing new tests (use writing-mstest-tests), other anti-patterns like flakiness or duplication (use test-anti-patterns), or fixing assertions.

2026-05-23
code-testing-agent
Softwarequalitätssicherungsanalysten und -tester

Generates and writes new unit tests for any programming language using a Research-Plan-Implement pipeline. Use when asked to generate tests, write unit tests, add tests, improve test coverage, create test project, achieve high coverage, comprehensive tests, or asked to scaffold a new test project for an app, service, or library. Supports C#, TypeScript, JavaScript, Python, Go, Rust, Java, and more. Orchestrates the code-testing-generator sub-agent through research, planning, and implementation phases so tests compile, pass, and follow project conventions. DO NOT USE FOR: running existing tests or test filters (use run-tests); diagnosing coverage plateaus or project-wide coverage/CRAP analysis without writing tests (use coverage-analysis); targeted method/class CRAP scores (use crap-score); MSTest assertion guidance, MSTest test pattern modernization, or fixing existing MSTest test code (use writing-mstest-tests).

2026-05-23
code-testing-extensions
Softwarequalitätssicherungsanalysten und -tester

Provides file paths to language-specific extension files for the code-testing pipeline. Call this skill to discover available extension guidance files (e.g., dotnet.md for .NET, cpp.md for C++). Do not use directly — invoked by code-testing agents and skills that need language-specific references.

2026-05-23
coverage-analysis
Softwarequalitätssicherungsanalysten und -tester

Project-wide code coverage and CRAP (Change Risk Anti-Patterns) score analysis for .NET projects. Calculates CRAP scores per method and surfaces risk hotspots — complex code with low coverage that is dangerous to modify. Use to diagnose why coverage is stuck or plateaued, identify what methods block improvement, or get project-wide coverage analysis with risk ranking. USE FOR: coverage stuck, coverage plateau, can't increase coverage, what's blocking coverage, coverage gap, CRAP scores, risk hotspots, where to add tests, coverage analysis, coverage report. DO NOT USE FOR: targeted single-method CRAP analysis (use crap-score), writing tests, running tests without coverage, or troubleshooting test execution (use run-tests).

2026-05-23
crap-score
Softwarequalitätssicherungsanalysten und -tester

Calculates targeted CRAP (Change Risk Anti-Patterns) scores for a named .NET method, class, or single source file. Use when the user explicitly asks to compute CRAP scores or assess risky untested code for a specific target, combining Cobertura coverage data with cyclomatic complexity analysis. DO NOT USE FOR: project-wide coverage analysis, coverage plateau or "stuck coverage" diagnosis, what's blocking coverage, or where to add tests across a project (use coverage-analysis); writing tests; running tests without CRAP context.

2026-05-23
test-anti-patterns
Softwarequalitätssicherungsanalysten und -tester

Detection-focused review of .NET test code for anti-patterns that undermine reliability and diagnostic value. USE FOR: audit test quality, review test code, find test anti-patterns, tests pass but don't verify anything, flaky tests, ordering dependency, duplicate tests, magic values, missing/no assertions, swallowed exceptions, always-true assertions, over-mocking, test coupling, coverage touching, coverage inflation. DO NOT USE FOR: writing new tests (use writing-mstest-tests), direct MSTest API rewrites or implementation-only fixes such as swapped Assert.AreEqual argument order, running tests (use run-tests), migrating between frameworks (use migration skills), deep formal audit based on academic test smell taxonomy (use test-smell-detection).

2026-05-23
Showing top 8 of 168 collected skills in this repository.
#002
MCPGateway
49 skills30updated 2026-04-18
16% of creator
crap-score
Softwarequalitätssicherungsanalysten und -tester

Calculates CRAP (Change Risk Anti-Patterns) score for .NET methods, classes, or files. Use when the user asks to assess test quality, identify risky untested code, compute CRAP scores, or evaluate whether complex methods have sufficient test coverage. Requires code coverage data (Cobertura XML) and cyclomatic complexity analysis. DO NOT USE FOR: writing tests, general test execution unrelated to coverage/CRAP analysis, or general code coverage reporting without CRAP context.

2026-04-18
dotnet-cloc
Softwareentwickler

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.

2026-04-18
dotnet-code-analysis
Softwarequalitätssicherungsanalysten und -tester

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

2026-04-18
dotnet-coverlet
Softwarequalitätssicherungsanalysten und -tester

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.

2026-04-18
dotnet-csharpier
Softwareentwickler

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.

2026-04-18
dotnet-format
Softwareentwickler

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.

2026-04-18
dotnet
Softwareentwickler

Primary router skill for broad .NET work. Classify the repo by app model and cross-cutting concern first, then switch to the narrowest matching .NET skill instead of staying at a generic layer.

2026-04-18
mcaf-adr-writing
Softwareentwickler

Create or update an ADR under `docs/ADR/` for architectural decisions, dependency changes, data-model changes, or cross-cutting policy shifts. Use when the user asks to write, update, or document an ADR, record a design decision, capture architecture trade-offs, or justify a repo-wide technical policy.

2026-03-08
Showing top 8 of 49 collected skills in this repository.
#003
PrompterOne
33 skills408updated 2026-04-19
11% of creator
dotnet-analyzer-config
Softwareentwickler

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.

2026-04-19
dotnet-aspnet-core
Webentwickler

Build, debug, modernize, or review ASP.NET Core applications with correct hosting, middleware, security, configuration, logging, and deployment patterns on current .NET.

2026-04-19
dotnet-biome
Softwareentwickler

Use Biome in .NET repositories that ship Node-based frontend assets and want a fast combined formatter-linter-import organizer for JavaScript, TypeScript, CSS, JSON, GraphQL, or HTML. Use when a repo prefers a modern all-in-one CLI over a larger ESLint plus Prettier style stack.

2026-04-19
dotnet-blazor
Softwareentwickler

Build and review Blazor applications across server, WebAssembly, web app, and hybrid scenarios with correct component design, state flow, rendering, and hosting choices.

2026-04-19
dotnet-eslint
Softwareentwickler

Use ESLint in .NET repositories that ship JavaScript, TypeScript, React, or other Node-based frontend assets. Use when a repo needs a configurable CLI lint gate for frontend correctness, import hygiene, unsafe patterns, or framework-specific rules.

2026-04-19
dotnet-htmlhint
Softwarequalitätssicherungsanalysten und -tester

Use HTMLHint in .NET repositories that ship static HTML output or standalone frontend templates. Use when a repo needs a focused CLI lint gate for DOM structure, invalid attributes, and basic HTML correctness checks on static pages.

2026-04-19
dotnet-managedcode-markitdown
Softwareentwickler

Use ManagedCode.MarkItDown when a .NET application needs deterministic document-to-Markdown conversion for ingestion, indexing, summarization, or content-processing workflows.

2026-04-19
dotnet-managedcode-mimetypes
Softwareentwickler

Use ManagedCode.MimeTypes when a .NET application needs consistent MIME type detection, extension mapping, and content-type decisions for uploads, downloads, or HTTP responses.

2026-04-19
Showing top 8 of 33 collected skills in this repository.
#004
Orleans.RateLimiting
21 skills282updated 2026-05-05
6.8% of creator
analyzer-config
Softwareentwickler

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.

2026-05-05
architecture
Softwareentwickler

Design or review .NET solution architecture across modular monoliths, clean architecture, vertical slices, microservices, DDD, CQRS, and cloud-native boundaries without over-engineering.

2026-05-05
archunitnet
Softwarequalitätssicherungsanalysten und -tester

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.

2026-05-05
code-analysis
Softwareentwickler

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

2026-05-05
complexity
Softwareentwickler

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.

2026-05-05
crap-score
Softwarequalitätssicherungsanalysten und -tester

Calculates CRAP (Change Risk Anti-Patterns) score for .NET methods, classes, or files. Use when the user asks to assess test quality, identify risky untested code, compute CRAP scores, or evaluate whether complex methods have sufficient test coverage. Requires code coverage data (Cobertura XML) and cyclomatic complexity analysis. DO NOT USE FOR: writing tests, general test execution unrelated to coverage/CRAP analysis, or general code coverage reporting without CRAP context.

2026-05-05
csharpier
Softwareentwickler

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.

2026-05-05
dotnet
Softwareentwickler

Primary router skill for broad .NET work. Classify the repo by app model and cross-cutting concern first, then switch to the narrowest matching .NET skill instead of staying at a generic layer.

2026-05-05
Showing top 8 of 21 collected skills in this repository.
#005
MCAF
18 skills506updated 2026-03-16
5.8% of creator
mcaf-ci-cd
Netzwerk- und Computersystemadministratoren

Design or refine CI/CD workflows, quality gates, release flow, and safe AI-assisted pipeline authoring. Use when adding or changing build pipelines, release stages, IaC-driven environments, or deployment rollback policy.

2026-03-16
mcaf-solution-governance
Computersystemanalytiker

Set up or refine solution-level governance for MCAF repositories: root and project-local `AGENTS.md`, rule precedence, solution topology, skill routing, and maintainability-limit policy placement. Use when bootstrapping a repo, restructuring a multi-project solution, or tightening agent rules.

2026-03-16
mcaf-testing
Softwarequalitätssicherungsanalysten und -tester

Add or update automated tests for a change using the repository’s verification rules in `AGENTS.md`. Use when implementing a feature, bugfix, refactor, or regression test; prefer stable integration/API/UI coverage and pull deeper test strategy from the bundled references.

2026-03-16
mcaf-adr-writing
Computersystemanalytiker

Create or update an ADR under `docs/ADR/` for architectural decisions, dependency changes, data-model changes, or cross-cutting policy shifts. Use when the user asks to write, update, or document an ADR, record a design decision, capture architecture trade-offs, or justify a repo-wide technical policy.

2026-03-15
mcaf-agile-delivery
Computersystemanalytiker

Shape delivery workflow around backlog quality, roles, ceremonies, and engineering feedback. Use when defining how the team plans, tracks work, and turns feedback into durable improvements.

2026-03-15
mcaf-architecture-overview
Computersystemanalytiker

Create or update `docs/Architecture.md` as the global architecture map for a solution. Use when bootstrapping a repo, onboarding, or changing modules, boundaries, or contracts. Keep it navigational and use `references/overview-template.md` for scaffolding.

2026-03-15
mcaf-code-review
Softwareentwickler

Prepare for, perform, or tighten code review workflow: PR scope, review checklist, reviewer expectations, and merge hygiene. Use when shaping pull requests, defining review policy, or auditing whether a change is review-ready.

2026-03-15
mcaf-devex
Softwareentwickler

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.

2026-03-15
Showing top 8 of 18 collected skills in this repository.
#006
dotPilot
6 skills162updated 2026-03-16
1.9% of creator
dotnet-microsoft-agent-framework
Softwareentwickler

Build .NET AI agents and multi-agent workflows with Microsoft Agent Framework using the right agent type, threads, tools, workflows, hosting protocols, and enterprise guardrails.

2026-03-16
dotnet-microsoft-extensions-ai
Softwareentwickler

Build provider-agnostic .NET AI integrations with `Microsoft.Extensions.AI`, `IChatClient`, embeddings, middleware, structured output, vector search, and evaluation.

2026-03-16
dotnet-orleans
Softwareentwickler

Build or review distributed .NET applications with Orleans grains, silos, persistence, streaming, reminders, placement, testing, and cloud-native hosting.

2026-03-16
mcaf-ci-cd
Netzwerk- und Computersystemadministratoren

Design or refine CI/CD workflows, quality gates, release flow, and safe AI-assisted pipeline authoring. Use when adding or changing build pipelines, release stages, IaC-driven environments, or deployment rollback policy.

2026-03-15
mcaf-solution-governance
Computersystem- und IT-Manager

Set up or refine solution-level governance for MCAF repositories: root and project-local `AGENTS.md`, rule precedence, solution topology, skill routing, and maintainability-limit policy placement. Use when bootstrapping a repo, restructuring a multi-project solution, or tightening agent rules.

2026-03-15
mcaf-testing
Softwarequalitätssicherungsanalysten und -tester

Add or update automated tests for a change using the repository’s verification rules in `AGENTS.md`. Use when implementing a feature, bugfix, refactor, or regression test; prefer stable integration/API/UI coverage and pull deeper test strategy from the bundled references.

2026-03-15
#007
TPS
6 skills10updated 2026-05-14
1.9% of creator
dotnet-xunit
Softwarequalitätssicherungsanalysten und -tester

Write, run, or repair .NET tests that use xUnit. Use when a repo uses `xunit`, `xunit.v3`, `[Fact]`, `[Theory]`, or `xunit.runner.visualstudio`, and you need the right CLI, package, and runner guidance for xUnit on VSTest or Microsoft.Testing.Platform.

2026-05-14
mcaf-solution-governance
Projektmanagementspezialisten

Set up or refine solution-level governance for MCAF repositories: root and project-local `AGENTS.md`, rule precedence, solution topology, skill routing, and maintainability-limit policy placement. Use when bootstrapping a repo, restructuring a multi-project solution, or tightening agent rules.

2026-05-14
mcaf-testing
Softwarequalitätssicherungsanalysten und -tester

Add or update automated tests for a change using the repository’s verification rules in `AGENTS.md`. Use when implementing a feature, bugfix, refactor, or regression test; prefer stable integration/API/UI coverage and pull deeper test strategy from the bundled references.

2026-05-14
mcaf-code-review
Softwarequalitätssicherungsanalysten und -tester

Prepare for, perform, or tighten code review workflow: PR scope, review checklist, reviewer expectations, and merge hygiene. Use when shaping pull requests, defining review policy, or auditing whether a change is review-ready.

2026-04-03
mcaf-observability
Netzwerk- und Computersystemadministratoren

Design or improve observability for application and delivery flows: logs, metrics, traces, correlation, alerts, and operational diagnostics. Use when a change affects runtime visibility, failure diagnosis, SLOs, or alerting.

2026-04-03
mcaf-security-baseline
Informationssicherheitsanalysten

Apply baseline engineering security guidance: secrets handling, secure defaults, threat modelling references, and review checkpoints for auth, data flow, pipelines, and external integrations. Use when a change has security impact but does not require a full standalone AppSec engagement.

2026-04-03
#008
Storage
3 skills13328updated 2026-03-13
1.0% of creator
#009
RagSharp
3 skills01updated 2026-01-04
1.0% of creator
#010
FeatureChecker
1 skills81updated 2026-05-10
0.3% of creator
10 von 10 Repositories angezeigt
Alle Repositories angezeigt