Skip to main content
Manusで任意のスキルを実行
ワンクリックで
$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
ソフトウェア開発者ソフトウェア品質保証アナリスト・テスターウェブ開発者ネットワーク・コンピュータシステム管理者プロジェクト管理専門家データサイエンティスト
9 occupation categories · 100% classified
55%share
#02
MCPGateway
49 skills · 2026-04-18
ソフトウェア開発者ソフトウェア品質保証アナリスト・テスタープロジェクト管理専門家情報セキュリティアナリストウェブ・デジタルインターフェースデザイナーデータサイエンティスト
6 occupation categories · 100% classified
16%share
#03
PrompterOne
33 skills · 2026-04-19
ソフトウェア開発者ソフトウェア品質保証アナリスト・テスターウェブ開発者ウェブ・デジタルインターフェースデザイナーコンピュータ・情報システムマネージャーデータサイエンティスト
7 occupation categories · 100% classified
11%share
#04
Orleans.RateLimiting
21 skills · 2026-05-05
ソフトウェア開発者ソフトウェア品質保証アナリスト・テスター
2 occupation categories · 100% classified
6.8%share
#05
MCAF
18 skills · 2026-03-16
コンピュータシステムアナリストソフトウェア開発者ネットワーク・コンピュータシステム管理者ウェブ・デジタルインターフェースデザイナーウェブ開発者ソフトウェア品質保証アナリスト・テスター
8 occupation categories · 100% classified
5.8%share
#06
dotPilot
6 skills · 2026-03-16
ソフトウェア開発者コンピュータ・情報システムマネージャーソフトウェア品質保証アナリスト・テスターネットワーク・コンピュータシステム管理者
4 occupation categories · 100% classified
1.9%share
#07
TPS
6 skills · 2026-05-14
ソフトウェア品質保証アナリスト・テスターネットワーク・コンピュータシステム管理者プロジェクト管理専門家情報セキュリティアナリスト
4 occupation categories · 100% classified
1.9%share
#08
Storage
3 skills · 2026-03-13
コンピュータシステムアナリストコンピュータネットワークアーキテクト建築家(造園・船舶建築を除く)
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
ソフトウェア開発者

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
Showing top 8 of 168 collected skills in this repository.
#002
MCPGateway
49 skills30updated 2026-04-18
16% of creator
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
Showing top 8 of 49 collected skills in this repository.
#003
PrompterOne
33 skills408updated 2026-04-19
11% of creator
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
Showing top 8 of 33 collected skills in this repository.
#004
Orleans.RateLimiting
21 skills282updated 2026-05-05
6.8% of creator
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
Showing top 8 of 21 collected skills in this repository.
#005
MCAF
18 skills506updated 2026-03-16
5.8% of creator
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
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
ソフトウェア開発者

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 skills10updated 2026-05-14
1.9% of creator
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 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 件中 10 件のリポジトリを表示
すべてのリポジトリを表示しました