Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Prepare applications for Azure deployment by generating infrastructure code, Dockerfiles, and config files.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/services/functions/templates/recipes/blob-eventgrid/eval/python.md
1# blob-eventgrid Recipe - Python Eval23## MCP Template Validation45| Criteria | Expected | Status |6|----------|----------|--------|7| Template discovery | `functions_template_get(language: "python")` returns list | ✅ PASS |8| Filter by resource | `resource == "blob"` finds matches | ✅ PASS |9| Template scaffolded | `blob-eventgrid-trigger-python-azd` | ✅ PASS |10| Has trigger code | `@app.blob_trigger` decorator in output | ✅ PASS |11| Has IaC | `projectFiles[]` includes Bicep | ✅ PASS |12| Has RBAC | Appropriate role assignment | ✅ PASS |1314## Agent Behavior Validation1516```text171. Agent calls: functions_template_get(language: "python")182. Agent scans templateList.triggers[] descriptions and resource field193. Agent selects: template where resource == "blob" → blob-eventgrid-trigger-python-azd204. Agent calls: functions_template_get(language: "python", template: "blob-eventgrid-trigger-python-azd")215. Agent writes: functionFiles[] + projectFiles[]22```2324## Notes2526- Template names may vary - use `resource` field or `description` to match27- Never hardcode template names - always discover via list call first2829## Test Date30312026-04-223233## Verdict3435**PASS** - MCP template provides complete blob-eventgrid trigger with IaC, RBAC, and UAMI binding.36