Language Skills
The Code Review Standards perspective enforces coding conventions through skills, not hardcoded rules. Each skill is a self-contained SKILL.md file with a checklist that the perspective loads at review time based on the languages present in the diff. This design means you can add, replace, or overlay standards for any language without modifying the agent.
How Skill Loading Works
The orchestrator dispatches the Standards perspective with a diff-state.json containing the file extensions from the diff. The Standards perspective uses those extensions to select and load skills itself.
flowchart LR
A["Orchestrator:<br/>write diff-state.json"] --> B["Standards perspective:<br/>read extensions"]
B --> C["Match skills via catalog<br/>and semantic filtering"]
C --> D["Load matched skills"]
D --> E["Apply checklists"]
E --> F["Write JSON findings"]
- The orchestrator extracts file extensions from the diff during the context bootstrap step and writes them to the
extensionsarray indiff-state.json. - The Standards perspective reads
diff-state.json, extracts the extensions, and evaluates available skills by matching their name and description against the detected languages or file types. - It selects up to 8 relevant skills and applies each skill's checklist to the diff.
- It writes structured JSON findings for the orchestrator to merge.
Skill discovery is owned entirely by the Standards perspective. The orchestrator supplies the extensions; the Standards perspective decides which skills to load.
Skill Selection Steps
The Standards perspective selects skills as follows:
-
It reads the unique file extensions from
diff-state.json(or extracts them from the diff's changed-file list when not provided). -
It normalizes each extension to language tokens (for example,
.pytopython,.cstocsharp,.shtobash). -
It evaluates built-in skills using a catalog and selects the first skill whose name and description match the detected languages or file types.
-
If no cataloged skill matches, it evaluates additional available skills whose name or description matches the languages, frameworks, or file types in the diff.
-
It selects up to 8 relevant skills total, prioritizing those most closely aligned with the changed files.
-
It loads the full
SKILL.mdbody for each selected skill and applies its checklist to the diff. -
Every finding traces back to the skill that surfaced it, cited by the skill's exact
namefrom frontmatter.
NOTE
Skills are selected through semantic matching of their name and description against detected languages, frameworks, or file types. Built-in skills are evaluated first via a catalog, and additional skills are considered only if no catalog match is found. No path-based resolution or directory scanning is required.
Built-in Skills
The coding-standards collection ships with one language skill. Additional language skills follow the same pattern and can be contributed to the repository or authored independently.
python-foundational
| Field | Value |
|---|---|
| Skill path | skills/coding-standards/python-foundational/ |
| Activates on | .py files in the diff |
| Sections | 9 checklist sections, 30+ individual checks |
| Maturity | Experimental |
The python-foundational skill covers:
| Section | What It Checks |
|---|---|
| Readability and Style | Naming conventions, import grouping, whitespace |
| Pythonic Idioms | Comprehensions, context managers, dataclasses, pathlib usage |
| Function and Class Design | Single responsibility, docstrings, side-effect documentation |
| Type Safety Foundations | Public API type hints, generics, Any avoidance |
| Error Handling | Exception specificity, resource cleanup, error context |
| Testing Foundations | Arrange/Act/Assert structure, fixture usage, parametrize patterns |
| Security Baseline | Input validation, secret exposure, safe deserialization |
| Performance Awareness | Collection choice, generator usage, I/O batching |
| Dependency and Packaging | Pinned versions, minimal dependencies, PEP 723 inline metadata |
Each section contains concrete checks that the agent applies line by line against the diff. Findings reference the section name as their Category in the review output.
Built-in Instructions (Complementary)
The coding-standards collection also includes language-specific instruction files that auto-apply when Copilot generates or edits code. These instruct Copilot how to write code; skills instruct the review agent how to evaluate it.
| Language | Instruction files | Activation pattern |
|---|---|---|
| Bash | bash.instructions.md | **/*.sh |
| Bicep | bicep.instructions.md | **/bicep/** |
| C# | csharp.instructions.md, csharp-tests.instructions.md | **/*.cs |
| PowerShell | powershell.instructions.md, pester.instructions.md | **/*.ps1, **/*.psm1 |
| Python | python-script.instructions.md, python-tests.instructions.md | **/*.py |
| Rust | rust.instructions.md, rust-tests.instructions.md | **/*.rs |
| Terraform | terraform.instructions.md | **/*.tf, **/*.tfvars |
Instructions and skills serve different activation contexts. Instructions guide code generation passively (always on for matching files). Skills guide code review actively (loaded on demand by the Standards perspective). Keeping both aligned ensures that code Copilot generates passes the review skill's checks.
TIP
When you author a new language skill, review the corresponding instruction files to ensure they do not contradict each other. A mismatch creates a generate-then-flag loop where Copilot writes code that the review perspective immediately flags.
Authoring a Custom Skill
You extend the Standards perspective by creating a SKILL.md file under .github/skills/coding-standards/ in your repository. The perspective activates it by matching the skill's name or description against the languages, frameworks, or file types present in the diff.
Skill Stacking
Skills stack additively. When a Python diff is reviewed, the perspective might load both python-foundational (from hve-core) and python-enterprise (from your repository). Findings from all loaded skills appear in the same report, each tagged with the skill that surfaced them.
flowchart TD
subgraph "hve-core (installed)"
A["python-foundational<br/>SKILL.md"]
end
subgraph "Your Repository"
B["python-enterprise<br/>SKILL.md"]
C["react-standards<br/>SKILL.md"]
end
D["Standards Perspective"]
D -->|".py files"| A & B
D -->|".tsx files"| C
D -->|"merged findings"| E["Review Report"]
Directory Structure
Place custom skills under .github/skills/coding-standards/{your-collection}/{skill-name}/
.github/skills/coding-standards/
└── contoso/
└── python-enterprise/
├── SKILL.md
└── references/
└── api-conventions.md
SKILL.md Template
---
name: python-enterprise
description: >-
Contoso Python enterprise standards covering internal API conventions,
approved libraries, and production deployment requirements.
---
The name and description are required. The description drives the agent's activation decision during consumer skill discovery, so include the language names, framework names, or file extensions your skill targets.
Checklist Structure
Organize checks into numbered sections with bullet points. Each bullet should be a concrete, verifiable check:
## Core Checklist
#### 1. API Conventions
* Use `@api_version("v2")` decorator on all public endpoint functions.
* Return `ApiResponse` wrapper for all HTTP handlers.
* Include `correlation_id` in every log statement within request handlers.
#### 2. Approved Libraries
* Use `httpx` for HTTP clients (not `requests`).
* Use `pydantic` for data validation (not manual dict parsing).
* Pin all production dependencies with exact versions in `pyproject.toml`.
What Makes a Good Skill
| Quality | Guidance |
|---|---|
| Specificity | Each check should be verifiable from a diff without running the code |
| Traceability | Group checks into named sections so findings carry a meaningful Category |
| Scope alignment | Write the description to match only the languages and frameworks you intend to cover |
| Reasonable size | Aim for 5-15 sections with 2-5 checks each; larger skills dilute focus |
| No duplication | Do not repeat checks already covered by the foundational skill your skill stacks with |
Testing Your Skill
- Place the
SKILL.mdfile in your repository. - Make a change to a file that matches the skill's target language.
- Invoke the code-review agent and select the
standardsperspective (orfull). - Verify that findings cite your skill's
namein their Skill field. - If the skill does not activate, verify that the
descriptionclearly mentions the language, framework, or file extension present in the diff. Placement under.github/skills/coding-standards/is recommended for organization but does not control activation.
Enterprise Scenarios
Overlay Company Standards on Built-in Skills
A financial services team installs the coding-standards collection and adds .github/skills/coding-standards/woodgrove/python-finserv/SKILL.md with checks for audit logging, PII handling, and approved cryptographic libraries. The Standards perspective loads both python-foundational and python-finserv for every Python diff, producing a unified report.
Add Coverage for an Unsupported Language
A team working in Go creates .github/skills/coding-standards/tailspin/go-standards/SKILL.md with checks for error wrapping conventions, context propagation, and struct tag formatting. The Standards perspective selects and loads it for any .go files in the diff based on semantic matching.
Scope a Skill to a Specific Framework
A frontend team authors .github/skills/coding-standards/northwind/react-standards/SKILL.md with its description mentioning "React components, hooks, and JSX patterns." The agent loads it only when .tsx or .jsx files appear in the diff, leaving unrelated reviews unaffected.
Reference
| Resource | Path |
|---|---|
| python-foundational skill | skills/coding-standards/python-foundational/SKILL.md |
| Standards output format | docs/templates/standards-review-output-format.md |
| Full review output format | docs/templates/full-review-output-format.md |
| Engineering fundamentals | docs/templates/engineering-fundamentals.md |
| Skill authoring guide | Authoring Custom Skills |
| Contributing skills | Contributing: Skills |
| coding-standards collection | collections/coding-standards.collection.yml |
🤖 Crafted with precision by ✨Copilot following brilliant human instruction, then carefully refined by our team of discerning human reviewers.