AI Feature Orchestrator: Custom Agents (2/6), Fixes AB#3534742#396
Merged
AI Feature Orchestrator: Custom Agents (2/6), Fixes AB#3534742#396
Conversation
|
❌ Work item link check failed. Description does not contain AB#{ID}. Click here to Learn more. |
This was referenced Mar 5, 2026
|
✅ Work item link check complete. Description contains link AB#3534742 to an Azure Boards work item. |
1 similar comment
|
✅ Work item link check complete. Description contains link AB#3534742 to an Azure Boards work item. |
|
❌ Work item link check failed. Description contains AB#3534742 but the Bot could not link it to an Azure Boards work item. Click here to learn more. |
p3dr0rv
approved these changes
Mar 6, 2026
p3dr0rv
added a commit
that referenced
this pull request
Mar 10, 2026
…400) Update AB ID, Below is an example of description that was failing with previous implementation and works with new. ## AI-Driven Feature Development - Part 1: Skills Adds the foundational skill definitions that power the AI feature orchestrator pipeline. ### What's included | Skill | Purpose | |-------|---------| | **design-author** | Creates detailed design specs following the team's template | | **design-reviewer** | Reads and addresses inline review comments on design specs | | **feature-planner** | Decomposes approved designs into repo-targeted PBIs | | **pbi-creator** | Creates work items in Azure DevOps with proper metadata | | **pbi-dispatcher** | Dispatches PBIs to GitHub Copilot coding agent | Also includes: - PBI description quality guide with good/bad examples - Dispatch workflow reference ### Merge order **PR 1 of 6.** Merge first other PRs reference these skills. 1. ** Skills** (this PR) 2. Agents (#396) 3. Hooks & State (#397) 4. Prompts & Config (#398) 5. Extension (#394) 6. Docs & Setup (#395) Fixes [AB#3534741](https://identitydivision.visualstudio.com/fac9d424-53d2-45c0-91b5-ef6ba7a6bf26/_workitems/edit/3534741)
shahzaibj
added a commit
that referenced
this pull request
Mar 12, 2026
## AI-Driven Feature Development - Part 1: Skills Adds the foundational skill definitions that power the AI feature orchestrator pipeline. ### What's included | Skill | Purpose | |-------|---------| | **design-author** | Creates detailed design specs following the team's template | | **design-reviewer** | Reads and addresses inline review comments on design specs | | **feature-planner** | Decomposes approved designs into repo-targeted PBIs | | **pbi-creator** | Creates work items in Azure DevOps with proper metadata | | **pbi-dispatcher** | Dispatches PBIs to GitHub Copilot coding agent | Also includes: - PBI description quality guide with good/bad examples - Dispatch workflow reference ### Merge order **PR 1 of 6.** Merge first other PRs reference these skills. 1. ** Skills** (this PR) 2. Agents (#396) 3. Hooks & State (#397) 4. Prompts & Config (#398) 5. Extension (#394) 6. Docs & Setup (#395) Fixes [AB#3534741](https://identitydivision.visualstudio.com/fac9d424-53d2-45c0-91b5-ef6ba7a6bf26/_workitems/edit/3534741)
shahzaibj
added a commit
that referenced
this pull request
Mar 12, 2026
…4743 (#397) ## Part 3: Hooks and State Management Adds lifecycle hooks and the feature state CLI. ### Hooks | Hook | Trigger | Purpose | |------|---------|---------| | `subagent-start.js` | SubagentStart | Injects active feature context into subagent sessions | | `subagent-stop.js` | SubagentStop | Advances pipeline step when a subagent completes | ### State Management (`state-utils.js`) CLI tool for managing feature state at `~/.android-auth-orchestrator/state.json`: - `list-features` summary of all features - `get-feature` full feature details (by name or ID) - `set-step` advance pipeline step - `add-feature`, `set-design`, `add-pbi`, `add-agent-pr` manage artifacts Supports lookup by feature name (not just ID), with case-insensitive and partial matching. **PR 3 of 6. Merge after Agents (#396).** Fixes [AB#3534743](https://identitydivision.visualstudio.com/fac9d424-53d2-45c0-91b5-ef6ba7a6bf26/_workitems/edit/3534743)
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.
Part 2: Custom Agents
Adds 6 custom agents that power the feature orchestration pipeline.
Also updates
copilot-instructions.mdwith pipeline documentation and.gitconfigfor design-docs clone.PR 2 of 6. Merge after Skills (#392).
Fixes AB#3534742