From e02f1233f1e316636ddc37c8cdbc76a35f33efef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 13:15:31 +0000 Subject: [PATCH] docs: add missing optional front-matter fields to create workflow prompt The optional fields list in prompts/create-ado-agentic-workflow.md was missing several valid FrontMatter fields that agents need to know about: - post-steps: inline steps after agent runs (symmetric with steps) - variable-groups: ADO Library variable group imports - execution-context: per-trigger context configuration - inlined-imports: compile-time vs runtime prompt import resolution - supply-chain: internal artifact mirror configuration All five are documented in docs/front-matter.md and present in the FrontMatter struct in src/compile/types.rs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- prompts/create-ado-agentic-workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompts/create-ado-agentic-workflow.md b/prompts/create-ado-agentic-workflow.md index a5b7b2c4..4866b2ca 100644 --- a/prompts/create-ado-agentic-workflow.md +++ b/prompts/create-ado-agentic-workflow.md @@ -33,7 +33,7 @@ If interactive, ask only missing essentials first. ### 2. Build Front Matter Use only required keys plus task-required options: - `name`, `description` -- optional: `target`, `engine`, `workspace`, `pool`, `repos`, `tools`, `runtimes`, `mcp-servers`, `safe-outputs`, `on`, `steps`, `setup`, `teardown`, `permissions`, `parameters` +- optional: `target`, `engine`, `workspace`, `pool`, `repos`, `tools`, `runtimes`, `mcp-servers`, `safe-outputs`, `on`, `steps`, `post-steps`, `setup`, `teardown`, `permissions`, `parameters`, `variable-groups`, `execution-context`, `inlined-imports`, `supply-chain` Rules: - Omit fields that equal defaults.