From magic-powers
Use when integrating Azure OpenAI Service, deploying GPT/embedding models, building RAG applications with Azure AI Search, implementing prompt engineering patterns, or studying for Azure AI Engineer Associate (AI-102) or AI-200.
npx claudepluginhub kienbui1995/magic-powers --plugin magic-powersThis skill uses the workspace's default tool permissions.
- Deploying and integrating GPT-4o, GPT-4, GPT-3.5-turbo, or embedding models on Azure
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
| Model Family | Use Case |
|---|---|
| GPT-4o | Latest multimodal; text + vision; balanced cost/performance |
| GPT-4 | High-quality reasoning; complex tasks |
| GPT-3.5-turbo | Fast, cost-effective; simple tasks, high volume |
| text-embedding-ada-002 / text-embedding-3-* | Vector embeddings for semantic search |
| DALL-E 3 | Image generation from text |
| Whisper | Speech-to-text transcription |
Deployment types:
| Type | Throughput | Billing | Best For |
|---|---|---|---|
| Standard | Shared; TPM/RPM limits | Pay-per-token | Variable workloads |
| Provisioned (PTU) | Reserved capacity | Hourly PTU rate | Predictable, high-throughput |
| Global Standard | Globally routed | Pay-per-token | Overflow capacity |
TPM = Tokens Per Minute; RPM = Requests Per Minute; quotas per deployment per region
| Pattern | Description | When to Use |
|---|---|---|
| System message | Persona, instructions, constraints | Always; sets model behavior |
| Few-shot examples | Input-output examples in prompt | Specific output format required |
| Chain-of-thought | "Think step by step" instruction | Complex reasoning tasks |
| JSON mode | response_format: {type: "json_object"} | Structured output for parsing |
| Tool/function calling | Define functions; model decides to call | Agent-style applications |
tool_choice: "auto" = model decides; "required" = must call a tool; specific tool name = force specific tool| Aspect | Detail |
|---|---|
| Available models | GPT-4o mini, GPT-3.5-turbo |
| Data format | JSONL with {messages: [{role, content}]} per example |
| Min training examples | 10 (recommended: 50-100+) |
| Use case | Domain-specific tone/format; not for adding new knowledge |