ci: add shell + plugin verification workflow + CI badge - #4
Merged
Conversation
Runs bash -n syntax check, shellcheck (--severity=warning, verified clean locally), plugin.json + skills/commands manifest validation, and a smoke run of verify-dev.sh on push and PR. Adds the CI status badge to the README top.
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
Adds
.github/workflows/ci.ymland a CI status badge to the README top.Why
This shell-based Claude Code plugin had no CI. It has no unit-test suite, so this wires up honest static verification rather than a placeholder green check.
What the workflow does (push + PR to
main)bash -nsyntax check on every shell scriptshellcheck --severity=warningon every shell scriptjqvalidation of.claude-plugin/plugin.json+ presence ofskills/andcommands/scripts/verify-dev.sh(must exit 0)Verified locally before opening
shellcheck --severity=warning: 8/8 cleanplugin.jsonvalid JSON;skills/+commands/presentverify-dev.shexits 0Scoping note: there is no unit-test suite, so CI verifies syntax, lint, the plugin manifest, and that the verify gate runs — it does not claim to run tests that don't exist.
permissions: contents: read.