スキル一覧に戻る
zadazorg

csharp-standards

by zadazorg

0🍴 0📅 2026年1月26日
GitHubで見るManusで実行

SKILL.md


name: csharp-standards description: Modern C# 14 / .NET 10 coding standards and best practices. Based on CONSTITUTION. Use when writing or editing C# code. metadata: author: csharp-standards version: "4.0.0"

C# 14 / .NET 10 Coding Standards

Philosophy: Defensive Coding | Strict Analysis | Pragmatic DDD | Vertical Slices

Goal: Zero warnings, zero allocations on hot paths, type-safety, immutability.

Core Principles

  1. Sealed by default — all classes sealed unless abstract
  2. Internal by defaultpublic only for library APIs
  3. No null returns — use ErrorOr<T> or Option<T>
  4. No exceptions for logic — Result pattern for expected failures
  5. Value Objects — wrap primitives in domain types
  6. Vertical slices — organize by features, not layers

References

Load on-demand based on task context:

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です