Agent skill
dotnet-format-analyzers
Define canonical dotnet format and analyzer verification commands, and provide scripts that generate a format/analyzer report. Use when checking formatting or Roslyn analyzers without reformatting everything.
Install this agent skill to your Project
npx add-skill https://github.com/incursa/workbench/tree/main/.codex/skills/dotnet-format-analyzers
SKILL.md
dotnet-format-analyzers
Provide canonical format/analyzer commands and a report-generating script that stays in verify mode.
Canonical commands
Format verification:
dotnet format Workbench.slnx --verify-no-changes
Analyzer verification:
dotnet format analyzers Workbench.slnx --verify-no-changes
Report script
Bash:
bash .codex/skills/dotnet-format-analyzers/scripts/run-format-analyzers.sh
PowerShell:
pwsh -File .codex/skills/dotnet-format-analyzers/scripts/run-format-analyzers.ps1
Outputs:
artifacts/codex/format-report.txt
Targeted usage (preferred)
Never reformat the world unless explicitly asked. Prefer targeted scopes:
- Solution or project: pass a specific
.slnxor.csprojpath - Files: pass one or more
--includepaths
Examples:
bash .codex/skills/dotnet-format-analyzers/scripts/run-format-analyzers.sh src/app/Incursa.Web/Incursa.Web.csproj
bash .codex/skills/dotnet-format-analyzers/scripts/run-format-analyzers.sh Workbench.slnx --include src/app/Incursa.Web/Pages/Error.cshtml.cs
Notes
- Scripts run in verify mode only.
- The report captures both formatter and analyzer output for CI uploads or local triage.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
workbench-github
GitHub workflows for Workbench CLI. Use when creating pull requests from work items or wiring GitHub-specific actions.
workbench-architecture
Architecture and ADR workflows for Workbench CLI. Use when documenting system design, decisions, tradeoffs, or rationale that must be tracked over time.
dotnet-build-diagnostics
Capture dotnet environment and CI-style build diagnostics with binlog and summary output.
dotnet-test-triage
Run dotnet test, capture failed test cases, and generate a rerun filter plus a markdown failure summary. Use when test runs fail and you need a focused rerun command or a compact failure report.
dotnet-symbol-grep-recipes
Quick ripgrep recipes for common C# navigation tasks in this repo.
workbench-docs
Documentation workflows for Workbench CLI. Use when creating or updating specs, ADRs, runbooks, guides, or general docs, and when syncing backlinks or change notes.
Didn't find tool you were looking for?