feat: prototype opt-in DAFX agent and YAML workflow hosting - #186
Draft
Ahmed Muhsin (ahmedmuhsin) wants to merge 6 commits into
Draft
feat: prototype opt-in DAFX agent and YAML workflow hosting#186Ahmed Muhsin (ahmedmuhsin) wants to merge 6 commits into
Ahmed Muhsin (ahmedmuhsin) wants to merge 6 commits into
Conversation
Ahmed Muhsin (ahmedmuhsin)
force-pushed
the
ahmedmuhsin/prototype-lazy-dafx
branch
from
September 10, 2026 20:25
1c7d118 to
2695a46
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Prototype stacked on #185, replacing its custom
context.call_agent()activity path with optional DAFX hosting while keeping ordinarymarkdown_agent()bindings lightweight.discover_agents=Trueanddiscover_workflows=Trueindependently for bulk registration. Control generated HTTP routes separately withexpose_agent_endpointsandexpose_workflow_endpoints(both default to true for discovery).durable_markdown_agent()ordurable_workflow()for selective registration and injected orchestration proxies. Bindings default to no generated HTTP endpoints unlessexpose_http_endpoint=True. Discovery and bindings share registrations; enabling exposure is additive.durable_workflow()calls the hosted YAML workflow as a child orchestration and returns its outputs. It does not aggregate child HITL management into the parent.workflow_factory=through unchanged for configured agents, tools, HTTP/MCP handlers, and configuration.Prototype dependencies remain pinned to microsoft/agent-framework-durable-extension#72 for SDK 2 support.
Verified 192 tests, strict typing, lint, and package builds locally. SDK replay tested; no live Functions host/backend validation.
Usage samples
Complete function-app code from this PR's current head. Each linked directory includes the supporting definitions, helpers, and setup instructions.
Endpoint-only durable agents
Full sample and setup
Durable agent binding and multi-turn orchestration
Full sample and setup
YAML workflow discovery
Full sample and setup
Durable workflow binding and child orchestration
Full sample and setup
Configured MAF workflow factory
Full sample and setup