skillZs
LIVE SKILL TAGS
>>> LIVE SKILLS INDEX <<<
* OPEN SOURCE *
NO LOGIN, NO TRACKING
REAL INSTALL DATA
← back to all skills
jnpiyush/agentx3 installs

azure-foundry

Design and architect AI agents on Azure AI Foundry -- lifecycle planning, model selection strategy, evaluation frameworks, guardrail design, and deployment patterns. Use when designing agent architecture on Foundry, choosing models, planning evaluation strategy, or defining guardrails. For step-by-step operational workflows (create, deploy, invoke, trace, troubleshoot), install the Azure MCP Extension (ms-azuretools.vscode-azure-mcp-server), which also brings in the Azure Skills plugin and Foundry MCP support in VS Code.

How do I install this agent skill?

npx skills add https://github.com/jnpiyush/agentx --skill azure-foundry
view source ↗

Is this agent skill safe to install?

No partner audit is available yet. Read the source before installing.

What does this agent skill do?

Azure AI Foundry

Companion Extension: For detailed operational playbooks (create agents, deploy containers, invoke endpoints, trace with App Insights, troubleshoot), install Azure MCP Extension (ms-azuretools.vscode-azure-mcp-server). In VS Code it also wires in the Azure Skills plugin from microsoft/azure-skills plus Foundry MCP. AgentX recommends it when Azure files are detected and the installer can add it automatically for Azure-oriented workspaces.

When to Use This Skill

  • Designing agent architecture on Azure Foundry or Azure AI Agent Service
  • Selecting models via GitHub Models or Azure AI model catalog (cost/quality tradeoffs)
  • Planning evaluation strategy with Foundry evals (RAGAS, LLM-as-judge)
  • Defining guardrails, safety instructions, and content filtering policies
  • Choosing deployment patterns (managed endpoint vs AKS vs serverless)

Agent Lifecycle

Design -> Build -> Evaluate -> Deploy -> Monitor -> Iterate
  1. Design - Define agent capabilities, tool schemas, system prompts
  2. Build - Implement with Azure AI Agent Service or Semantic Kernel
  3. Evaluate - Run evals (RAGAS, custom rubrics, LLM-as-judge)
  4. Deploy - Azure AI Foundry managed endpoints or AKS
  5. Monitor - Application Insights + OpenTelemetry tracing
  6. Iterate - Feedback loops, prompt refinement, model updates

Tracing Pattern

All agent calls MUST include OpenTelemetry spans:

  • agent.plan - Planning/reasoning step
  • agent.tool_call - Tool invocation with input/output
  • agent.llm_call - LLM API call with model, tokens, latency
  • agent.response - Final response with quality metrics

Export to Application Insights via APPLICATIONINSIGHTS_CONNECTION_STRING.

Tool Definition

Tools use JSON Schema for parameters. Every tool MUST have:

  • name - Unique, descriptive identifier
  • description - What it does (used by LLM for selection)
  • parameters - JSON Schema with required fields marked

Guardrails

  • System prompt MUST include safety instructions
  • Content filters enabled on all endpoints
  • PII detection for user inputs
  • Token budget limits per conversation turn
  • Grounding with RAG to reduce hallucination

Evaluation

Run evals before every deployment:

MetricTargetTool
Groundedness> 0.8RAGAS
Relevancy> 0.8RAGAS
Coherence> 0.9LLM-as-judge
Toxicity< 0.05Content Safety API
Latency p95< 5sApplication Insights

Error Handling

  • Retry with exponential backoff for 429/503 from model endpoints
  • Circuit breaker for sustained failures (>50% error rate over 1 min)
  • Fallback model chain: primary -> secondary -> cached response
  • Log all errors with correlation ID and model version

Deployment Patterns

PatternWhen
Managed endpointStandard workloads, auto-scaling
AKS + vLLMCustom models, GPU workloads
Serverless (pay-per-token)Low-volume, experimentation
Provisioned throughputPredictable high-volume

Checklist

  • Model selected with cost/quality tradeoff documented
  • System prompt includes safety guardrails
  • OpenTelemetry tracing configured
  • Evaluation pipeline runs before deployment
  • Fallback model chain defined
  • Token limits set per conversation turn
  • Content filters enabled

Companion Extension

This skill covers design and architecture for Azure AI Foundry agents. For operational execution (step-by-step prepare, validate, deploy, invoke, trace, troubleshoot, RBAC, quota management), install:

  • Azure MCP Extension (ms-azuretools.vscode-azure-mcp-server)
  • It also installs the Azure Skills plugin and Foundry MCP support in VS Code
  • AgentX recommends it when Azure work is detected, or you can force it during install with -Azure / --azure

The two extensions are complementary:

LayerExtensionCovers
DesignAgentX azure-foundryArchitecture, model selection, eval strategy, guardrails
ExecutionAzure Skills plugin + Azure MCPPrepare, validate, deploy, invoke, trace, troubleshoot, RBAC, quota

Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.

<a href="https://skillzs.dev/skills/jnpiyush/agentx/azure-foundry">View azure-foundry on skillZs</a>