← スキル一覧に戻る

dotnet-symbol-grep-recipes
by bravellian
⭐ 0🍴 0📅 2026年1月25日
SKILL.md
name: dotnet-symbol-grep-recipes description: Quick ripgrep recipes for common C# navigation tasks in this repo.
dotnet-symbol-grep-recipes
Short, practical ripgrep commands for navigating the codebase.
Find Type/Interface/Record Definition
rg -n "\b(class|interface|record|struct)\s+<Name>\b" -g "*.cs"
Find Implementations of Interface
rg -n "\bclass\s+\w+\s*:\s*[^\n]*\b<Interface>\b" -g "*.cs"
Find DI Registrations
rg -n "\b(AddSingleton|AddScoped|AddTransient)\b.*\b<Interface>\b" -g "*.cs"
Find Handlers/Controllers/Endpoints
rg -n "\bclass\s+\w+(Handler|Controller)\b" -g "*.cs"
rg -n "\bMap(Get|Post|Put|Delete|Patch)\b" -g "*.cs"
Find Tests Related to a Class
rg -n "\b<ClassName>(Tests|Test)\b" -g "*Tests*.cs"
rg -n "\b<ClassName>\b" -g "*Tests*.cs"
MSTest Test Discovery
rg -n "\[TestClass\]|\[TestMethod\]|\[DataTestMethod\]|\[DataRow\]" -g "*.cs"
Find Razor Pages
rg -n "\bclass\s+\w+Model\s*:\s*PageModel\b" -g "*.cs"
rg --files -g "*.cshtml"
Find Module Marker Interfaces
rg -n "\bclass\s+\w+\s*:\s*[^\n]*\b(I|IFullStack|IBackground|IEngine|IApi)Module\b" -g "*.cs"
rg -n "\bIModuleDefinition\b|\bIIncursaNavModuleMetadata\b" -g "*.cs"
Find Custom Generated File Definitions
rg --files -g "*.dto.json" -g "*.enum.json" -g "*.fastid.json"
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です