components-version-badge
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
/components:version-badge
Implement a version badge component that displays version number, git commit, and recent changelog in a tooltip.
Context
- Framework config: !
find . -maxdepth 1 \( -name "next.config.*" -o -name "nuxt.config.*" -o -name "svelte.config.*" -o -name "vite.config.*" \) - Package manager: !
find . -maxdepth 1 \( -name "package.json" -o -name "bun.lockb" -o -name "pnpm-lock.yaml" \) - Styling: !
find . -maxdepth 1 \( -name "tailwind.config.*" -o -name "postcss.config.*" \) - UI library: !
find . -maxdepth 1 -name "components.json" - Changelog: !
find . -maxdepth 1 -name \'CHANGELOG.md\' - Version: !
jq -r '.version // "unknown"' package.json
Parameters
--check-only: Analyze project and show what would be implemented without making changes--location <header|footer|custom>: Specify component placement (default: header)