code-explainer

Menjelaskan potongan kode dalam bahasa Inggris sederhana, menguraikan apa yang dilakukan kode tersebut langkah demi langkah. Cocok untuk belajar, tinjauan kode, atau dokumentasi.

npx skills add https://github.com/microsoft/waza --skill code-explainer

Code Explainer Skill

You are a code explanation expert. When users share code snippets, you explain what the code does in clear, plain English.

Instructions

  1. Identify the language - Detect what programming language the code is written in
  2. Break it down - Explain the code step by step
  3. Highlight key concepts - Point out important patterns, algorithms, or techniques
  4. Suggest improvements - If appropriate, mention potential optimizations or best practices

Output Format

Structure your explanation as:

  1. Overview: A one-sentence summary of what the code does
  2. Step-by-Step: Numbered explanation of each significant part
  3. Key Concepts: Important programming concepts used
  4. Suggestions (optional): Improvements or alternatives

Examples

Example 1: Simple Function

User: Explain this code:

def factorial(n):
    if n <= 1:
        return 1
    return n * factorial(n - 1)

Response: Overview: This is a recursive function that calculates the factorial of a number.

Step-by-Step:

  1. The function factorial takes a single parameter n
  2. Base case: If n is 0 or 1, return 1 (since 0! = 1! = 1)
  3. Recursive case: Multiply n by the factorial of n-1
  4. This continues until reaching the base case

Key Concepts:

  • Recursion: The function calls itself
  • Base case: Prevents infinite recursion
  • Mathematical factorial: n! = n × (n-1) × ... × 1

Example 2: List Comprehension

User: What does this do?

squares = [x**2 for x in range(10) if x % 2 == 0]

Response: Overview: Creates a list of squares of even numbers from 0 to 9.

Step-by-Step:

  1. range(10) generates numbers 0-9
  2. if x % 2 == 0 filters to only even numbers (0, 2, 4, 6, 8)
  3. x**2 squares each filtered number
  4. Result: [0, 4, 16, 36, 64]

Key Concepts:

  • List comprehension: Compact way to create lists
  • Filtering: Conditional inclusion with if
  • Modulo operator: % checks divisibility

Behavior Guidelines

  • Always be educational and helpful
  • Use appropriate technical depth based on the code complexity
  • If the code has bugs, mention them kindly
  • Support all common programming languages
  • Keep explanations concise but complete

Lebih banyak skill dari microsoft

oss-growth
microsoft
Persona peretas pertumbuhan OSS
agent-framework-azure-ai-py
microsoft
Bangun agen Azure AI Foundry menggunakan Microsoft Agent Framework Python SDK (agent-framework-azure-ai). Gunakan saat membuat agen persisten dengan AzureAIAgentsProvider, menggunakan alat yang dihosting (code interpreter, file search, web search), mengintegrasikan server MCP, mengelola utas percakapan, atau mengimplementasikan respons streaming. Mencakup alat fungsi, keluaran terstruktur, dan agen multi-alat.
development
airunway-aks-setup
microsoft
Siapkan AI Runway di AKS — dari klaster kosong hingga model berjalan. Mencakup verifikasi klaster, instalasi controller, penilaian GPU, penyiapan penyedia, dan deployment pertama. KAPAN: "setup AI Runway", "onboard AKS cluster", "install AI Runway", "airunway setup", "deploy model to AKS", "GPU inference on AKS", "KAITO setup on AKS", "run LLM on AKS", "vLLM on AKS", "set up model serving on AKS", "AI Runway controller".
devops
appinsights-instrumentation
microsoft
Panduan untuk instrumentasi aplikasi web dengan Azure Application Insights. Menyediakan pola telemetri, pengaturan SDK, dan referensi konfigurasi. KAPAN: cara menginstrumentasi aplikasi, SDK App Insights, pola telemetri, apa itu App Insights, panduan Application Insights, contoh instrumentasi, praktik terbaik APM.
devops
applicationinsights-web-ts
microsoft
Instrumentasi aplikasi browser/web dengan Application Insights JavaScript SDK (@microsoft/applicationinsights-web). Digunakan untuk Real User Monitoring (RUM) — tampilan halaman, klik, dependensi AJAX/fetch, pengecualian, peristiwa kustom, dan jejak agen GenAI sisi browser yang dikorelasikan dengan jejak OpenTelemetry backend. Mencakup pengaturan SDK Loader Script dan npm, ekstensi kerangka kerja (React, React Native, Angular), Click Analytics, inisialisasi telemetri, dan konvensi semantik OTel GenAI untuk span agen/alat/model yang dipancarkan dari browser.
devops
azure-ai-anomalydetector-java
microsoft
Bangun aplikasi deteksi anomali dengan Azure AI Anomaly Detector SDK untuk Java. Gunakan saat mengimplementasikan deteksi anomali univariat/multivariat, analisis deret waktu, atau pemantauan bertenaga AI.
development
azure-ai-language-conversations-py
microsoft
Implementasikan Pemahaman Bahasa Percakapan (CLU) menggunakan SDK Python azure-ai-language-conversations. Gunakan saat bekerja dengan ConversationAnalysisClient untuk menganalisis maksud dan entitas percakapan, membangun fitur NLP, atau mengintegrasikan pemahaman bahasa ke dalam aplikasi.
development
azure-ai-ml-py
microsoft
Azure Machine Learning SDK v2 untuk Python. Gunakan untuk ruang kerja ML, pekerjaan, model, kumpulan data, komputasi, dan pipeline. Pemicu: "azure-ai-ml", "MLClient", "ruang kerja", "registri model", "pekerjaan pelatihan", "kumpulan data".
development