Azure ZAP Bundle

Multi-Agent Deployment Orchestration

February 2026

Experimental

Azure deployment is complex

"Deploy my website"

Simple user intent → validated, safe Azure deployment plan

# What the user says: "Deploy my React app to Azure" # What happens behind the scenes: Analyze project structure Identify required Azure services Generate deployment plan Validate costs and quotas Check for destructive operations Execute safely

Five specialized agents

Each expert in one domain, collaborating seamlessly

Project Analyzer
15 KB
Detects project type and infers Azure service requirements
Azure MCP Expert
18 KB
Authority on all Azure MCP Server tools and capabilities
Deployment Planner
22 KB
Creates comprehensive, validated deployment plans
Deployment Watchdog
23 KB
Safety validator: checks costs, quotas, and destructive operations
Recipe Generator
17 KB
Captures successful flows as reusable recipes

Project Analyzer

Understands your codebase and infers Azure needs

What it detects:

  • Framework (React, Next.js, Node.js, .NET)
  • Build requirements and dependencies
  • Static vs. dynamic hosting needs
  • Database requirements
  • API/backend architecture

Azure service mapping:

Static site + API → Static Web Apps Full-stack app → App Service Containerized → Container Apps Serverless → Functions

Azure MCP Expert

Complete catalog of Azure MCP Server capabilities

21 KB Azure MCP Tools Reference
Comprehensive documentation of every Azure MCP Server tool, including:
  • Resource management
  • Deployment operations
  • Container services
  • Database provisioning
  • Networking configuration
  • Storage management
  • Function apps
  • Monitoring & diagnostics

Deployment Planner

Orchestrates the entire deployment workflow

1
Analyze Project
2
Select Services
3
Generate Config
4
Validate Plan
5
Execute

Creates comprehensive plans with resource groups, networking, scaling, and monitoring

Deployment Watchdog

The safety layer that prevents disasters

Cost Validation
Estimates monthly costs before deployment. Flags expensive configurations.
Quota Checks
Verifies subscription limits, regional capacity, and resource availability.
Destructive Operations
Detects dangerous operations (delete, purge) and requires explicit confirmation.
# Watchdog in action: ⚠ WARNING: Destructive operation detected Operation: delete resource group "production-rg" Impact: 12 resources will be deleted Confirm with: --force-delete ⚠ Cost estimate exceeds threshold Monthly cost: $847/month Threshold: $500/month

Recipe Generator

The learning loop that makes deployment reusable

Captures patterns:

  • Successful deployment workflows
  • Service configurations
  • Validation checkpoints
  • Best practices

Generates recipes:

recipe: react-static-web-app steps: - analyze-project - create-resource-group - deploy-static-web-app - configure-custom-domain - validate-deployment

Once deployed manually, future deployments are one-click

How agents collaborate

User: "Deploy my React app"
Project Analyzer: "It's a React SPA with API"
Azure MCP Expert: "Use Static Web Apps + Functions"
Deployment Planner: "Here's the complete plan"
Deployment Watchdog: "Validated. Cost: $12/mo"
Recipe Generator: "Saved for next time"

Thin bundle pattern

Includes foundation, adds only unique agents

Composability
Built on top of foundation bundle. Inherits core capabilities, adds Azure-specific expertise.
Maintainability
Each agent is independently testable and updatable. Clear separation of concerns.
Extensibility
Add new Azure services by updating agents. Recipe library grows with use.
Safety-First
Watchdog validates every operation. Prevents costly mistakes before they happen.

Architectural Design

Faster
Deployment planning
Pre-validated
Cost estimates before deploy
Gated
Every operation checked
5
Proposed agents
~95KB
Specification documents
4
Documentation files

Research Methodology

Data as of: February 20, 2026

Feature status: Experimental / Concept

Research performed:

  • GitHub search: gh search repos "azure-zap" — no dedicated repo found
  • Local filesystem: find ~/dev/ANext -name "*zap*" — only story deck found
  • Azure content in amplifier-session-sync/azure/ — separate project

Gaps: No dedicated repository, no git commit history, no contributor data. Deck represents architectural design/concept, not shipped code.

Primary contributors: Not determined (no repo to analyze)

Try it today

# Install the bundle amplifier bundle add azure-zap # Deploy your app amplifier deploy "Deploy my React app to Azure" # The agents handle the rest Project analyzed Services selected Plan generated Costs validated Deployment complete
Documentation
Read QUICKSTART.md and USER_GUIDE.md in the bundle
Architecture Deep-Dive
See ARCHITECTURE_PLAN.md for complete design details
More Amplifier Stories