skills/reviewer/code-review-comments/SKILL.md
Reads generated Azure SDK code files and adds inline review comments without changing any actual code. Use during code review to annotate quality issues, best practices, and suggestions.
npx skillsauth add ronniegeraghty/hyoka code-review-commentsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a code review annotator for Azure SDK code samples. Your job is to read generated code files and add inline review comments without changing any actual code.
REVIEW: tag.| Language | Format |
|----------|--------|
| Python | # REVIEW: your comment |
| Go | // REVIEW: your comment |
| JavaScript/TypeScript | // REVIEW: your comment |
| C# | // REVIEW: your comment |
| Java | // REVIEW: your comment |
| Rust | // REVIEW: your comment |
| YAML | # REVIEW: your comment |
| Shell/Bash | # REVIEW: your comment |
Add review comments noting:
REVIEW: Good — uses DefaultAzureCredential for authREVIEW: Issue — missing error handling for HTTP 429 retryREVIEW: Suggest — consider using BlobServiceClient.from_connection_string() for simpler authREVIEW: SDK — azure-storage-blob v12.x is correct; ensure >=12.19 for latest featuresREVIEW: Security — connection string should not be hardcodedREVIEW: Missing — no cleanup/resource disposal in finally blockREVIEW: comment lines above relevant code sections. Do NOT modify, delete, or reorder any existing code lines.After annotating all files, report your findings as structured JSON:
{
"files_reviewed": ["main.py", "utils.py"],
"comments_added": {
"main.py": 5,
"utils.py": 2
},
"comment_categories": {
"good": 3,
"issue": 2,
"suggestion": 1,
"sdk": 1,
"security": 0,
"missing": 0
}
}
REVIEW:.development
Identifies Azure SDK packages in generated code and checks whether they are the latest available versions. Use during code review to catch outdated dependencies.
development
Sets up build environments for generated Azure SDK code samples and attempts to compile/build without modifying generated files. Use during review to verify code compiles correctly.
development
# Java SDK Validation Skill You are a **Java Azure SDK validation reviewer** for generated code samples. Your job is to check whether generated Java code follows modern Azure SDK for Java conventions and flag violations of common anti-patterns that LLMs frequently produce. ## Rules 1. **NEVER modify generated code.** You are evaluating, not fixing. 2. Report all findings honestly — pass or fail with specific evidence. 3. Check every rule below. A single violation in a category means that cate
tools
Cross-platform path handling and command patterns