From agentize
Creates a development branch for a GitHub issue using standardized naming (issue-<number>). Verifies issue existence via gh CLI before branching.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentize:fork-dev-branchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill instructs AI agents on how to create a development branch for implementing
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.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-1 --plugin synthesys-lab-agentizeFetches a GitHub issue, creates a branch in a worktree, and launches team-develop agents to implement the fix or feature end-to-end.
Creates a git branch following Sentry naming conventions with type prefixes (feat, fix, docs, etc.) and GitHub username prefix. Automatically classifies work from task descriptions or local diffs.
Creates traceable Git branches for current tasks using ticket IDs or short summaries (e.g., <ticket-id>-<short-kebab-summary>). Inspects git status, safely switches/creates, reports uncommitted work.