Add CONTRIBUTING.md, PR validation CI, and eval framework#40
Closed
Add CONTRIBUTING.md, PR validation CI, and eval framework#40
Conversation
4 tasks
- CONTRIBUTING.md with skill contribution guide, SKILL.md schema, and CoC link - .github/workflows/pr-validation.yml for structural checks and markdownlint - scripts/validate-structure.js for frontmatter, naming, cross-ref validation - .markdownlint.json configuration - evals/ directory with README, scenario, and runner Agent-Logs-Url: https://github.com/Azure/git-ape/sessions/5fd523e4-5c2b-45f4-a8bd-fe51985855a3 Co-authored-by: sendtoshailesh <50418172+sendtoshailesh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/Azure/git-ape/sessions/5fd523e4-5c2b-45f4-a8bd-fe51985855a3 Co-authored-by: sendtoshailesh <50418172+sendtoshailesh@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add CONTRIBUTING.md and verification CI workflow
Add CONTRIBUTING.md, PR validation CI, and eval framework
Apr 30, 2026
…tion or class' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
This was referenced May 6, 2026
Contributor
|
Closing in favor of a re-scoped PR. Issue #17 has been narrowed to CONTRIBUTING.md + structural PR validation CI, and the exploratory eval framework portion is now tracked in #61. The replacement PR (scoped to the reduced #17) is being opened next and carries forward the |
4 tasks
arnaudlh
pushed a commit
that referenced
this pull request
May 7, 2026
Implements scope of #17 (de-scoped): - CONTRIBUTING.md: skill contribution guide, SKILL.md schema, PR process, Code of Conduct link - .github/workflows/pr-validation.yml: structural validation + markdownlint on every PR - scripts/validate-structure.js: frontmatter, naming, cross-reference, link, and section checks - .markdownlint.json: shared lint config The eval framework (originally section 3 of #17) is split out to #61 and is not part of this PR. Supersedes #40.
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 contributor guide, no structural validation CI, and no eval framework for testing agent/skill behavior. Community PRs have no automated verification pipeline.
CONTRIBUTING.md
PR Validation Workflow (
.github/workflows/pr-validation.yml)Active workflow running on every PR to
main:scripts/validate-structure.js): frontmatter required fields, name-directory consistency, kebab-case enforcement, SKILL.md presence, required sections (## When to Use,## Procedure), agent cross-reference integrity, relative link resolution.markdownlint.jsonconfigAll checks pass on current repo state (section warnings are non-blocking for equivalent headings like
## Execution Playbook).Eval Framework (
evals/)Decision: custom Node.js harness over
openai/evals(wrong ecosystem, Python-only, model-coupled).evals/README.md— investigation summary and decision rationaleevals/scenarios/deploy-function-app.json— core deployment path scenarioevals/run-eval.js— validates scenarios reference real agents/skills from repo definitions{ "id": "deploy-function-app", "expected_agent": "Git-Ape", "expected_skill_sequence": ["prereq-check", "azure-naming-research", "..."], "assertions": [ { "type": "skill_order", "before": "azure-deployment-preflight", "after": "azure-integration-tester" } ] }