skills/new-tag/SKILL.md
Bump version in package.json and push a new tag to both minion-mind and minion-mind-releases repos. Use when the user says "new tag", "bump version", "release new version", or wants to create a new release tag.
npx skillsauth add femto/skills new-tagInstall 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.
Automate version bumping and tag creation for minion-mind releases.
/new-tag # Default: commit all changes + bump version + tag
/new-tag no-commit # Only bump version and tag, don't commit pending changes
git statusSkip steps 1-2, only do version bump and tagging.
# Check for uncommitted changes
git status --short
# Show change summary
git diff --stat
# Commit all changes (default mode)
git add -A
git commit -m "Description of changes
Co-Authored-By: Claude Opus 4.5 <[email protected]>"
# Get current version
grep '"version"' /Users/femtozheng/python-project/minion-mind/package.json
# Update version (replace OLD with NEW)
sed -i '' 's/"version": "OLD"/"version": "NEW"/' /Users/femtozheng/python-project/minion-mind/package.json
# Commit version bump
git add package.json
git commit -m "Bump version to X.Y.Z
Co-Authored-By: Claude Opus 4.5 <[email protected]>"
git push
# Create and push tag to minion-mind
git tag vX.Y.Z
git push origin vX.Y.Z
# Create and push tag to minion-mind-releases
cd /Users/femtozheng/python-project/minion-mind-releases
git pull
git tag vX.Y.Z
git push origin vX.Y.Z
vX.Y.Z (e.g., v0.2.63)tools
Discover and use Worldbook WebMCP browser-page tools from a current page URL. Use when an agent needs site-specific browser automation tools without relying on mcp-chrome.
tools
AI's Knowledge Base CLI - Query and manage world knowledge for AI agents. Use when users want to search knowledge, add knowledge sources, or interact with the worldbook knowledge base. This is a CLI-first approach that treats AI agents as first-class citizens.
tools
Control Chrome browser with AI using MCP protocol. Use when users want to automate browser tasks, take screenshots, fill forms, click elements, navigate pages, search browsing history, manage bookmarks, or perform any browser-based automation. Works with your existing Chrome browser and login sessions.
data-ai
Team coordination layer for multi-agent workflows with mailbox, task board, and lease-based task management. Use when users need to coordinate multiple AI agents, manage shared task boards, send messages between agents, or set up team-based workflows. Triggers on "spawn agent", "team", "task board", "multi-agent", "agent coordination", "message agent", "inbox".