Add OSS compliance headers and agentic-readiness scaffolding - #34
Merged
Neil Johnson (theneiljohnson) merged 2 commits intoJul 3, 2026
Merged
Conversation
- Add the standard Microsoft copyright header to all PowerShell samples (56 files) and move the header to the top of 2 existing files. - Add contributor/governance files: CONTRIBUTING.md, .gitignore, .github/CODEOWNERS, .github/dependabot.yml, .github/pull_request_template.md. - Add agentic-readiness docs and tooling: AGENTS.md, .github/copilot-instructions.md, docs/conventions.md, docs/testing-patterns.md, scripts/verify.ps1, and a CI workflow that runs it on PRs. - Fix the CONTRIBUTING link in README.md. Verified with scripts/verify.ps1: 63/63 files carry the copyright header and PSScriptAnalyzer reports no errors.
Neil Johnson (theneiljohnson)
deleted the
chore/oss-compliance-and-agentic-readiness
branch
July 3, 2026 10:43
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.
Description
Improves the repository's OSS compliance posture and adds the Tier-1 "agentic-readiness" scaffolding identified in a compliance audit. No sample behaviour changes — headers, docs, and tooling only.
Compliance
.COPYRIGHTheader to all PowerShell samples that were missing it (56 files) and move the header to the top of 2 files where it sat below the imports. All 63.ps1files now carry the header.CONTRIBUTING.md(also fixes the brokenCONTRIBUTING.MDreference in the README),.gitignore,.github/CODEOWNERS(placeholder — real owners still need to be set), and.github/dependabot.yml.Agentic readiness
AGENTS.md,.github/copilot-instructions.md,docs/conventions.md,docs/testing-patterns.md.scripts/verify.ps1— one-command PSScriptAnalyzer lint + copyright-header check..github/pull_request_template.mdand.github/workflows/ci.yml(runsverify.ps1on PRs).Type of change
Checklist
./scripts/verify.ps1and it passes (63/63 headers, 0 PSScriptAnalyzer errors)..ps1files include the standard copyright header (scripts/verify.ps1).Microsoft.Graph*submodule(s) they need — N/A, no sample logic changed.docs/conventions.md.Note:
mainbranch protection (require PR + 1 approving review) was enabled alongside this change.