Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
$ git log --oneline --stat
stars:399
forks:64
updated:2026年4月29日 20:44
SKILL.md
{what this skill teaches agents}
Split landed work into focused commits and isolate stale automation cleanup
Decide whether a report is a docs mismatch, a real product bug, or both
Handle malformed OpenAPI schema names that collapse to empty generated C# type names, especially trailing-dot definition keys.
Generate Refitter AOT serializer contexts without regex-only type discovery
Run focused Refitter tests with TUnit treenode filters
| name | tunit-test-filtering |
| description | Run focused Refitter tests with TUnit treenode filters |
| domain | testing |
| confidence | high |
| source | manual |
Refitter test projects use TUnit on Microsoft.Testing.Platform. In this repo, dotnet test --filter ... is not supported by the compiled test application, so the fastest reliable way to run a tiny subset of tests is through the generated test executable and a tree-node filter.
src\Refitter.Tests\bin\Release\net10.0\Refitter.Tests.exe\). On Linux/macOS or in bash/zsh, use forward slashes (/), e.g., src/Refitter.Tests/bin/Release/net10.0/Refitter.Tests.exe./*/<Namespace>/<Class>/<Test>& 'src\Refitter.Tests\bin\Release\net10.0\Refitter.Tests.exe' `
--treenode-filter '/*/Refitter.Tests.Scenarios/GenerateStatusCodeCommentsTests/Generated_Code_With_Unicode_Status_Code_Comments_Can_Build' `
--disable-logo `
--no-progress
/*/Refitter.Tests/XmlDocumentationGeneratorTests/Can_Generate_Method_Throws_With_Readable_Unicode_Status_Code_Comments/*/Refitter.Tests.Scenarios/GenerateStatusCodeCommentsTests/Generated_Code_Preserves_Readable_Unicode_In_Status_Code_Comments/*/Refitter.Tests.Scenarios/GenerateStatusCodeCommentsTests/Generated_Code_With_Unicode_Status_Code_Comments_Can_Builddotnet test --filter ... here; the TUnit/Microsoft.Testing.Platform test app rejects that option.