Show all detected project conventions
Analyzes project codebase to detect and display all coding conventions with adoption rates.
/plugin marketplace add bryonjacob/aug/plugin install aug-core@augUses: code-patterns skill
Display all detected conventions across pattern types.
/patterns # Standard report with examples
/patterns --summary # Conventions only, no examples
/patterns --detailed # Include per-module adoption rates
Answer: "What are the conventions in this project?"
Use code-patterns skill to analyze all pattern types:
Include patterns with >=60% adoption. Note absence for patterns with no clear convention (<60%).
Standard format:
Project Conventions
===================
[Pattern Type]:
[Attribute]: [Convention] ([adoption]% adoption)
Example:
[code example]
...
Summary:
Strong conventions (>=80%): <N>
Weak conventions (60-79%): <N>
No conventions (<60%): <N>
Code consistency: [percentage]% ([rating])
Recommendations:
[Based on consistency score]
--summary: Conventions only, no examples.
--detailed: Add per-module adoption breakdown.
consistency_score = strong_conventions / total_patterns * 100
Based on consistency score:
/learn [pattern] - Deep dive into specific pattern type/suggest [file] - Check file compliance with conventions