ソース情報
- リポジトリ
- drmoisan/drm-copilot
- ソースの最終更新活動
- 2026年8月13日 21:52
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/drmoisan/drm-copilot --skill csharpコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | csharp |
| paths | ["**/*.cs","**/*.csproj"] |
| description | C#-specific toolchain and coding standards. |
Legacy C# variant resource for Codex push-down.
This rule file summarizes the C#-specific policies for this repository.
dotnet format. Run dotnet tool restore first when the manifest tool has not been restored. Apply formatting with dotnet tool run csharpier format . and verify read-only with dotnet tool run csharpier check .. Always invoke through dotnet tool run so the manifest-pinned CSharpier version is used.msbuild TaskMaster.sln /t:Rebuild /m /p:Configuration=Debug "/p:Platform=Any CPU" /p:EnableNETAnalyzers=true /p:EnforceCodeStyleInBuild=true. /t:Rebuild is intentional for a warm local worktree: /t:Build can skip CoreCompile through MSBuild incrementality and exit 0 without running analyzers. CI may retain /t:Build on a cold checkout.msbuild TaskMaster.sln /t:Rebuild /m /p:Configuration=Debug "/p:Platform=Any CPU" /p:TreatWarningsAsErrors=true. /t:Rebuild is required locally so compiler and nullable-flow diagnostics actually run. Projects opt into nullable per file with #nullable enable; do not pass /p:Nullable=enable, which opts every unannotated file in at once.vstest.console.exe <test-assembly-paths> /EnableCodeCoverageRun the toolchain in order: format → lint → type-check → test. Restart from step 1 if any step fails or changes files.
PascalCase for types and public members. camelCase for locals and private fields/parameters.async/await for I/O-bound operations. Prefer using/await using for disposable resources.catch (Exception) unless at a defined boundary with added context.internal for non-public APIs.Microsoft.VisualStudio.TestTools.UnitTesting) as the test framework.Assert only when FluentAssertions is not practical.[TestClass] and [TestMethod] attributes.Unit tests must not depend on network, mutable machine PATH or profile state, implicit working-directory assumptions, or external services. Use seam-based mocking for all external boundaries (processes, HTTP, filesystem, clocks). Tests must produce identical results in the IDE test runner and in CLI runs so local and CI behavior agree.
Introduce the smallest seam that enables reliable unit testing. Apply in this order of preference:
IProcessRunner, IFileSystem, IClock). Keep interfaces minimal.Func<>/Action<> delegate for a single call path when a full interface is excessive. Default behavior must remain safe and deterministic.