.claude/skills/bumping-version/SKILL.md
Bump the skill-set plugin version with changelog update. Use when user asks to bump, version up, or release.
npx skillsauth add ether-moon/skill-set bumping-versionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Bump the skill-set plugin version: analyze changes, suggest semver level, get user confirmation, update files, commit, and push.
plugins/skill-set/.claude-plugin/plugin.json → "version" fieldCHANGELOG.md → prepend new entry at top (after header)# Find the last bump commit
LAST_BUMP=$(git log --oneline --grep="bump version" -1 --format="%H")
# Show commits since then
git log --oneline "$LAST_BUMP"..HEAD
Based on the commits, suggest one of:
Present the suggestion with rationale, then ask the user to choose:
[In user's language]
Changes since last bump:
- [commit summary 1]
- [commit summary 2]
Suggested: patch (reason)
Which level?
- [1] patch
- [2] minor
- [3] major
Read current version from plugins/skill-set/.claude-plugin/plugin.json.
Increment the chosen semver component (reset lower components to 0 for minor/major).
Update plugin.json: Change "version" value.
Update CHANGELOG.md: Add new entry after the header block, before the first existing version entry. Follow the existing format:
## [X.Y.Z] - YYYY-MM-DD
### Added/Improved/Fixed
- **component**: Description of change
Use the appropriate changelog category:
Added for new features/skillsImproved for enhancements/refactorsFixed for bug fixesgit add CHANGELOG.md plugins/skill-set/.claude-plugin/plugin.json
git commit -m "chore: bump version to X.Y.Z"
git push origin HEAD:main
origin/maintools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.