From 039eac608d8e74f5558e4b9bc78cf594aa27ec65 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Wed, 11 Feb 2026 18:53:16 +0100 Subject: [PATCH] chore(skills): start-sprint uses current branch as team MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No argument needed — the current branch determines the team. Only asks if on main. Co-Authored-By: Claude Opus 4.6 --- .claude/skills/start-sprint/SKILL.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.claude/skills/start-sprint/SKILL.md b/.claude/skills/start-sprint/SKILL.md index 4cb9329f2..f137999ec 100644 --- a/.claude/skills/start-sprint/SKILL.md +++ b/.claude/skills/start-sprint/SKILL.md @@ -16,19 +16,20 @@ briefing, and present actionable next steps. ## Workflow -### 1. Determine the team branch +### 1. Determine the team -If the user provided a branch name as argument, use it. Otherwise use the -current branch (`git branch --show-current`). Valid team branches: `server`, -`client`. +The current branch IS the team. Read it with: +```bash +git branch --show-current +``` -If on `main`, ask the user which team branch to start. +Valid team branches: `server`, `client`. If on `main`, ask the user which +team branch to check out first. -### 2. Sync the branch +### 2. Sync with main ```bash git fetch --all -git checkout git merge origin/main --no-edit ```