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
2 changes: 1 addition & 1 deletion skills/list/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: list
description: List all stored branch memories with their sizes and last modified dates.
description: "List all stored branch memories with their sizes and last modified dates. Use when the user asks to show branches, view saved memories, check what branches have stored context, or see memory usage."
---

# List Branch Memories
Expand Down
6 changes: 4 additions & 2 deletions skills/save/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: save
description: Save the current CLAUDE.md to branch-specific memory. Use when the user wants to save their current branch context.
description: "Save the current CLAUDE.md to branch-specific memory. Use when the user wants to save their current branch context, persist settings, store context, or snapshot their branch state."
---

# Save Branch Memory
Expand All @@ -14,4 +14,6 @@ node "${CLAUDE_PLUGIN_ROOT}/dist/cli.js" save "$ARGUMENTS"

If no description was provided in the arguments, use a brief description based on recent work context.

Report the result to the user.
If the command fails, check that CLAUDE.md exists in the project root and report the error to the user.

Report the result to the user, confirming the branch name and description that were saved.
2 changes: 1 addition & 1 deletion skills/status/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: status
description: Show the current branch memory status including active memory, saved memory, and configuration.
description: "Show the current branch memory status including active memory, saved memory, and configuration. Use when the user asks to check memory status, view what's stored, inspect branch memory configuration, or see current memory info."
---

# Branch Memory Status
Expand Down