Build agentic workflow foundation#1
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Introduces an “Agentic Workflow” kit that standardizes multi-agent roles/phases, ships repo templates (Copilot instructions, prompts, MCP config), and adds a small Node-based CLI to validate and install the kit into other repositories.
Changes:
- Added a versioned workflow manifest + JSON schema defining roles, phases, and quality gates.
- Added installable templates for Copilot instructions, prompt files, AGENTS briefing, MCP config, and test/verification instructions.
- Added a dependency-free CLI (
agentic-workflow) plus CI validation and supporting docs (adoption/operating model/roadmap).
Reviewed changes
Copilot reviewed 21 out of 22 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| workflow/default.workflow.json | Defines the default workflow manifest (roles/phases/gates) for the kit. |
| workflow/agentic-workflow.schema.json | Adds a JSON Schema to validate workflow manifests. |
| templates/AGENTS.md | Provides a durable agent briefing template for consuming repos. |
| templates/.vscode/mcp.json | Minimal MCP server template for consumers. |
| templates/.github/prompts/reviewer.prompt.md | Reviewer phase prompt template. |
| templates/.github/prompts/implementer.prompt.md | Implementer phase prompt template. |
| templates/.github/prompts/historian.prompt.md | Historian phase prompt template. |
| templates/.github/prompts/debugger.prompt.md | Debugger phase prompt template. |
| templates/.github/prompts/architect.prompt.md | Architect phase prompt template. |
| templates/.github/instructions/tests.instructions.md | Path-scoped test/verification instruction template. |
| templates/.github/copilot-instructions.md | Repo-level Copilot instruction template. |
| package.json | Defines the npm package metadata, bin entrypoint, and scripts. |
| instructions.md | Updates global instructions to align with the new workflow contract. |
| examples/.agentic/session.md | Adds an example handoff/session artifact. |
| docs/operating-model.md | Documents the operating model and artifacts. |
| docs/adoption-guide.md | Documents installation/validation/customization steps. |
| bin/agentic-workflow.mjs | Adds CLI commands for validate/init/render-prompt. |
| ROADMAP.md | Adds a versioned roadmap for planned validation/runtime features. |
| README.md | Rewrites README to present the kit, quick start, and layout. |
| CONTRIBUTING.md | Adds contribution guidance and a PR checklist. |
| .vscode/mcp.json | Updates local MCP config to a minimal starter set. |
| .github/workflows/validate.yml | Adds CI workflow to run npm test on PRs/pushes. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,113 @@ | |||
| { | |||
| "$schema": "./agentic-workflow.schema.json", | |||
| }, | ||
| "playwright": { | ||
| "command": "npx", | ||
| "args": ["@playwright/mcp@latest"] |
Comment on lines
4
to
6
| "context7": { | ||
| "type": "http", | ||
| "url": "https://mcp.context7.com/mcp" |
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.
No description provided.