check-standards

Scan repository code and produce a structured conformity report by layer.

2|Updated May 2, 2026
One-click install
npx skills add https://github.com/andrecini/dotnet-squad-copilot-agent --skill check-standards
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: check-standards
Source: https://github.com/andrecini/dotnet-squad-copilot-agent/tree/main/.claude/skills/check-standards
Command: npx skills add https://github.com/andrecini/dotnet-squad-copilot-agent --skill check-standards

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It identifies where your codebase deviates from the project’s architectural and coding standards so you can correct issues without blindly refactoring.

Core Features & Use Cases

  • Standards adherence reporting: Scans the repository and produces a structured report of conformity by layer (Presentation/Application/Domain/Infrastructure/Tests).
  • Severity classification: Categorizes findings as Blocker, Warning, or Suggestion to help prioritize fixes.
  • Guided next action: Recommends running refactor-to-standards for the specific files that need attention.

Quick Start

Ask the agent to check whether the repository follows the project standards and return a report grouped by layer with blockers, warnings, and suggested next steps.

Frequently Asked Questions about check-standards

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check if my codebase follows clean architecture standards?▼

To check clean architecture standards adherence, run a static analysis scan that produces a structured conformity report grouped by Presentation, Domain, and Infrastructure layers. This identifies deviations without modifying your code.

What is the best way to audit code quality and find standard drift?▼

Auditing code quality for standard drift involves performing a read-only repository scan to classify architectural deviations by severity. This generates a diagnostic report categorizing issues as Blockers, Warnings, or Suggestions to prioritize fixes.

Can I run static analysis on specific files instead of the full repository?▼

Yes, you can run static analysis on specific files. The code standards check supports full-repository scans alongside constrained analysis targeting specific files or architectural layers for focused quality reviews.

Does code standards checking modify my source code during analysis?▼

Code standards checking does not modify your source code during analysis. It operates as a read-only static analysis process with guardrails preventing code changes or command execution, ensuring a safe diagnostic review.

How do I get refactoring guidance after finding code standard violations?▼

To get refactoring guidance after finding code standard violations, the static analysis report recommends running a targeted refactor-to-standards action. This provides next steps for correcting the specific files flagged with blockers or warnings.