setup-sprint

Solid

Create parallel git worktrees for a batch of issues by label, with permissions and isolation.

AI & Automation 416 stars 49 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
87
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Setup Sprint Prepare parallel Git worktrees for a batch of issues filtered by label. This skill sets up the workspace but does not start Claude Code instances or begin implementation. ## Your task ### Step 1: Verify starting point - Confirm the current branch is `main` (or the repository's default branch). If not, ask the user before proceeding. - Run `git pull` to ensure `main` is up to date. Worktrees branch from the current HEAD, so starting from stale history creates merge headaches later. ### Step 2: Find issues - Determine the project name from the Git repository root directory name: ```bash project_name="$(basename "$(git rev-parse --show-toplevel)")" ``` This ensures the correct name even when running from a subdirectory. - Run `gh issue list --label $ARGUMENTS --state open --json number,title,labels` to find all open issues with the specified label. - Present the list to the user. **CHECKPOINT**: Confirm which issues to include and in what order. The user may exclude issues (e.g., if two touch the same files and should be done sequentially) or adjust the batch. ### Step 3: Create worktrees For each confirmed issue: - Determine the branch prefix from the issue's type label: - `feat/` for issues labeled `feat` - `fix/` for issues labeled `fix` - `chore/` for issues labeled `chore` - `docs/` for issues labeled `docs` - `test/` for issues labeled `test` - If no type label is present, infer from context (default to `chore/`) - Generate a ...

Details

Author
joshukraine
Repository
joshukraine/dotfiles
Created
11 years ago
Last Updated
yesterday
Language
Shell
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

sprint-issue

Fast-track workflow for small, well-scoped issues. Skips the plan checkpoint for speed.

416 Updated yesterday
joshukraine
Code & Development Listed

sync-issues

Sync sprint issues to GitHub Issues

4 Updated today
lwalden
AI & Automation Listed

sprint-scaffold

Scaffold a new Aria sprint folder with Filing Cabinet spec_charter.md + Flowstate .claude/agents/pr-review.md + reference/sql/ subdirs. Use when starting a new sprint (e.g. "open sprint 021", "start a sprint for X", "new sprint folder"). Drops a working skeleton in /opt/aria/v4/sprints/NNN_slug/ with all the load-bearing files pre-filled so every shipped item gets an audit-trail home. Validated in Sprint 020 (two-terminal push, 20+ items shipped under this pattern).

0 Updated today
iansteitz1-eng
AI & Automation Listed

blitz

This skill should be used when parallelizing multi-issue sprints using git worktrees and parallel Claude agents. Use when tackling multiple GitHub issues simultaneously, when the user mentions "blitz", "parallel sprint", "worktree workflow", or when handling 3+ independent issues that could be worked on concurrently. Orchestrates the full workflow from issue triage through parallel agent delegation to sequential merge.

335 Updated today
aiskillstore
AI & Automation Listed

github-issue-workflow

Standard workflow for creating GitHub issues with assignment and worktree branch creation for immediate implementation. Includes branch strategy and worktree conventions.

2 Updated yesterday
kookr-ai