Add review-skill-sflabs skill + CONTRIBUTING update#39
Merged
Conversation
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.
Summary
Adds the
review-skill-sflabsskill — a pre-PR self-check that contributors run on their local skill directory to find out whether it would be a fit for this catalog before opening a pull request. Also updatesCONTRIBUTING.mdto recommend running it.The skill applies safe mechanical fixes in place (with the contributor's confirmation) and flags content rewrites for manual revision. It produces an advisory verdict (
promote/adapt/skip) plus a concrete checklist of issues. It does not gate PR acceptance — final review is human-in-the-loop.Architecture
Router skill with 4 sub-workflows + 3 reference files:
Design highlights
web_searchagainst distinctive phrases, not a hardcoded list. Bundled-skill overlap pulls from on-disk Cortex Code installs + the public docs page, never a static snapshot.language: en, defaultstatus: Published, missing LICENSE for community contributions). Anything that requires choosing between alternatives, or that touches body content, is flagged for the contributor — they stay in control of their writing.Audit pipeline status
audit run-tier labs --client mockagainst the merged branch:tdd.body.word_budget(router skill is over the 500-word default for technique class; reference-class budget would be 1500 which it satisfies). Documented as a known classification edge case for router skills.Smoke-test results
5 fixtures in
audit/tests/fixtures/review-skill-sflabs/— each verified by walking through the skill workflow manually:clean/needs-fixes/public-clone/bundled-collision/(name=iceberg)policy-violations/(PII, tone, hardcoded emails)Full results:
audit/tests/fixtures/review-skill-sflabs/SMOKE-TEST-RESULTS.md(kept in the audit repo, not promoted to Labs).Test plan
/skill addfrom this branch loads the skill and all 4 workflow + 3 reference files cleanly$review-skill-sflabs <path>against a known-clean skill produces a 🟢 promote verdict$review-skill-sflabs <path>against a skill withname:colliding with a bundled skill produces a 🟠 skip verdictFiles
skills/review-skill-sflabs/SKILL.mdskills/review-skill-sflabs/LICENSEskills/review-skill-sflabs/workflows/format-check.mdskills/review-skill-sflabs/workflows/duplicate-search.mdskills/review-skill-sflabs/workflows/data-policy-scan.mdskills/review-skill-sflabs/workflows/catalog-fit.mdskills/review-skill-sflabs/references/data-policy-principles.mdskills/review-skill-sflabs/references/mechanical-fix-rules.mdskills/review-skill-sflabs/references/report-template.mdCONTRIBUTING.md