Conversation
Adds .github/workflows/ci.yml plus three dependency-free Node validators run on every PR and push to main (gating job "ci"): a PII/secret guard (generic home-path/email/secret patterns, no owner identity hardcoded, no self-match on a clean tree), repo structure + content validation (SKILL.md frontmatter, testset.json, skill structure, in-repo markdown links), and an ES-module syntax check for the eval harness. A separate non-blocking job checks external links via lychee (retries+cache, fail=false) so network flakiness never gates a merge. Security: triggers on pull_request (never pull_request_target), top-level permissions contents read, every third-party action pinned to a commit SHA, no secrets. Verified locally: passes the clean repo (14 tracked files, zero false positives incl the guard scanning itself), catches injected home-path/email violations, harness ESM check passes. 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.
Adds GitHub Actions CI that gates merges to main. Gating job "ci" runs three dependency-free Node validators on every PR/push: PII/secret guard, repo structure + content validation (SKILL.md frontmatter, testset.json, skill structure, in-repo markdown links), and eval-harness ESM syntax. A separate non-blocking job checks external links (lychee, retries+cache, fail=false). Security: pull_request only (never pull_request_target), permissions contents:read, actions SHA-pinned, no secrets. Verified locally: passes clean repo, catches injected PII, harness ESM check passes. After merge, the "ci" status check will be wired as required in the main ruleset.