Install
$ agentstack add skill-alon21034-claude-scrum-skills-sprint-upgrade ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Upgrade the sprint skills package to the latest revision and reinstall command/skill files.
Tip: check-only mode is available via sprint-upgrade --check (add --quiet to suppress non-actionable output).
Run this bash first:
set -euo pipefail
PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"
ROOT="${CONDUCTOR_ROOT_PATH:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}"
if command -v sprint-upgrade >/dev/null 2>&1; then
sprint-upgrade
elif [ -x "$ROOT/bin/sprint-upgrade" ]; then
"$ROOT/bin/sprint-upgrade"
elif [ -x "$HOME/.codex/skills/sprint/bin/sprint-upgrade" ]; then
"$HOME/.codex/skills/sprint/bin/sprint-upgrade"
elif [ -x "$HOME/.claude/skills/sprint/bin/sprint-upgrade" ]; then
"$HOME/.claude/skills/sprint/bin/sprint-upgrade"
else
echo "ERROR: sprint-upgrade not found. Install sprint skills first, then run ./setup."
exit 1
fi
Behavior requirements:
- Detect the sprint repository root (or use an explicit
--repoargument if provided). - Refuse to run if the target repository has uncommitted changes.
- Upgrade with fast-forward-only git operations (no merge commits).
- Re-run
./setupafter update so installed commands and skills are refreshed. - Print what changed (or that it was already up to date).
- Support check-only mode:
sprint-upgrade --checkexits0if up to date,10if upgrade available,11if freshness cannot be verified.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: alon21034
- Source: alon21034/claude-scrum-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.