do-code-review

Installation
SKILL.md

Azure AI ML Code Review

Reviews uncommitted changes (staged and unstaged files) in the azure-ai-ml package, focusing on Azure SDK Python design guidelines, type safety, testing patterns, and API consistency.

Default Review Scope

Unless otherwise specified, review all uncommitted changes in the current branch (staged and unstaged files) within sdk/ml/azure-ai-ml/. This includes new files, modified files, and any pending changes that haven't been committed yet.

Review Focus Areas

1. Azure SDK Design Guidelines Compliance

  • Check: Adherence to Azure SDK Python Design Guidelines
  • Look for: Proper client naming, method patterns, parameter order
  • Flag: Non-compliant naming (use create_or_update not create_or_replace)
  • Example Issue: def get_job(name, subscription_id) should be def get_job(name, **kwargs)
Installs
2
GitHub Stars
5.6K
First Seen
Jun 7, 2026
do-code-review — azure/azure-sdk-for-python