AgentStack
SKILL verified MIT Self-run

Sprint Upgrade

skill-alon21034-claude-scrum-skills-sprint-upgrade · by alon21034

Upgrade sprint skills package and reinstall commands.

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add skill-alon21034-claude-scrum-skills-sprint-upgrade

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Sprint Upgrade? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

  1. Detect the sprint repository root (or use an explicit --repo argument if provided).
  2. Refuse to run if the target repository has uncommitted changes.
  3. Upgrade with fast-forward-only git operations (no merge commits).
  4. Re-run ./setup after update so installed commands and skills are refreshed.
  5. Print what changed (or that it was already up to date).
  6. Support check-only mode:
  • sprint-upgrade --check exits 0 if up to date, 10 if upgrade available, 11 if 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.