Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/skill-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Skill Review
on:
pull_request:
paths: ['**/SKILL.md']
jobs:
review:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: tesslio/skill-review@22e928dd837202b2b1d1397e0114c92e0fae5ead # main
27 changes: 27 additions & 0 deletions SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,33 @@ node scripts/audit.mjs > /tmp/skill-audit-report.md
4. **Versions** β€” Checks ClawdHub registry if `clawdhub` CLI is available
5. **Recommendations** β€” keep (active+healthy), update (outdated), review (unused), remove (broken deps)

## Example Output

```markdown
# πŸ” Skill Audit Report

## Summary
- Total skills: 4
- βœ… Keep: 2
- πŸ”Ž Review: 1
- πŸ—‘οΈ Remove: 1

## Detailed Report
| # | Skill | Bins | Usage (7d) | Health | Rec |
|---|----------|----------|------------|-------------|-----------|
| 1 | weather | curl | πŸ“Š 5 | βœ… | βœ… keep |
| 2 | email | himalaya | πŸ“Š 8 | βœ… | βœ… keep |
| 3 | notes | β€” | β€” | βœ… | πŸ”Ž review |
| 4 | voice | sag | β€” | ❌ sag | πŸ—‘οΈ remove |
```

## Acting on Results

- **βœ… keep** β€” Active and healthy. No action needed.
- **πŸ”„ update** β€” Hub has a newer version. Run `clawdhub install <skill>` to update.
- **πŸ”Ž review** β€” Unused in the last `AUDIT_DAYS` days. Confirm the skill is still needed or remove it to reduce clutter.
- **πŸ—‘οΈ remove** β€” Missing required binaries. Install the dependency (`brew install <bin>` / `npm i -g <bin>`) or remove the skill if no longer needed. Verify the binary name is correct before removing.

## Safety

- **Read-only** β€” Never modifies, installs, or removes anything
Expand Down