standards-discovery

Solid

Discovers and parses project coding standards, style guides, and architecture documentation. Searches for CONTRIBUTING, CODING_STANDARDS, STYLE_GUIDE, CONVENTIONS, ARCHITECTURE files and extracts rules for code review.

Data & Documents 3 stars 2 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 79/100

Stars 20%
20
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Standards Discovery - Project Documentation Scanner Discovers and parses project-specific coding standards, style guides, and architecture documentation to ensure code reviews align with project conventions. --- ## Purpose Before reviewing code, understand what standards the project follows: - Naming conventions - Architecture patterns - Testing requirements - Import rules - Code organization **Project-specific rules always override generic best practices.** --- ## Discovery Workflow ### Step 1: Search for Standards Files **ALWAYS run these searches first:** ```bash # Primary standards files find . -type f \( \ -iname "CONTRIBUTING*" -o \ -iname "CODING*STANDARD*" -o \ -iname "STYLE*GUIDE*" -o \ -iname "CODE*STYLE*" -o \ -iname "CONVENTIONS*" -o \ -iname "ARCHITECTURE*" -o \ -iname "GUIDELINES*" -o \ -iname "DEVELOPMENT*" -o \ -iname "STANDARDS*" \ \) -not -path "./.git/*" -not -path "./node_modules/*" -not -path "./.venv/*" -not -path "./vendor/*" 2>/dev/null # Check docs directory find ./docs -type f -name "*.md" 2>/dev/null # Check .github directory find ./.github -type f -name "*.md" 2>/dev/null ``` ### Step 2: Check Common Locations | Location | Priority | What to look for | |----------|----------|------------------| | `CONTRIBUTING.md` | HIGH | Code style, PR process, testing requirements | | `docs/ARCHITECTURE.md` | HIGH | Layer structure, patterns used | | `docs/CODING_STANDARDS.md` | HIGH | Naming, formatting, imports | | `.github/C...

Details

Author
AppVerk
Repository
AppVerk/av-marketplace
Created
6 months ago
Last Updated
4 days ago
Language
Shell
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Solid

awesome-code-standards

Universal coding standards: naming, structure, immutability, error handling, and type-safety patterns for consistent code. Use when starting a project or module, refactoring to team conventions, setting up lint/format rules, onboarding, or when the user says 'coding standards', 'naming conventions', 'code style'. Discovers and follows the project's own conventions first; these rules fill the gaps.

2 Updated today
khasky
Code & Development Solid

coding-standard

Creates and updates coding standards, conventions, rules, and guidelines for the current project. Use when creating new standards from scratch, converting existing documents into coding standards, or updating existing standards. Does not create architectural decision records — use architectural-decision-record for ADRs. Does not write feature or system documentation — use project-documentation for that. Does not research open-ended options — use research. Does not produce runbooks for operational scenarios — use runbook for that.

126 Updated 2 days ago
testdouble
Code & Development Solid

coding-standards

Universal coding standards: naming, structure, immutability, error handling, and type-safety patterns for consistent code. Use when starting a project or module, refactoring to team conventions, setting up lint/format rules, onboarding, or when the user says 'coding standards', 'naming conventions', 'code style'. Discovers and follows the project's own conventions first; these rules fill the gaps.

2 Updated today
khasky