-
Notifications
You must be signed in to change notification settings - Fork 66
[Feature] Publish GitHub Action for CI/CD integration #92
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Problem
No official GitHub Action for skillkit. Users can't easily:
- Install skills in CI/CD pipelines
- Cache skill installs between runs
- Validate skill configs are in sync
- Run security scans as PR checks
Proposed Solution
Publish rohitg00/skillkit-action GitHub Action:
- uses: rohitg00/skillkit-action@v1
with:
command: install
source: anthropics/skills
agents: claude-code,cursor
cache: trueFeatures
install— install skills with cachingsync— sync skills to agents, fail if out of syncscan— security scan as PR checkvalidate— validate skill format- Skill caching via
actions/cache(keyed on source + lockfile hash) --checkmode: fail if config is out of sync (for drift detection)
Outputs
installed-skills— JSON list of installed skillsscan-results— JSON security scan resultscache-hit— whether cache was used
Acceptance Criteria
- Action published to GitHub Marketplace
- Caching reduces install time by >80% on cache hit
- Example workflow in README
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request