From agentize
Creates a Git branch named 'issue-<number>' for a GitHub issue number after verifying it exists via gh CLI. Useful for standardizing issue-driven development workflows.
npx claudepluginhub synthesys-lab/agentize --plugin agentizeThis skill uses the workspace's default tool permissions.
This skill instructs AI agents on how to create a development branch for implementing
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
This skill instructs AI agents on how to create a development branch for implementing
a GitHub issue. The branch name follows the standard format: issue-<number>.
Branches created by this skill must follow this exact format:
issue-<number>
Where:
<number>: The GitHub issue number (without the # symbol)Examples:
issue-42issue-15issue-67issue-23Rationale: GitHub issues provide full context (title, description, labels, etc.). Branch names only need the issue number for identification. This simplifies branch creation and treats issues as the single source of truth.
When this skill is invoked, the AI agent MUST follow these steps:
Find the issue number from conversation context:
gh issue list --limit 10# prefix (e.g., "42" or "#42")Verify the issue exists and is open:
gh issue view <issue-number> --json state,title
If the issue is closed or doesn't exist, inform the user and abort.
Create and switch to the new branch:
git checkout -b issue-<number>
Confirm success:
Successfully created and switched to branch: issue-<number>
Context: User wants to implement issue #42 for TypeScript SDK support.
Conversation:
User: Create a dev branch for issue #42
Agent: [Runs gh issue view 42]
Agent: I'll create a branch for issue #42: "Add TypeScript SDK template support"
Creating branch...
[Runs: git checkout -b issue-42]
Successfully created and switched to branch: issue-42
Context: User wants to fix issue #15.
Conversation:
User: fork a branch for #15
Agent: [Runs gh issue view 15]
Agent: I'll create a branch for issue #15: "Pre-commit hook fails to run tests"
Creating branch...
[Runs: git checkout -b issue-15]
Successfully created and switched to branch: issue-15
Context: User provides a non-existent issue number.
Conversation:
User: Create dev branch for issue 999
Agent: [Runs gh issue view 999]
Agent: Error: Issue #999 not found in this repository.
Please provide a valid issue number.