Back to list
ericfisherdev

move-to-sprint

by ericfisherdev

Some QOL Claude Code plugins that I wrote

0🍴 0📅 Jan 10, 2026

SKILL.md


name: move-to-sprint description: This skill MUST be used when the user asks to "move issue to sprint", "add to sprint", "assign to sprint", "put in sprint", "add issue to current sprint", "move to backlog", "remove from sprint", or otherwise wants to change which sprint an issue belongs to.

Move to Sprint

Move or add issues to a sprint, or remove them to backlog.

Quick Start

Use the Python script at scripts/move_to_sprint.py:

# Move single issue to active sprint
python scripts/move_to_sprint.py PROJ-123

# Move multiple issues to active sprint
python scripts/move_to_sprint.py PROJ-123 PROJ-124 PROJ-125

# Move to specific sprint by ID
python scripts/move_to_sprint.py PROJ-123 --sprint-id 456

# Move to backlog (remove from sprint)
python scripts/move_to_sprint.py PROJ-123 --backlog

# Move to next upcoming sprint
python scripts/move_to_sprint.py PROJ-123 --next-sprint

Options

OptionDescription
ISSUESOne or more issue keys (required)
--sprint-id IDTarget sprint ID
--backlogMove to backlog (remove from sprint)
--next-sprintMove to next future sprint
--list-sprintsList available sprints
--format FORMATOutput: compact (default), text, json

Common Workflows

Add to Current Sprint

# Move new issues to the active sprint
python scripts/move_to_sprint.py PROJ-101 PROJ-102 PROJ-103

Move to Next Sprint

# Defer issues to next planned sprint
python scripts/move_to_sprint.py PROJ-101 --next-sprint

Return to Backlog

# Remove from sprint, return to backlog
python scripts/move_to_sprint.py PROJ-101 --backlog

Move to Specific Sprint

# First, list available sprints
python scripts/move_to_sprint.py PROJ-101 --list-sprints

# Then move to chosen sprint
python scripts/move_to_sprint.py PROJ-101 --sprint-id 456

Output Example

Compact (default)

MOVED|PROJ-123,PROJ-124|Sprint 23

Text

Moved 2 issues to Sprint 23:
  PROJ-123: Implement login
  PROJ-124: Fix validation bug

Environment Setup

Requires three environment variables:

  • JIRA_BASE_URL - e.g., https://yoursite.atlassian.net
  • JIRA_EMAIL - Your Jira account email
  • JIRA_API_TOKEN - API token from Atlassian account settings

Permissions

Requires "Schedule Issues" permission on the project's board.

Reference

For complete options and error handling, see references/options-reference.md.

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon