feat(skills): add arc skill for composable workflow orchestration 🤖🤖🤖#1406
Open
pconnelly-nuance wants to merge 3 commits intogithub:stagedfrom
Open
feat(skills): add arc skill for composable workflow orchestration 🤖🤖🤖#1406pconnelly-nuance wants to merge 3 commits intogithub:stagedfrom
pconnelly-nuance wants to merge 3 commits intogithub:stagedfrom
Conversation
Add the arc skill — a declarative orchestration framework that chains existing Copilot skills into reproducible, reviewable development workflows via .arc.yml template files. Includes: - SKILL.md with full execution lifecycle documentation - 3 example arcs: feature-flow, bugfix-flow, quick-fix - 3 reference docs: file-format, expression-syntax, acceptance-criteria Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
🔍 Skill Validator Results
Summary
Full validator output```text Found 1 skill(s) [arc] 📊 arc: 3,007 BPE tokens [chars/4: 3,004] (standard ~), 23 sections, 11 code blocks [arc] ⚠ Skill is 3,007 BPE tokens (chars/4 estimate: 3,004) — approaching "comprehensive" range where gains diminish. ✅ All checks passed (1 skill(s)) ``` |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new arc skill that documents a declarative “workflow orchestration” format (.arc.yml) for chaining existing Copilot skills/commands with review gates, conditional execution, and failure policies, plus bundled example arcs and reference docs.
Changes:
- Added
skills/arc/SKILL.mddefining the arc execution lifecycle, modes, trace review gate, and state tracking model. - Added reference documentation for arc YAML schema, expression syntax, and acceptance criteria.
- Added example arc templates and registered the new skill in
docs/README.skills.md.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| skills/arc/SKILL.md | Core skill documentation describing how arcs are discovered, planned (trace), reviewed, and executed |
| skills/arc/references/file-format.md | YAML schema + validation rules for .arc.yml templates |
| skills/arc/references/expression-syntax.md | ${{ }} expression namespaces and resolution behavior |
| skills/arc/references/acceptance-criteria.md | Testable requirements and examples for expected skill behavior |
| skills/arc/examples/feature-flow.arc.yml | Example “feature” arc with params, gate, and multi-step flow |
| skills/arc/examples/bugfix-flow.arc.yml | Example “bugfix” arc with TDD-ish steps and PR creation |
| skills/arc/examples/tdd-cycle.arc.yml | Example arc file (currently contains a quick-fix arc) |
| docs/README.skills.md | Adds the arc entry to the skills index |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
Add the arc skill — a declarative orchestration framework that chains existing Copilot skills into reproducible, reviewable development workflows via .arc.yml template files. Arcs can be shared and run by team members with simple prompts like
run the bugfix arc on ticket 12345Includes:
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
Arc is a composable orchestration skill that lets teams define multi-step development workflows as declarative
.arc.ymltemplates. Instead of invoking skills one at a time or relying on unpredictable autopilot, you write the choreography once and the AI executes it — with a Terraform-style review gate before anything runs.Key features:
${{ }}expressions for parameter binding and context flow between steps.arc.yml), ad-hoc (from natural language), and inspect (preview without executing)on_failurecontrol: pause (default), skip, retry, or abortBundled assets:
examples/feature-flow.arc.yml— End-to-end feature implementation from issue to PRexamples/bugfix-flow.arc.yml— Test-first bug fix with review and PR creationexamples/tdd-cycle.arc.yml— Minimal implement → test → review → commit cyclereferences/file-format.md— Complete YAML schema referencereferences/expression-syntax.md— Expression resolution and namespace docsreferences/acceptance-criteria.md— 8 testable acceptance criteria with correct/incorrect examplesExample:
run tdd arc. add provider name to fields returned by GET /patients/{patient_id}Type of Contribution
Additional Notes
This skill is language- and framework-agnostic. The example arcs use
npm run lint,npm test,gh pr create, and community skills from this repo (git-commit,create-implementation-plan,breakdown-test,doublecheck) so they work across any project type. Teams customize by authoring their own.github/arcs/*.arc.ymlfiles with whatever skills and commands fit their stack.By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.