Запуск задачи из бэклога в новой ветке
productivity
start-task is a Claude Code skill that creates a feature branch for a backlog task, switches to it, and kicks off the full development cycle. It accepts a task ID (e.g. `task-123` or just `123`), loads full task details via MCP backlog tools (view, search, edit), checks for uncommitted changes, syncs main with `git pull --rebase`, and creates a branch following the `feature/task-{id}-{slug}` convention. The task status is immediately updated to "In Progress", and a plan is presented to the user before any code is written. Once implementation is complete, the skill runs the full verification suite: `npm run lint`, `npm run typecheck`, `npm test`, `npm run build`, and `npx playwright test`. A good fit for teams managing a structured backlog who want to standardize how work on a new task begins.
- #git
- #workflow
- #task-management
- #testing
- #ci-cd
- #branch-management