Complete feature work and merge back to main branch. Use when user wants to finish a feature, close a feature, or merge feature branch. Switches to main, pulls latest changes, merges feature branch, and pushes to remote.
Automates merging a feature branch to main and pushing to remote. Triggered when you want to finish, close, or merge a feature.
/plugin marketplace add otrebu/agents/plugin install development-lifecycle@otrebu-dev-toolsThis skill is limited to using the following tools:
Run git branch --show-current:
Run git status:
FEATURE_BRANCH=$(git branch --show-current)
Determine main branch (git branch --list main master), then:
git checkout main # or master
git pull origin main # or master
git merge $FEATURE_BRANCH
Conflicts? List files via git status, wait for user resolution: git add . + git commit
git push origin main # or master
Ask user:
Local:
git branch -d $FEATURE_BRANCH
Remote:
git push origin --delete $FEATURE_BRANCH
Output:
<feature-branch-name>User: "Finish user-auth feature"
feature/user-auth, git status cleangit checkout main && git pull origin maingit merge feature/user-auth && git push origin mainThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.