Integration between Git workflows and Jira issues. Generates branch names from issues, validates commit messages, and provides PR context from Jira specifications.
Bridges Git workflows with Jira project management. Provides consistent naming, validation, and context generation to maintain traceability between code and issues.
These are NOT performed by this skill - agents have their own Git tools:
| Tool | Purpose |
|------|---------|
| devflow_git_link_repo | Link repository to Jira project |
| devflow_git_get_repos | List linked repositories |
| devflow_git_branch_name | Generate branch name from issue |
| devflow_git_validate_commit | Validate commit message format |
| devflow_git_pr_context | Generate PR title, body, checklist |
{type}/{issueKey}-{slug}Generate branch name:
devflow_git_branch_name(issueKey: "PROJ-123")
Result: feature/proj-123-add-user-authentication
Validate commit message:
devflow_git_validate_commit(
message: "feat(auth): add login page\n\nRefs: PROJ-123",
projectKey: "PROJ",
requireIssueKey: true
)
Generate PR context:
devflow_git_pr_context(
issueKeys: ["PROJ-123", "PROJ-124"],
includeAcceptanceCriteria: true
)
For detailed conventions, see BRANCH-CONVENTIONS.md.
For commit message format, see COMMIT-MESSAGE-FORMAT.md.
For PR templates, see PR-TEMPLATES.md.
Start work on issue:
# Get branch name from Jira issue
devflow_git_branch_name(issueKey: "PROJ-123")
# Agent creates branch with their git tools
Validate commits:
# Before committing, validate message
devflow_git_validate_commit(message: "feat: add login")
Create PR:
# Get PR context from Jira
devflow_git_pr_context(issueKeys: ["PROJ-123"])
# Agent creates PR with their gh/git tools
Link a repository to get project-specific defaults:
devflow_git_link_repo(
projectKey: "PROJ",
repositoryUrl: "https://github.com/company/project",
defaultBranch: "develop",
branchPattern: "{type}/{key}-{slug}"
)
List linked repositories:
devflow_git_get_repos()
devflow_git_get_repos(projectKey: "PROJ")
npx skills add Yoshikemolo/git-jira-integration下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer