Conversation
3 tasks
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.
What this PR does
Two things:
skillmd-lintCI workflow (findings surface asinline GitHub Actions annotations; the job does not fail).
findings.md, a baseline audit of the currentSkills/tree:rule code, count, and file references, generated with
skillmd-lint v1.4.0 --format json.Why
79
SKILL.mdfiles is a real maintenance surface. The baseline infindings.mdis:(
E002/E003/E005/E007), and 18 descriptions exceed the1024-char spec limit (
E008).## Pitfalls to avoid/## When to usesections, missing negative triggers, and bodies over 200 lines.
This overlaps with the frontmatter backfill work in #29 — the workflow
here is the CI half of that effort, so the baseline cannot regress
silently.
What changes
.github/workflows/skillmd-lint.yml— report-only, no contentchanges, no merge blocking.
findings.md— the baseline snapshot. Regenerate withskillmd-lint --format json $(find Skills -name SKILL.md).Suggested follow-up
Once the frontmatter backfill lands, the workflow can drop
continue-on-errorand gain--strictto become a real gate. Happyto send that follow-up after #29 merges.
Maintenance
I maintain
skillmd-lintand will keep the workflow current.Reference