ci: verify generated agent/skill files stay in sync with their sources#57
Open
YAMRAJ13y wants to merge 1 commit into
Open
ci: verify generated agent/skill files stay in sync with their sources#57YAMRAJ13y wants to merge 1 commit into
YAMRAJ13y wants to merge 1 commit into
Conversation
AGENTS.md instructs contributors to run the sync scripts after editing the source files, but nothing enforces it. A contributor can edit AGENTS.md or the clone-website SKILL.md and forget to regenerate, silently drifting the 13 committed platform files (Cursor, Windsurf, Gemini, Codex, Copilot, Amazon Q, Continue, Cline, OpenCode, Augment) from their source. This adds a `sync` CI job that regenerates everything with the existing scripts and fails the build with a clear remediation message if the working tree is dirty, i.e. the committed generated files don't match their sources. Mirrors the documented workflow in AGENTS.md exactly; no behavior change for in-sync branches. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.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.
Problem
AGENTS.mddocuments a required workflow:But nothing enforces it. A contributor can edit a source file and forget to regenerate, silently drifting the 13 committed generated files (Cursor, Windsurf, Gemini, Codex, Copilot, Amazon Q, Continue, Cline, OpenCode, Augment) from their
AGENTS.md/SKILL.mdsources. The current CI only runs lint / typecheck / build, so this drift ships unnoticed.Fix
Adds a
syncjob to the CI workflow that:git diff --stat) if the working tree is now dirty — i.e. the committed generated files don't match their sources.Notes
master).qualityjob..github/workflows/ci.yml).🤖 Generated with Claude Code