feat: add ci-guard and semantic-versioning skills - #13
Merged
Conversation
CI Guard alerts when a repository lacks CI configuration (GitHub Actions, GitLab CI, etc.) and provides starter templates. Repos can be exempted by adding a .research marker file. Semantic Versioning analyzes commits using conventional commit prefixes to determine the next major/minor/patch version bump, with a helper script that can detect and update version files. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (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.
Summary
.researchmarker file.feat:,fix:,feat!:,BREAKING CHANGE) to determine whether the next release is a major, minor, or patch bump. Includes a helper script (version-bump.py) that detects version files (pyproject.toml,package.json,Cargo.toml,VERSION) and can apply the bump with--apply.Both are skills (not commands) so they auto-activate based on context — no manual invocation needed.
Why skills over commands?
/ci-guardinvocationTest plan
check-ci.pytested: detects CI in basecamp repo (OK), warns on repo without CI (WARNING + exit 1), skips research-marked repos (SKIP + exit 0)version-bump.pytested: analyzes 167 commits, correctly classifies conventional commits, suggests v0.1.0 for pre-1.0 major bumpsrepositories/without CI🤖 Generated with Claude Code