# Saml Jira Ticket

> Gets jira ticket from git branch name.

- Skill: `saml/saml-jira-ticket` (Agent Skill)
- Install (CLI): `npx skillmds@latest add saml/saml-jira-ticket`
- Raw SKILL.md: https://api.skillmd.com/api/skills/saml/saml-jira-ticket/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: saml (https://skillmd.com/u/saml)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/saml/saml-jira-ticket

---


Use the following command to extract the jira ticket from the current git branch name:

```sh
git rev-parse --abbrev-ref HEAD | grep -oE '[A-Z]+-[0-9]+'
```

