AMPLIFIER STORIES
Azure ZAP Bundle
Multi-Agent Deployment Orchestration
February 2026
Experimental
THE CHALLENGE
Azure deployment is complex
- Dozens of services to choose from
- Configuration complexity (networking, scaling, security)
- Cost surprises without quotas and validation
- Destructive operations risk production data
- Manual processes are error-prone
THE VISION
"Deploy my website"
Simple user intent → validated, safe Azure deployment plan
"Deploy my React app to Azure"
✓ Analyze project structure
✓ Identify required Azure services
✓ Generate deployment plan
✓ Validate costs and quotas
✓ Check for destructive operations
✓ Execute safely
THE SOLUTION
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
AGENT SPOTLIGHT
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
AGENT SPOTLIGHT
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
AGENT SPOTLIGHT
Deployment Planner
Orchestrates the entire deployment workflow
Creates comprehensive plans with resource groups, networking, scaling, and monitoring
AGENT SPOTLIGHT
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.
⚠ 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
AGENT SPOTLIGHT
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
ORCHESTRATION
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"
ARCHITECTURE
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.
WHAT THIS ENABLES
Architectural Design
Faster
Deployment planning
Pre-validated
Cost estimates before deploy
Gated
Every operation checked
~95KB
Specification documents
Sources
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)
GET STARTED
Try it today
amplifier bundle add azure-zap
amplifier deploy "Deploy my React app to Azure"
✓ 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