From rae
Review relevant coding guidelines before starting a task. Use when the user says "consult guidelines", "check standards", "what are the rules for", "review guidelines", or when starting Python, git, refactoring, debugging, or code review work. Also useful when asking "what line length", "how should I format", "what's the testing policy".
How this skill is triggered — by the user, by Claude, or both
Slash command
/rae:consult-guidelinesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read and internalize the coding guidelines relevant to the current task. Guidelines are
Read and internalize the coding guidelines relevant to the current task. Guidelines are
bundled as reference files in the enforce-guidelines skill at
enforce-guidelines/references/.
Based on task type, identify which guidelines to review from enforce-guidelines/references/:
| Task Type | Guidelines to Read |
|---|---|
python | coding-standards.md, python-standards.md |
git | git-workflow.md, pre-commit-checklist.md |
refactor | coding-standards.md, anti-patterns.md |
debug | coding-standards.md (TDD section) |
review | anti-patterns.md, coding-standards.md |
new-repo | repo-structure.md, python-standards.md |
all | All guidelines |
Extract the 3-5 most relevant rules for the current task.
Keep these guidelines in mind while executing the task. Reference them when making decisions.
User: "I'm about to refactor the auth module" Agent: Reads coding-standards.md and anti-patterns.md, summarizes DRY principles and slop patterns to avoid, proceeds with refactor while citing guidelines.
User: "/consult-guidelines python" Agent: Reviews coding-standards.md and python-standards.md, extracts key rules about ruff, type hints, and path management.
npx claudepluginhub peabody124/reproducible_agent_environment --plugin raeProvides code review guidelines on checks to perform, constructive feedback techniques, and comment standards for PRs and critiques.
Generates or updates .github/copilot-instructions.md by exploring codebase for tech stack, conventions, import patterns, code style, and testing. Useful for onboarding or enforcing project guidelines.
Guides code review practices, highlighting common issues and areas for improvement. Activates when reviewing pull requests or code changes.