check-agent-standards

Audit branch changes against AGENTS.md rules and generate a compliance report.

3|1|Updated Jun 20, 2016
One-click install
npx skills add https://github.com/paulchiu/dotfiles --skill check-agent-standards
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: check-agent-standards
Source: https://github.com/paulchiu/dotfiles/tree/main/.config/opencode/skills/check-agent-standards
Command: npx skills add https://github.com/paulchiu/dotfiles --skill check-agent-standards

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automatically audit the current branch's changes against AGENTS.md conformance, compare to main, generate a compliance report, and fix violations automatically.

Core Features & Use Cases

  • Audit changed files against all applicable rules derived from AGENTS.md.
  • Auto-fix violations where possible and provide a summary of changes for PR reviews.
  • Use case: enforce project-wide standards on feature branches prior to merging into main.

Quick Start

Run the agent standards checker on your feature branch to audit changes, generate a report, and apply fixes.

Frequently Asked Questions about check-agent-standards

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

FAQPage Schema
How do I audit a git branch for AGENTS.md conformance?

You can audit a git branch for AGENTS.md conformance by diffing the current branch against main, reading the root AGENTS.md file, and generating a detailed compliance report for feature and release workflows.

Can I automatically fix code quality violations before a pull request?

Yes, you can automatically fix code quality violations before a pull request by running an audit that detects standard breaches and safely applies fixes, surfacing a summary of changes for PR reviewer insight.

What is needed to check project standards against a main branch?

To check project standards against a main branch, you need a local git repository containing a local main branch and an AGENTS.md file located at the project root directory.

How does an AGENTS.md audit determine commit violations?

An AGENTS.md audit determines commit violations by reading the root configuration file, comparing the current branch git diff to main, and analyzing the commit history to identify non-conforming changes.

What is the best way to enforce project-wide standards on feature branches prior to merging?

The best way to enforce project-wide standards on feature branches prior to merging is to run an automated audit that evaluates changed files against applicable rules, auto-fixes safe violations, and generates a compliance report.

Are there limitations when auto-fixing conformance violations in a release workflow?

A limitation when auto-fixing conformance violations in a release workflow is that the tool only applies fixes where safe; complex or unsafe standard violations are left unchanged and surfaced in the detailed report instead.