Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
csharp-coding-guidelines
// Coding guidelines for C# development. Use whenever you generate C# code.
$ git log --oneline --stat
stars:3
forks:1
updated:2026年3月2日 10:27
SKILL.md
// Coding guidelines for C# development. Use whenever you generate C# code.
| name | csharp-coding-guidelines |
| description | Coding guidelines for C# development. Use whenever you generate C# code. |
Always use braces {} for single-line statements, even if they are not required.
Bad:
if (condition)
DoSomething();
Good:
if (condition)
{
DoSomething();
}