claude.nagdy.me

Basic SKILL.md

A clean starter skill with description, allowed tools, and dynamic shell context.

markdown
---
name: release-check
description: Validate release readiness before publishing. Use when the user asks to verify a release candidate.
allowed-tools: Bash(git *), Bash(npm run *)
---

## Context
- Branch: !`git branch --show-current`
- Status: !`git status --short`
- Latest tag: !`git describe --tags --abbrev=0 2>/dev/null || echo "no tags"`

## Steps
1. Inspect the current git status for uncommitted changes.
2. Run tests and build validation.
3. Summarize release blockers and open questions.
View Full Module