Skip to main content
在 Manus 中运行任何 Skill
一键导入
$pwd:
managedcode
GitHub 创作者资料

managedcode

按仓库查看 10 个 GitHub 仓库中的 308 个已收集 skills,并展示近似职业覆盖。

已收集 skills
308
仓库
10
职业领域
2
更新
2026-05-24
职业覆盖
该创作者主要覆盖的职业大类。
仓库分布

Skills 分布在哪些仓库

按已收集 skill 数展示主要仓库,并显示它们在该创作者目录中的占比和职业覆盖。

#01
dotnet-skills
168 个 skills · 2026-05-24
软件开发工程师软件质量保证分析师与测试员网页开发工程师网络与计算机系统管理员项目管理专家信息安全分析师
9 个职业分类 · 已分类 100%
55%占比
#02
MCPGateway
49 个 skills · 2026-04-18
软件开发工程师软件质量保证分析师与测试员信息安全分析师项目管理专家数据科学家网页与数字界面设计师
6 个职业分类 · 已分类 100%
16%占比
#03
PrompterOne
33 个 skills · 2026-04-19
软件开发工程师软件质量保证分析师与测试员网页开发工程师数据科学家网页与数字界面设计师计算机与信息系统经理
7 个职业分类 · 已分类 100%
11%占比
#04
Orleans.RateLimiting
21 个 skills · 2026-05-05
软件开发工程师软件质量保证分析师与测试员
2 个职业分类 · 已分类 100%
6.8%占比
#05
MCAF
18 个 skills · 2026-03-16
计算机系统分析师软件开发工程师网络与计算机系统管理员信息安全分析师数据科学家网页与数字界面设计师
8 个职业分类 · 已分类 100%
5.8%占比
#06
dotPilot
6 个 skills · 2026-03-16
软件开发工程师网络与计算机系统管理员计算机与信息系统经理软件质量保证分析师与测试员
4 个职业分类 · 已分类 100%
1.9%占比
#07
TPS
6 个 skills · 2026-05-14
软件质量保证分析师与测试员信息安全分析师网络与计算机系统管理员项目管理专家
4 个职业分类 · 已分类 100%
1.9%占比
#08
Storage
3 个 skills · 2026-03-13
计算机系统分析师建筑师(景观及海军建筑除外)计算机网络架构师
3 个职业分类 · 已分类 100%
1.0%占比
这里展示前 8 个仓库;完整仓库列表在下方继续。
仓库浏览

仓库与代表性 skills

#001
dotnet-skills
168 个 skills41531更新于 2026-05-24
占该创作者 55%
architecture
软件开发工程师

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
软件开发工程师

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
软件质量保证分析师与测试员

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
软件质量保证分析师与测试员

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
软件质量保证分析师与测试员

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
软件质量保证分析师与测试员

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
软件质量保证分析师与测试员

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
软件质量保证分析师与测试员

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
当前展示该仓库 Top 8 / 168 个已收集 skills。
#002
MCPGateway
49 个 skills30更新于 2026-04-18
占该创作者 16%
crap-score
软件质量保证分析师与测试员

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
软件开发工程师

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
软件质量保证分析师与测试员

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
软件质量保证分析师与测试员

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 49 个已收集 skills。
#003
PrompterOne
33 个 skills408更新于 2026-04-19
占该创作者 11%
dotnet-analyzer-config
软件开发工程师

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
网页开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件质量保证分析师与测试员

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 33 个已收集 skills。
#004
Orleans.RateLimiting
21 个 skills282更新于 2026-05-05
占该创作者 6.8%
analyzer-config
软件开发工程师

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
软件开发工程师

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
软件质量保证分析师与测试员

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
软件开发工程师

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
软件开发工程师

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
软件质量保证分析师与测试员

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 21 个已收集 skills。
#005
MCAF
18 个 skills506更新于 2026-03-16
占该创作者 5.8%
mcaf-ci-cd
网络与计算机系统管理员

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
计算机系统分析师

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
软件质量保证分析师与测试员

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
计算机系统分析师

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
计算机系统分析师

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
计算机系统分析师

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 18 个已收集 skills。
#006
dotPilot
6 个 skills162更新于 2026-03-16
占该创作者 1.9%
dotnet-microsoft-agent-framework
软件开发工程师

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
软件开发工程师

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

2026-03-16
dotnet-orleans
软件开发工程师

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
网络与计算机系统管理员

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
计算机与信息系统经理

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
软件质量保证分析师与测试员

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 个 skills10更新于 2026-05-14
占该创作者 1.9%
dotnet-xunit
软件质量保证分析师与测试员

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
项目管理专家

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
软件质量保证分析师与测试员

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
软件质量保证分析师与测试员

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
网络与计算机系统管理员

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
信息安全分析师

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 个 skills13328更新于 2026-03-13
占该创作者 1.0%
#009
RagSharp
3 个 skills01更新于 2026-01-04
占该创作者 1.0%
#010
FeatureChecker
1 个 skills81更新于 2026-05-10
占该创作者 0.3%
已展示 10 / 10 个仓库
已展示全部仓库