From team-shinchan
Checks the current plugin version, compares it to the latest published release, and shows changelog differences. Useful for staying up to date or reviewing unreleased changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-shinchan:versionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
node -e "const p=JSON.parse(require('fs').readFileSync('${CLAUDE_PLUGIN_ROOT}/.claude-plugin/plugin.json','utf-8'));console.log(p.version)"
Store result as CURRENT_VERSION.
gh release list --repo seokan-jeong/team-shinchan --limit 1 --json tagName,publishedAt --jq '.[0]' 2>/dev/null || echo '{"error":"gh not available or no releases"}'
Extract tag name and strip leading v to get PUBLISHED_VERSION.
Extract publishedAt as PUBLISHED_DATE.
If gh fails or no releases found, set PUBLISHED_VERSION = "unknown".
Compare CURRENT_VERSION vs PUBLISHED_VERSION:
CURRENT_VERSION > PUBLISHED_VERSION: local is ahead (unreleased changes exist)CURRENT_VERSION == PUBLISHED_VERSION: local is up to dateCURRENT_VERSION < PUBLISHED_VERSION: local is behind (update available)If versions differ, read CHANGELOG.md and extract all entries between the two versions.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Team-Shinchan Version Info
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Local version: v{CURRENT_VERSION}
Published version: v{PUBLISHED_VERSION} ({PUBLISHED_DATE})
Status: {ahead|up to date|behind}
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
If versions differ, also show:
Changes between v{LOWER} and v{HIGHER}:
{changelog entries — keep concise, show Added/Changed/Fixed sections}
If local is behind, suggest:
To update: claude plugin update team-shinchan
If local is ahead, suggest:
Unreleased changes detected. Use /team-shinchan:release --version <X.Y.Z> to publish.
npx claudepluginhub seokan-jeong/team-shinchan --plugin team-shinchanGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.